@charset "utf-8";

/* ==================[ Variable ]================== */
:root {
    /* font */
    --font-family: "Pretendard Variable", "notokr", "Apple SD Neo Gothic", "Malgun Gothic", "Gulim", sans-serif;
    /* color */
    --page-point-color: #3ab936;
    --page-point-color-hover: #0439c1;
    --page-danger-color: #f34825;
    --page-danger-color-hover: #ce4825;
    --page-dark-color: #4f5356;
    --page-dark-color-hover: #232527;
    --page-grey-color: #d5d5d5;
    --page-grey-color-hover: #c4c4c4;
    /* navbar */
    --navbar-top-height: 36px;
    --navbar-height: clamp(60px, 15vw, 90px);
    /* --navbar-height: clamp(90px, 10vw, calc(90px + var(--navbar-top-height))); */
    /* container */
    --container-max-width: calc(1140px + (var(--container-padding-inline) * 2));
    --container-padding-inline: 15px;
    /* form */
    --form-height: 40px;
    /* snb */
    --sub-nav-height: 60px;
    /* google-material-symbols */
    --gms: "Material Symbols Outlined";
    --gms-grad-low: "GRAD" -25;
    --gms-grad-zero: "GRAD" 0;
    --gms-grad-high: "GRAD" 200;
    --gms-opsz: "opsz" 48;
    /* fill icon */
    --gms-100-fill: "FILL" 1, "wght" 100, var(--gms-opsz);
    --gms-200-fill: "FILL" 1, "wght" 200, var(--gms-opsz);
    --gms-300-fill: "FILL" 1, "wght" 300, var(--gms-opsz);
    --gms-400-fill: "FILL" 1, "wght" 400, var(--gms-opsz);
    --gms-500-fill: "FILL" 1, "wght" 500, var(--gms-opsz);
    --gms-600-fill: "FILL" 1, "wght" 600, var(--gms-opsz);
    --gms-700-fill: "FILL" 1, "wght" 700, var(--gms-opsz);
    /* outlined icon */
    --gms-100-out: "FILL" 0, "wght" 100, var(--gms-opsz);
    --gms-200-out: "FILL" 0, "wght" 200, var(--gms-opsz);
    --gms-300-out: "FILL" 0, "wght" 300, var(--gms-opsz);
    --gms-400-out: "FILL" 0, "wght" 400, var(--gms-opsz);
    --gms-500-out: "FILL" 0, "wght" 500, var(--gms-opsz);
    --gms-600-out: "FILL" 0, "wght" 600, var(--gms-opsz);
    --gms-700-out: "FILL" 0, "wght" 700, var(--gms-opsz);
}

/* ==================[ Reset ]================== */
* {
    word-break: keep-all;
    float: unset !important;
}
body {
    font-size: 16px;
}
#site {
    padding-top: var(--navbar-height);
    background-color: #fff;
    font-family: var(--font-family);
    /* opacity: 0; */
}
#site.modal-open {
    overflow: unset !important;
}
#site > .container {
    max-width: inherit;
    width: 100%;
    padding: 0 !important;
}
/* material-symbols */
span.material-symbols-outlined {
    font-family: var(--gms) !important;
    overflow: hidden;
    display: inline-flex;
    line-height: 1;
    font-variation-settings: var(--gms-300-out), var(--gms-grad-zero);
    user-select: none;
}
.cke_resizer_ltr {
    float: right !important;
}
:where(*::before, *::after) {
    content: none;
}
/* selection */
::selection {
    background-color: var(--page-point-color);
    color: #fff;
}
/* input 색상 초기화 */
input:where(:-webkit-autofill, :-webkit-autofill:hover, :-webkit-autofill:focus, :-webkit-autofill:active) {
    -webkit-box-shadow: 0 0 0 30px white inset;
}
/* Paragraph */
:is(ol, ul, li, dl) {
    all: unset;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
}
:is(p, h1, h2, h3, h4, h5, h6, dt, dd) {
    all: unset;
    display: block;
}
:is(p, h1, h2, h3, h4, h5, h6, dt, dd, th, td, li) {
    position: relative;
    box-sizing: border-box;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    padding: 0;
    line-height: 1.5;
}
:where(h1, h2, h3, h4, h5, h6, dt, b, strong) {
    color: #333;
}
:where(p, li, dd, small) {
    color: #555;
}
:where(small, .small) {
    font-size: 0.8em;
}
:is(h1, h2, h3, h4, h5, h6) {
    letter-spacing: 0;
}
:is(p, dd, th, td) {
    letter-spacing: -0.015em;
}
:is(li) {
    letter-spacing: -0.015em;
}
br {
    visibility: visible;
    opacity: 0;
}
.big {
    font-size: 1.2em;
}
a:not(.btn) {
    text-decoration: none;
    color: inherit;
}
a:not(.btn):where(:focus, :hover) {
    text-decoration: unset;
    color: unset;
}
/* expend 숨김 */
.caret {
    display: none !important;
}
/* button */
.btn {
    all: unset;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-flex;
    place-content: center;
    place-items: center;
    font-size: clamp(13px, 5vw, 15px);
    line-height: 1;
    height: 42px;
    padding: 0 1em;
    outline: none !important;
}
.btn.btn-lg {
    font-size: clamp(14px, 5vw, 16px);
    height: 50px;
}
.btn.btn-danger {
    color: #fff;
}
.btn.btn-slide {
    min-width: 200px;
    line-height: 50px;
    background: var(--page-point-color);
    color: #fff;
    font-size: 16px;
}
.btn.btn-primary{
    background-color: #333;
    border-color: #333;
}
/* [hover] PC 환경에서만 :hover 효과 적용  */
@media (hover: hover) {
    .btn.btn-primary:where(:hover, :focus),
    .btn.btn-primary:hover, .btn.btn-primary:focus {
        background-color: #111;
        border-color: #111;
    }
    .btn.btn-secondary:where(:hover, :focus) {
        color: #000;
        background-color: var(--page-grey-color-hover);
        border-color: var(--page-grey-color);
    }
    .btn.btn-slide:where(:hover, :focus) {
        background-color: var(--page-point-color-hover);
        border-color: var(--page-point-color-hover);
    }
}
button[disabled] {
    pointer-events: none;
    user-select: none;
    opacity: 0.5;
}
/* ==================[ layout ]================== */
/* container */
[class*="container"] {
    width: 100%;
    padding: unset;
    padding-inline: var(--container-padding-inline) !important;
}
[class*="container"]::before,
[class*="container"]::after {
    content: none;
}
/* [min-x-lager / labtop] 노트북, 1200px 이상 ▲ */
@media (width >= 1140px) {
    [class*="container"] {
        max-width: var(--container-max-width);
    }
}
:where(.container, .row) {
    position: relative;
}
.row {
    margin: 0;
}
.row::before,
.row::after {
    content: none;
}
.row:has(.col) {
    display: flex;
    gap: 30px;
}
.clearfix {
    width: 100%;
}
.col {
    flex: 1;
    padding: 0;
}
/* list-style */
:where(.li-dot, .li-dash) {
    display: flex;
    flex-direction: column;
}
:where(.li-dot, .li-dash) > li {
    position: relative;
    padding-left: 0.8em;
    font-size: 15px;
    line-height: 1.4;
}
:where(.li-dot, .li-dash) > li + li {
    margin-top: 3px;
}

:where(.li-dot, .li-dash) small {
    font-size: 0.85em;
}
/* dot */
.li-dot > li::before {
    content: "";
    position: absolute;
    top: 0.6em;
    left: 0;
    display: block;
    width: 3px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #555;
}
/* dash */
.li-dash > li::before {
    content: "-";
    position: absolute;
    top: 0.7em;
    left: 0;
    line-height: 0;
}
/* number */
.li-num > li {
    padding-left: 34px;
    counter-increment: listNum 0;
}
.li-num > li strong {
    display: block;
    font-size: 20px;
    font-weight: 600;
}
.li-num > li::before {
    counter-increment: listNum;
    content: counter(listNum) "";
    position: absolute;
    top: 3px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #4898e2;
    border-radius: 50%;
    aspect-ratio: 1;
    width: 24px;
    padding-top: 2px;
    padding-right: 1px;
    background: #4898e2;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 0;
}
/* greet-style */
.sub-wrap .greet-type01 {
    display: flex;
    gap: clamp(30px, 7vw, 120px);
    align-items: start;
}
.sub-wrap .greet-type01 .title-h3 {
    color: #333;
    --h-font-size: clamp(20px, 3vw, 32px);
    --h-font-weight: 700;
    --h-letter-spacing: -0.04em;
    --p-font-size: clamp(15px, 3vw, 17px);
    --p-line-height: clamp(25px, 3vw, 29px);
    --p-letter-spacing: -0.05em;
    --text-between: clamp(25px, 5vw, 35px);
    margin-bottom: 0;
    padding-block: 15px;
}
.sub-wrap .greet-type01 .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.sub-wrap .greet-type01 p.name {
    color: #333333;
}
.sub-wrap .greet-type01 p.name span {
    font-weight: 500;
}
.sub-wrap .greet-type01 p.name b {
    display: inline-block;
    margin-left: 7px;
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 1.25em;
}
.sub-wrap .greet-type01 .img-box {
    flex-basis: 430px;
    aspect-ratio: 1;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sub-wrap .greet-type01 .info {
    flex-basis: 550px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .sub-wrap .greet-type01 {
        display: flex;
        flex-direction: column;
    }
    .sub-wrap .greet-type01 .img-box {
        height: 150px;
        flex-basis: inherit;
    }
}
/* history-style */
.sub-wrap .history {
    border-top: 1px solid #333333;
}
.sub-wrap .history .timeline {
    display: grid;
    grid-template-columns: minmax(0, 110px) minmax(0, auto);
    gap: clamp(40px, 7vw, 100px);
    border-bottom: #e3e3e3 solid 1px;
    padding: clamp(20px, 3vw, 30px) clamp(10px, 2vw, 30px);
}
.sub-wrap .history p.year {
    color: var(--page-point-color);
    font-size: clamp(20px, 3vw, 27px);
    font-weight: 500;
    letter-spacing: -0.02em;
}
.sub-wrap .history ol.issue li {
    display: flex;
    gap: 20px;
    font-size: clamp(14px, 2vw, 16px);
}
.sub-wrap .history ol.issue li + li {
    margin-top: 5px;
}
.sub-wrap .history ol.issue .month {
    width: 38px;
    flex-shrink: 0;
    font-weight: 600;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .sub-wrap .history .timeline {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .sub-wrap .history ol.issue li {
        gap: 10px;
    }
}
/* page-location */
.sub-wrap .location iframe {
    margin-bottom: -6px;
    background-color: #e5e3df;
    height: clamp(260px, 40vw, 450px);
}
.sub-wrap .location p.addr {
    font-size: clamp(16px, 3vw, 20px);
    line-height: clamp(24px, 5vw, 36px);
    letter-spacing: -0.03em;
    font-weight: 500;
    margin-block: clamp(30px, 5vw, 40px) 15px;
}
.sub-wrap ul.li-location {
    display: flex;
    gap: clamp(20px, 3vw, 40px);
}
.sub-wrap ul.li-location li {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
    letter-spacing: -0.015em;
    color: #606060;
    font-size: clamp(14px, 3vw, 16px);
}
.sub-wrap ul.li-location strong {
    color: inherit;
}
.sub-wrap ul.li-location li::before {
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(26px, 3vw, 30px);
    aspect-ratio: 1;
    border-radius: 9999px;
    background-color: var(--page-point-color);
    font-variation-settings: var(--gms-400-fill);
    font-family: var(--gms);
    color: #fff;
}
.sub-wrap ul.li-location li.tel::before {
    content: "\e0b0";
}
.sub-wrap ul.li-location li.fax::before {
    content: "\ead8";
}
.sub-wrap ul.li-location li.mail::before {
    content: "\e158";
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .sub-wrap ul.li-location {
        flex-direction: column;
        gap: 5px;
    }
}
/* process-style */
.sub-wrap [class*="process-type"] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.sub-wrap [class*="process-type"] .step {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sub-wrap [class*="process-type"] .step .num {
    font-size: clamp(13px, 2vw, 14px);
    font-weight: 600;
}
.sub-wrap [class*="process-type"] .step p {
    font-size: clamp(16px, 2vw, 17px);
    font-weight: 500;
}
.sub-wrap [class*="process-type"] .num + p {
    margin-top: 5px;
}
.sub-wrap .process-type01 .step {
    min-width: 140px;
    flex: 1;
    background: #4898e2;
    border-radius: 50%;
    aspect-ratio: 1;
}
.sub-wrap .process-type01 .step:last-child {
    background-color: #0074ca;
}
.sub-wrap .process-type01 .step * {
    color: #fff;
}
.sub-wrap .process-type01 .arrow {
    color: #ddd;
    font-size: 28px;
    min-width: 30px;
    font-variation-settings: var(--gms-700-out);
}
.sub-wrap .process-type01 p {
}

.sub-wrap .process-type02 {
}
.sub-wrap .process-type02 .step {
    background: #d3e8fc;
    padding: 20px;
    flex: 1;
    border-radius: 150px;
}
.sub-wrap .process-type02 .step:nth-child(2n) {
    background: #e9ebff;
}
.sub-wrap .process-type02 .step * {
    color: #333;
}
/* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (width >= 576px) {
    .sub-wrap .process-type01 {
        overflow: auto hidden;
        position: relative;
        justify-content: flex-start;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 575.98px) {
    .sub-wrap .process-type01 {
        flex-direction: column;
        align-items: center;
    }
    .sub-wrap .process-type01 .arrow {
        rotate: 90deg;
    }
}
/* table style */
.table-style {
    --p-font-size: clamp(15px, 2vw, 16px);
    width: 100%;
    border-top: 2px solid var(--page-point-color);
}
.table-style tr {
    border-bottom: 1px solid #ddd;
}
.table-style tr :is(th, td) {
    font-size: var(--p-font-size);
    padding: 13px 15px;
    color: #555;
    font-weight: var(--p-font-weight);
    border-left: 1px solid #ddd;
}
.table-style tr th {
    color: #333;
}
.table-style thead tr th {
    background: #f4f4f4;
    font-size: clamp(16px, 2vw, 17px);
}
.table-style tbody tr th {
    background: #fafafa;
}
.table-style tr td {
}
.table-style tr :is(th, td):last-child {
    border-right: 1px solid #ddd;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .table-style tr :is(th, td) {
        padding: 10px 12px;
    }
}
/* icon-style */
.icon-box-type01 {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.icon-box-type01 .box {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.icon-box-type01 .box .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #f4f4f4;
}
.icon-box-type01 .box .icon span.material-symbols-outlined {
    font-size: 44px;
    color: #5ebd5b;
    font-variation-settings: var(
    --gms-600-fill);
}
.icon-box-type01 .box .text .title {
    font-size: 24px;
    color: #333;
    font-weight: 600;
    /* margin: 0 0 5px; */
}
@media (width <= 767.98px) {
    .icon-box-type01 {
        flex-direction: column;
    }
    .icon-box-type01 .box{
      	justify-content: left;
        width: 250px;
        margin: 0 auto; 
    }
}
/* type03 */
.icon-box-type03 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.icon-box-type03 .box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    aspect-ratio: 1;
}
.icon-box-type03 .box + .box {
    border-left: 1px solid #dddddd;
}
.icon-box-type03 .box .icon span.material-symbols-outlined {
    font-size: clamp(50px, 10vw, 65px);
    color: var(--page-point-color);
    font-variation-settings: var(--gms-200-out);
}
.icon-box-type03 .box .title {
    font-size: clamp(22px, 3vw, 32px);
    letter-spacing: -0.03em;
    font-weight: 600;
    margin-block: clamp(8px, 1vw, 20px) clamp(6px, 1vw, 12px);
}
.icon-box-type03 .box .des {
    color: #777777;
    font-size: clamp(14px, 2vw, 16px);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .icon-box-type03 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .icon-box-type03 .box {
        border: 1px solid #dddddd;
        aspect-ratio: unset;
        height: 200px;
    }
}
/* card-style  */
.card-row {
    display: flex;
    gap: clamp(30px, 5vw, 50px);
    align-items: center;
}
.card-row:has(.col) {
    flex-direction: column;
}
.card-row:has(.col) .col {
    display: flex;
}
.card-row .img-box {
    flex: 0 1 242px;
    background-color: #ccc;
}
.card-row .info {
    flex: 1;
}
.card-row h5 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}
.card-row :is(p, li) {
    color: #555555;
}
.card-row :is(p + ul, p + p) {
    margin-top: 20px;
}
.card-vrt{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 40px;
}
.card-vrt .col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card-vrt .col .img-box img {margin: 0;}
.card-vrt :is(ul){
    background: #f8f8f8;
    padding: 20px;
    /* height: 242px; */
    border-radius: 5px;
}
.card-vrt .li-dash{height: inherit;padding: 0;}
.card-vrt .info{flex: 1;}
.card-vrt h5 {
    font-size: 26px;
    font-weight: 600;
    /* margin: 30px 0 20px; */
    margin: 0 0 20px;
    color: #222;
}
.card-vrt h5 small{
   margin-left: 15px;
    color: #222;
    font-size: 16px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .card-row {
        flex-direction: column;
    }
    .card-row :is(p, li) {
        font-size: 15px;
    }
    .card-row .img-box {
        width: 100%;
        flex: 0 1 auto;
        height: 180px;
    }
    .card-row .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .card-vrt{grid-template-columns: repeat(1,1fr);}
    .card-vrt :is(ul){height: inherit;}
    .card-vrt .img-box img{width: 100%;}
}
/* banner */
.banner {
    color: #fff;
    position: relative;
    height: clamp(200px, 40vw, 250px);
    background: url(/public/img/sub/service-bg.jpg) #666 no-repeat center / cover;
    margin-bottom: 50px;
}
.banner .text{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: clamp(45px, 5vw, 55px);
    height: 100%;
}
.banner .des {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    line-height: 1.4;
}
@media (width <= 767.98px) {
    .banner .text{gap: 0;justify-content: space-between;}
}
/* [ navbar ] */
nav.navbar {
    /* 메인메뉴 padding */
    --navbar-menu-padding-inline: clamp(15px, 2vw, 30px);
    /* 메인메뉴 font-size */
    --navbar-menu-font-size: clamp(16px, 2vw, 18px);
    /* 드롭다운 메뉴 font-size */
    --navbar-dropdown-menu-font-size: clamp(14px, 2vw, 15px);
    /* 로고 사이즈 */
    --navbar-logo-width: clamp(120px, 16vw, 208px);
    --navbar-logo-font-size: clamp(20px, 3vw, 24px);
}
/* nav-top */
nav.navbar:has(.nav-top) {
    flex-direction: column;
}
nav.navbar .nav-top {
    flex-shrink: 0;
    height: var(--navbar-top-height);
    background-color: #444;
}
nav.navbar .nav-top .container {
    height: 100%;
}
nav.navbar .nav-top ul {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}
nav.navbar .nav-top li {
    line-height: 1;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}
/* nav-menu */
nav.navbar :is(ul, li, a) {
    all: unset;
    box-sizing: border-box;
}
nav.navbar a {
    cursor: pointer;
}
nav.navbar .navbar-header {
    margin-inline: 0 !important;
}
nav.navbar :where(*:not(i)):before,
nav.navbar :where(*):after {
    content: none;
}
nav.navbar {
    all: unset;
    z-index: 5000;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    display: flex;
    height: var(--navbar-height);
    background-color: #000;
    border-bottom: 0;
}
nav.navbar > .container {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    gap: clamp(20px, 5vw, 60px);
}
nav.navbar:has(.nav-top) > .container {
    flex: 1;
    height: auto;
}
/* 로고 */
nav.navbar .navbar-brand,
nav.navbar .navbar-brand:is(:hover, :focus) {
    display: block;
    margin-left: 0 !important;
}
nav.navbar .navbar-brand img {
    width: var(--navbar-logo-width);
    /* -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1); */
}
/* 텍스트 로고 */
nav.navbar .navbar-brand span {
    position: relative;
    display: block;
    font-size: var(--navbar-logo-font-size);
    font-weight: 700;
    color: #000;
    white-space: nowrap;
}
/* 메인메뉴 */
nav.navbar .navbar-right > li > a {
    z-index: 100;
    font-size: var(--navbar-menu-font-size);
    color: #fff;
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: -0.4px;
}
nav.navbar .navbar-right :is(.open > :is(a, a:focus, a:hover), li > a:is(:hover, :focus), li:is(:hover, :focus) > a) {
    position: relative;
    z-index: 100;
    background-color: transparent;
    color: var(--page-point-color);
}
.navbar-inverse .navbar-nav>li>a:focus, .navbar-inverse .navbar-nav>li>a:hover{
    color: #fff;
}
/* 서브 드롭다운메뉴 */
nav.navbar .navbar-right :is(.dropdown-menu) {
    z-index: 50;
    background-color: #fff;
}
nav.navbar .navbar-right :is(.dropdown-menu) a {
    all: unset;
    cursor: pointer;
    display: inline-block;
    transition: none;
    font-size: var(--navbar-dropdown-menu-font-size);
    font-weight: 500;
    color: #333;
    width: 100%;
    padding: 7px;
}
nav.navbar .navbar-right :is(.dropdown-menu) a:hover {
    background-color: inherit;
    color: var(--page-point-color);
    text-decoration: underline;
}
nav.navbar #gnbauth > a {
    gap: 5px;
}
/*  [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (width >= 768px) {
    /* 메인메뉴 */
    nav.navbar .navbar-collapse {
        display: flex !important;
        align-self: stretch;
    }
    nav.navbar .navbar-right {
        display: flex;
        align-self: stretch;
    }
    nav.navbar .navbar-right > li {
        position: relative;
        display: flex;
    }
    nav.navbar .navbar-right > li > a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        background-color: transparent;
        padding-inline: var(--navbar-menu-padding-inline);
        padding-block: 0;
        font-weight: 500;
    }
    nav.navbar .navbar-right > :is(li:not(#gnbauth):last-child, li#gnbauth) {
        margin-right: calc(var(--navbar-menu-padding-inline) * -1);
    }
    /* 데스크탑 서브 드롭다운메뉴 */
    nav.navbar .dropdown-menu {
        all: unset;
        box-sizing: border-box;
        z-index: 5;
        overflow: hidden;
        position: absolute;
        left: 50%;
        top: 100%;
        transform: translateX(-50%);
        display: none;
        flex-direction: column;
        align-items: center;
        border-radius: 0px;
        box-shadow: 0 5px 14px rgba(0, 0, 0, 0.15);
        margin-top: 0px !important;
        padding: 25px;
        /* min-width: 160px; */
        min-width: 200px;
        /* gap: 15px; */
        opacity: 0;
        transform-origin: center top;
    }
    nav.navbar .navbar-right > li.open .dropdown-menu {
        display: flex;
        animation: menuOpen 0.25s forwards;
    }
    @keyframes menuOpen {
        0% {
            opacity: 0;
            scale: 1 0.5;
        }
        100% {
            opacity: 1;
            scale: 1 1;
        }
    }
    nav.navbar .dropdown-menu a {
        display: flex;
        line-height: 1.1;
        padding: 10px 0;
        letter-spacing: -0.04em;
        border-bottom: 1px solid transparent;
        white-space: nowrap;
        font-weight: 400;
    }

    /* [  navbar-custom-scorll-change  ] */
    /* nav.navbar:is(.top) {
        --navbar-height: 80px;
        --navbar-scroll-filter: grayscale(1) brightness(10) invert(0);
        --navbar-scroll-color: #fff;
        --navbar-scroll-color-hover: var(--page-point-color);
        --navbar-scroll-font-weight: 400;
        --navbar-scroll-background-color: transparent;
        --navbar-logo-width: 120px;
        background-color: var(--navbar-scroll-background-color);
        border-color: rgba(255, 255, 255, 0.25);
    }
    .navbar:not(.scroll) {
        background-color: var(--navbar-scroll-background-color);
    }
    .navbar:is(:hover, .scroll) {
        --navbar-height: 100px;
        --navbar-scroll-filter: unset;
        --navbar-scroll-color: #333;
        --navbar-scroll-color-hover: var(--page-point-color);
        --navbar-scroll-font-weight: 500;
        --navbar-scroll-background-color: #fff;
        --navbar-logo-width: 150px;
    }
    .navbar:where(.top, .scroll) {
        --navbar-transition: 0.3s;
        transition: var(--navbar-transition);
        height: var(--navbar-height);
        background-color: var(--navbar-scroll-background-color);
    }
    .navbar:where(.top, .scroll) .navbar-brand img {
        transition: width 0.25s;
        filter: var(--navbar-scroll-filter);
    }
    .navbar:where(.top, .scroll) .navbar-brand span {
        color: var(--navbar-scroll-color);
    }
    .navbar:where(.top, .scroll) ul.navbar-right > li > a {
        font-weight: var(--navbar-scroll-font-weight);
        color: var(--navbar-scroll-color);
    }
    .navbar:where(.top, .scroll) ul.navbar-right > li > a:where(:hover, :focus),
    .navbar:where(.top, .scroll) ul.navbar-right > li:where(:hover, :focus) .dropdown-toggle {
        color: var(--navbar-scroll-color-hover) !important;
    } */
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    nav.navbar {
        overflow: hidden;
        animation: menuHidden 0s 0.401s forwards;
    }
    @keyframes menuHidden {
        from {
            overflow: hidden;
        }
        to {
            overflow: visible;
        }
    }
    nav.navbar .navbar-header {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    nav.navbar .navbar-brand {
        order: 1;
    }
    nav.navbar .navbar-toggle {
        order: 2;
        border: 0;
        padding: 0;
        margin: 0;
    }
    nav.navbar .navbar-toggle::before {
        content: "\e5d2";
        font-family: var(--gms);
        font-size: 1.75em;
        color: #fff;
        font-variation-settings: var(--gms-700-out);
    }
    nav.navbar .navbar-toggle > * {
        display: none;
    }
    nav.navbar .navbar-toggle:where(:hover, :focus) {
        background: none !important;
    }
    nav.navbar.open .navbar-toggle::before {
        content: "\e5cd";
    }
    nav.navbar .navbar-collapse {
        transition: none;
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        max-height: 0;
        border-top: 1px solid #5A4C4C;
        height: auto !important;
    }
    @keyframes menuHeight {
        from {
            height: 100%;
        }
        to {
            height: 0;
        }
    }
    nav.navbar .navbar-collapse .navbar-right {
        display: flex;
        flex-direction: column;
        overflow: hidden auto;
        position: relative;
        width: 100%;
        padding-block: 0px;
    }
    nav.navbar.open .navbar-collapse {
        transition: none;
        max-height: 100svh;
        box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
    }
    nav.navbar .navbar-right > li {
        transition: inherit;
    }
    nav.navbar .navbar-right > li > a {
        display: flex;
        align-items: center;
        width: 100%;
        height: 55px;
        color: #333;
        background-color: #fff !important;
        border-bottom: 1px solid #ddd !important;
        padding-inline: 15px;
    }
    nav.navbar .dropdown-toggle::after {
        all: unset;
        content: "\e5cf";
        font-family: var(--gms);
        font-variation-settings: var(--gms-300-out);
        margin-left: auto;
        font-size: 1.5em;
    }
    nav.navbar .dropdown.open .dropdown-toggle {
        color: #A77C7C;
        font-weight: 600;
    }
    nav.navbar .dropdown.open .dropdown-toggle::after {
        content: "\e5ce";
        color: #A77C7C;
        font-variation-settings: var(--gms-400-out);
    }
    nav.navbar .navbar-right .dropdown-menu {
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        background-color: #eee !important;
        padding: 0 !important;
        max-height: 0;
    }
    nav.navbar .navbar-right .dropdown-menu a {
        width: 100%;
        display: block;
        color: #555 !important;
        padding: 10px 15px !important;
    }
    nav.navbar .navbar-right > li.open .dropdown-menu {
        opacity: 1;
        max-height: 100svh;
    }
}
/* ==================[ footer ]================== */
footer.footer-wrap {
    background-color: #fff;
    border-top: 1px solid #eee;
}
footer.footer-wrap .footer-info {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding-block: clamp(30px, 5vw, 40px);
}
/* 푸터 로고 */
footer.footer-wrap .footer-logo {
    flex-shrink: 0;
}
footer.footer-wrap .footer-logo img {
    filter: grayscale(1);
    mix-blend-mode: multiply;
    opacity: 0.5;
    width: clamp(80px, 10vw, 117px);
}
/* 정보 */
footer.footer-wrap .footer-text ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 1px;
    margin-top: -2px;
}
footer.footer-wrap .footer-text li {
    display: inline-flex;
    font-size: clamp(12px, 2vw, 14px);
    color: #707070;
}
/* 카피라이트 */
footer.footer-wrap span.copyright {
    display: block;
    margin-top: 10px;
    color: rgba(68, 68, 68, 0.5);
    font-size: 12px;
    letter-spacing: -0.02em;
}
/* 구분선 */
/* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (width >= 768px) {
    footer.footer-wrap .footer-text li:not(.clearfix) + li::before {
        content: "";
        display: block;
        align-self: center;
        height: 65%;
        width: 1px;
        margin-inline: 12px;
        background-color: #cccccc;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    footer.footer-wrap .footer-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    footer.footer-wrap .footer-text ul {
        justify-content: center;
        column-gap: 10px;
    }
    footer.footer-wrap .footer-text li {
        text-align: center;
    }
    footer.footer-wrap span.copyright {
        text-align: center;
        margin-top: 20px;
    }
}
/* ==================[ sub-wrap ]================== */
/* sub-header */
.sub-header .title-h1 h1 {
    line-height: 1;
    text-align: left;
    color: #222;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    padding-top: clamp(80px, 10vw, 150px);
}
.sub-header .title-h1 h1 small.en {
    display: inline-block;
    color: inherit;
    letter-spacing: 0;
    margin-left: 20px;
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 500;
    color: #999;
}
/* sub-nav */
.sub-nav {
    border-bottom: 1px solid #ccc;
}
.sub-nav ol {
    display: flex;
    justify-content: center;
    gap: clamp(30px, 5vw, 60px);
}
.sub-nav a {
    position: relative;
    display: flex;
    height: var(--sub-nav-height);
    justify-content: center;
    align-items: center;
    font-size: clamp(15px, 2vw, 16px);
}
.sub-nav li.active a {
    font-weight: 600;
}
.sub-nav li.active a::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--page-point-color);
}
/* sub-content */
.sub-content {
    padding-block: 150px;
    padding-top: clamp(80px, 10vw, 120px);
}
.sub-content .content + .content {
    margin-top: 100px;
}
/* title */
/* 타이틀 변수 설정*/
.sub-wrap [class*="title-h"] {
    --h-line-height: 1.5;
    --h-letter-spacing: 0em;
    --p-font-weight: 400;
    --p-color: #555555;
    --p-line-height: 1.5;
}
.sub-wrap [class*="title-h"]:only-child {
    margin-bottom: 0;
}
/* 제목 */
.sub-wrap [class*="title-h"] > :is(h2, h3, h4, h5, h6) {
    font-size: var(--h-font-size);
    font-weight: var(--h-font-weight);
    color: var(--h-color);
    line-height: var(--h-line-height);
    letter-spacing: var(--h-letter-spacing);
}
/* 본문 */
.sub-wrap [class*="title-h"] > :is(p, ul, ol) {
    font-size: var(--p-font-size);
    font-weight: var(--p-font-weight);
    color: var(--p-color);
    line-height: var(--p-line-height);
}
/* 제목+본문 간격 */
.sub-wrap [class*="title-h"] > :is(h2, h3, h4, h5, h6) + * {
    margin-top: var(--text-between);
}
/* 본문+본문 간격 */
.sub-wrap [class*="title-h"] > *:not(:is(h2, h3, h4, h5, h6)) + * {
    margin-top: calc(var(--text-between));
}
.sub-wrap .title-h2 {
    --h-font-size: clamp(30px, 4vw, 40px);
    --h-font-weight: 700;
    --h-color: #222222;
    --p-font-size: clamp(16px, 4vw, 17px);
    --p-line-height: clamp(25px, 4vw, 30px);
    --text-between: clamp(20px, 4vw, 25px);
    margin-bottom: 100px;
}
.sub-wrap .title-h3 {
    --h-font-size: clamp(20px, 3vw, 30px);
    --h-font-weight: 600;
    --h-color: #333333;
    --p-font-size: clamp(15px, 3vw, 16px);
    --p-line-height: 24px;
    --text-between: 20px;
    margin-bottom: 80px;
}
.sub-wrap .title-h4 {
    --h-font-size: clamp(20px, 3vw, 24px);
    --h-font-weight: 600;
    --h-color: #333333;
    --p-font-size: clamp(15px, 3vw, 16px);
    --text-between: clamp(10px, 2vw, 15px);
    margin-bottom: clamp(10px, 1vw, 15px);
}
.sub-wrap .title-h5 {
    --h-font-size: 20px;
    --h-font-weight: 600;
    --h-color: #333333;
    --p-font-size: 16px;
    --text-between: 5px;
    margin-bottom: 40px;
}
.sub-wrap .title-h6 {
    --h-font-size: 18px;
    --h-font-weight: 500;
    --h-color: #333333;
    --p-font-size: 15px;
    --text-between: 5px;
    margin-bottom: 20px;
}
.sub-wrap .con-box + .con-box {
    margin-top: 60px;
}

/* sub-layout02 */
.sub-body {
}
.sub-body > .container {
    display: flex;
    gap: 30px;
}

.sub-body .sub-nav {
    width: 262px;
}
.sub-body .sub-nav .title-h1 {
    padding: 30px 0;
    background: var(--page-point-color);
}
.sub-body .sub-nav .title-h1 h1 {
    line-height: 1;
    text-align: center;
    font-size: clamp(34px, 7vw, 43px);
    letter-spacing: -0.04em;
    font-weight: 500;
    color: #fff;
    margin-top: clamp(20px, 5vw, 25px);
}
.sub-body .sub-nav .title-h1 h1:only-child {
    margin: 0;
}
.sub-body .sub-nav h2 {
}
.sub-body .sub-nav ol {
    flex-direction: column;
    gap: 0;
}
.sub-body .sub-nav li {
}
.sub-body .sub-nav a {
    height: 46px;
    justify-content: flex-start;
}
.sub-body .sub-nav li.active a {
}
.sub-body .sub-nav li a::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: var(--page-grey-color);
    bottom: 0;
    position: absolute;
}
.sub-body .sub-nav li.active a::before {
    background: var(--page-point-color);
}

.sub-body .sub-content {
    flex: 1;
}

/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .sub-header .container {
        justify-content: center;
    }
    .sub-header .title-h1 h1 small.en {
        display: block;
        margin-top: 8px;
        margin-left: 0;
    }
}
/* ==================[ main-wrap ]================== */
/* [ main-carousel ] */
#mainCarousel .carousel-inner .item {
    /* 반응형(1200px~): ~600px / 최대 높이: 850px / 슬라이드 풀페이지*/
    height:clamp(570px, 60vw, 800px);
}
/* #mainCarousel .carousel-inner .item::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
} */
#mainCarousel .carousel-caption {
    top: 50%;
    right: 0;
    left: 0;
    text-shadow: none;
    text-align: center;
    max-width: var(--container-max-width);
    padding: 0 var(--container-padding-inline);
    margin-inline: auto;
}
#mainCarousel .carousel-caption span.company {
    display: block;
    font-size: 20px;
    color: var(--page-point-color);
}
#mainCarousel .carousel-caption h1 {
    position: relative;
    font-size: clamp(30px, 6vw, 60px);
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0;
    margin: 0;
    color: inherit;
}

#mainCarousel .carousel-caption h1 span {
    display: block;
    font-size: clamp(18px, 4vw, 35px);
}
#mainCarousel .carousel-caption p {
    margin-top: clamp(20px, 5vw, 25px);
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: inherit;
    display: none;
}
#mainCarousel .carousel-control.left {
    --control-left: 0;
    --control-content: "\e2ea";
}
#mainCarousel .carousel-control.right {
    --control-right: 0;
    --control-content: "\e5e1";
}
#mainCarousel .carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--control-left);
    right: var(--control-right);
    display: flex;
    align-items: center;
    opacity: 1;
    width: 10%;
    height: 100%;
    background: transparent;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    background-color: rgba(0, 0, 0, 0);
}
#mainCarousel .carousel-control span.glyphicon {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: auto;
    height: auto;
    font-size: clamp(26px, 5vw, 46px);
    margin: 0;
}
#mainCarousel .carousel-control span.glyphicon::before {
    content: var(--control-content);
    color: #fff;
    text-shadow: none;
    font-family: var(--gms) !important;
    font-variation-settings: var(--gms-100-out);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #mainCarousel .carousel-control {
        display: none;
    }
}
/* [ indicators ] */
#mainCarousel .carousel-indicators {
    --indicators-circle: clamp(8px, 2vw, 11px);
    --indicators-gap: 8px;
    --indicators-bottom: clamp(20px, 4vw, 40px);
    --indicators-content: center;
    --indicators-color-normal: rgba(255, 255, 255, 0);
    --indicators-color-active: #fff;
    box-sizing: border-box;
    z-index: 15;
    position: absolute;
    left: 50%;
    translate: -50% 0;
    bottom: var(--indicators-bottom);
    display: flex;
    justify-content: var(--indicators-content);
    gap: var(--indicators-gap);
    width: 100%;
    max-width: var(--container-max-width);
    padding-inline: var(--container-padding-inline);
    margin: 0 auto;
    text-align: center;
    list-style: none;
}
#mainCarousel .carousel-indicators li {
    cursor: pointer;
    opacity: 1;
    background-color: var(--indicators-color-normal);
    transition: none;
    aspect-ratio: 1;
    width: var(--indicators-circle);
    height: auto;
    border-radius: 9999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: 0;
}
#mainCarousel .carousel-indicators li.active {
    background: var(--indicators-color-active);
    box-shadow: none;
}
/* layout */
article.main-article {
    padding-block: 80px;
}
article.main-article section.main-section + section.main-section {
    margin-top: 80px;
}
#m_arc01{
    padding-block: 50px;
    box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.04);
}
#m_arc01 .icon-box-type01 .box:last-child .icon span{
    font-variation-settings: var(--gms-500-out);
}
/* main-widget */
.service-widget {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(15px, 2vw, 30px);
}
.service-widget .col {
    display: flex;
    flex-direction: column;
    aspect-ratio: 5/3;
}
.service-widget .img-box {
    background-color: #ccc;
}
.service-widget .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.service-widget .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 20px;
    background-color: #f7f7f7;
}
.service-widget .info p {
    font-size: 18px;
    font-weight: 600;
}
.service-widget .info::after {
    position: relative;
    display: block;
    content: "\e145";
    font-family: var(--gms);
    font-variation-settings: var(--gms-300-out);
    font-size: 28px;
    margin-right: -5px;
    line-height: 0.5;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .service-widget {
        display: flex;
        flex-direction: column;
    }
    .service-widget .col {
        aspect-ratio: unset;
        flex: 0 1 clamp(180px, 50vw, 240px);
    }
}
/* banner-widget */
.banner-widget {
    height: clamp(186px, 40vw, 360px);
    min-height: 180px;
    background-color: #ccc;
}
.banner-widget :is(.container, .title-h3) {
    height: 100%;
}
.banner-widget .title-h3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    color: #ffffff;
    padding-block: 30px;
}
.banner-widget .title-h3 p {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 300;
    letter-spacing: -0.03em;
}
.banner-widget .title-h3 h3 {
    font-weight: 600;
    font-size: clamp(20px, 5vw, 32px);
    letter-spacing: -0.04em;
    margin-block: clamp(3px, 0.1vw, 7px) clamp(20px, 3vw, 40px);
}
#site .banner-widget .btn {
    background-color: #fec925;
    color: #222222;
}
#site .banner-widget :is(.btn.btn-primary:hover, .btn.btn-primary:focus) {
    background-color: #f7bc0b;
}
/* board-widget */
.board-widget {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(60px, 5vw, 80px);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .board-widget {
        display: flex;
        flex-direction: column;
    }
}

.main-wrap [class^="board_box"] {
    margin-bottom: 0 !important;
}
.main-wrap .page-header {
    margin-block: 0 20px;
    color: #333333;
    border-bottom: 1px solid #333333;
}
.main-wrap .page-header h4 {
    color: inherit;
    display: inline-block;
    font-weight: 600 !important;
    font-size: clamp(19px, 3vw, 24px);
    letter-spacing: -0.02em;
}
.main-wrap .page-header i::before {
    position: relative;
    display: block;
    content: "\e145" !important;
    translate: 5px 2px;
    font-family: var(--gms);
    font-variation-settings: var(--gms-300-out);
    font-size: 34px;
    font-weight: 500;
    color: inherit;
}
.main-wrap .type_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.main-wrap .type_list li {
    padding: 0;
    display: flex;
}
.main-wrap .type_list a:hover {
    text-decoration: underline;
}
.main-wrap .type_list :where(li, a) {
    line-height: 1;
    font-size: 17px;
    color: #000;
}
.main-wrap .type_list .info span:not(.regdate) {
    display: none;
}
.main-wrap .type_thumb {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    gap: 10px;
}
.main-wrap .type_thumb > div {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.main-wrap .type_thumb .inner {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
}
.main-wrap .type_thumb .thumb {
    aspect-ratio: 5/3.4;
    height: auto;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    .main-wrap .type_thumb .thumb {
        aspect-ratio: unset;
        height: 120px;
    }
}
.main-wrap .type_thumb .bottom {
    padding: 0;
}
.main-wrap .type_thumb .info {
    display: none;
}
.main-wrap .type_thumb .bottom .title {
    padding: 0;
    margin-block: 5px 0;
}
.main-wrap :where(.type_video, .type_blog_b) .cate {
    display: none;
}
.main-wrap .type_thumb .bottom .title a {
    font-size: clamp(15px, 3vw, 16px);
}
/* ==================[ board ]================== */
#site .board_wrapper {
    margin-block: 0;
}
#site .search_wrap {
    margin-top: 60px;
    margin-bottom: 0;
}
#site .pagination_wrap {
    margin-top: 40px;
}
/* badge */
#site :where(.table_video, .table_blog2, .table_pd, .table_blog, .table_default, .board_pd_view .pd_title_wrap) .badge {
    background-color: #3ab936;
    color: #ffffff;
    margin-right: 5px !important;
    margin-top: -3px;
    letter-spacing: 0;
    min-width: 45px;
    border-radius: 2px;
}
/* badge-text */
/* #site :is(.table_video, .table_blog, .table_blog2, .table_pd) .badge {
    background-color: transparent !important;
    color: var(--page-point-color) !important;
    margin: 0 !important;
    padding: 0;
    font-size: 12px;
    font-weight: 700;
} */
#site .board_wrapper .table.table_default tr :is(th, td) {
    font-size: 16px;
    letter-spacing: -0.02em;
}
#site .board_wrapper .table.table_default thead th {
    background-color: transparent;
    padding-block: 16px;
    font-weight: 500;
}
#site .board_wrapper .table.table_default tbody :is(th, td) {
    padding-block: 15px;
}
#site .board_wrapper .table.table_default tbody th {
    font-weight: 500;
}
#site .board_wrapper .table.table_default tbody :is(.writer, .regdate, .hits) {
    color: #999999;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site .board_wrapper .table.table_default tr :is(th, td) {
        padding-block: 15px;
    }
}
/* category */
#site .category_wrap {
    margin-bottom: clamp(20px, 10vw, 34px);
}
#site .category_wrap ul {
    display: flex;
    gap: clamp(20px, 3vw, 30px);
}
#site .category_wrap li {
    margin-left: 0 !important;
}
#site .category_wrap li a {
    display: flex;
    align-items: center;
    height: clamp(30px, 5vw, 35px);
    padding-bottom: 0;
    border-bottom-width: 2px;
    font-weight: 500;
    font-size: clamp(15px, 2vw, 17px);
    color: #333333;
}
#site .category_wrap li:not(.on) a {
    border-bottom-color: transparent;
}
#site .category_wrap li.on a {
    color: var(--page-point-color);
    border-bottom-color: var(--page-point-color);
    font-weight: 700;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site .category_wrap ul {
        justify-content: center;
    }
}
/* board-columns */
#site :is(.table_video, .table_blog2, .table_pd) {
    --board-template-columns: 1;
    display: grid;
    grid-template-columns: repeat(var(--board-template-columns), minmax(0, 1fr));
    margin-inline: 0;
    gap: clamp(30px, 3vw, 40px) clamp(20px, 3vw, 30px);
}
#site :is(.table_video, .table_blog2, .table_pd) .inner {
    border: 0;
}
#site :is(.table_video, .table_blog2, .table_pd)::before,
#site :is(.table_video, .table_blog2, .table_pd)::after {
    content: none;
}
/* [min-small / portrait phones] 모바일, 576px 이상 ▲ */
@media (width >= 576px) {
    #site :is(.table_video, .table_blog2, .table_pd) {
        --board-template-columns: 2;
    }
}
/*  [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (width >= 768px) {
    #site :is(.table_video, .table_blog2, .table_pd) {
        --board-template-columns: 3;
    }
}
#site :is(.table_video, .table_blog2, .table_pd) > dd {
    width: 100%;
    padding: 0;
}
/* 등록된 [상품/게시글]이 없습니다 문구 */
#site :is(.table_video, .table_blog2, .table_pd) > dd:not([class]) {
    width: 100%;
    grid-column: span var(--board-template-columns);
}
#site :is(.table_video, .table_blog2, .table_pd) > dd.no_content {
    grid-column: span var(--board-template-columns);
}
/* 게시판 썸네일 */
#site :is(.table_video, .table_blog, .table_blog2, .table_pd) a span.thumb {
    display: block !important;
    aspect-ratio: 1.6666666667;
    width: 100%;
    height: auto;
    background-size: cover;
    background-color: #ccc;
}
#site :is(.table_video, .table_blog2) dd {
    margin-bottom: 0;
}
#site :is(.table_video, .table_blog2) .bottom {
    margin-top: 18px;
    padding: 0;
}
#site :is(.table_video, .table_blog2) :where(.inner .bottom) a {
    display: block;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 600;
}
#site :where(.table_video, .table_blog2, .table_blog) :where(.inner .bottom, .right) .title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px 0;
    padding: 0;
    margin-bottom: 5px;
}
#site :where(.table_video, .table_blog2, .table_blog) :where(.inner .bottom, .right) .info {
    display: flex;
    gap: 10px;
}
#site :where(.table_video, .table_blog2, .table_blog) :where(.inner .bottom, .right) .info span {
    padding: 0;
}
.table_blog .right .title a{font-size: 19px;}
/* 게시판 블로그 A */
#site :where(.table_blog) dd {
    padding: 15px 0;
    display: flex;
    gap: 40px;
}
#site :where(.table_blog) .left {
    width: 240px;
}
#site :where(.table_blog) .right {
    padding-top: 10px;
    flex: 1;
}
#site :where(.table_blog) .right .text p {
    color: #555;
    padding: 0;
}
#site :where(.table_blog) .right .info span {
    padding: 0px;
    font-size: 15px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site :where(.table_blog) dd {
        padding: 20px 15px;
        gap: 20px;
        flex-direction: column;
    }
    #site :where(.table_blog) .left {
        width: 100%;
        padding: 0;
    }
    #site :where(.table_blog) .left a {
        display: block;
    }
    #site :where(.table_blog) .right {
        padding-top: 0;
    }
    #site :where(.table_blog) .right .info {
        margin-bottom: 10px;
    }
    #site :where(.table_blog) .right .text {
        height: 3em;
    }
}
/* 게시글 */
#site .board_data_view .header_wrap .title {
    font-weight: 600;
}
/* form */
#site :where(#form_history_list, #form_history_nologin) .board_wrapper {
    padding: 0;
    background: transparent;
    min-height: auto;
}
#site :where(.board_wrapper form[id*="form"] table.table, .board_wrapper form[id*="form"] :where(th, td)) {
    padding: unset;
    width: unset;
    height: unset;
    border: 0;
    line-height: 1;
    font-size: 1rem;
}
#site .board_wrapper form[id*="form"] table.table {
    width: 100%;
    border-top: 0;
}
#site .board_wrapper form[id*="form"] table.table th {
    padding: 5px 0 !important;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    background-color: transparent;
    width: auto;
}
#site .board_wrapper form[id*="form"] table.table :is(th, td) {
    font-size: 16px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site .board_wrapper form[id*="form"] table.table th {
        margin-bottom: 15px;
    }
}
#site .board_wrapper form[id*="form"] table.table tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
#site .board_wrapper form[id*="form"] table.table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 10fr);
    align-items: flex-start;
    gap: 20px;
    padding: clamp(13px, 3vw, 15px) 10px;
    border-bottom: 1px solid #ccc;
}
#site .board_wrapper form[id*="form"] table.table tbody tr:first-child {
    border-top: 1px solid #000;
}
#site .board_wrapper form[id*="form"] #item_agree .checkbox {
    margin-top: 4px;
}
#site .custom_checkbox + span::before {
    margin: 0 7px 0 -20px;
    vertical-align: text-bottom;
}
/* 동의 */
#site .board_wrapper form[id*="form"] #item_agree label {
    font-size: clamp(13px, 2vw, 15px);
}
#site .board_wrapper form[id*="form"] #item_agree label a {
    color: var(--page-point-color);
    color: #222;
    font-weight: 500;
}
#site .board_wrapper form[id*="form"] #item_email .text-muted {
    font-size: clamp(11px, 2vw, 13px);
}
/* 주문내역 숨김 */
#site :where(.form-wrap, form) #list_btn {
    display: none !important;
}
/* board write */
#site .board_wrapper .table.board_write_table {
    border-top: 1px solid #333;
    border-collapse: inherit;
}
#site .board_wrapper .table.board_write_table tbody th {
    background-color: transparent;
    font-weight: 700;
}
#site .board_wrapper .table.board_write_table tbody td {
    padding: 0px !important;
    border: 0;
}
#site .board_wrapper .table.board_write_table :where(.input-group.input-group-big, .form-control.form-control-big) {
    width: auto;
}
#site .board_wrapper .table.board_write_table .text-muted {
    margin-top: 8px;
}
#site .board_wrapper .table.board_write_table .files .fileInput {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, min-content);
    align-self: stretch;
}
#site .board_wrapper .table.board_write_table .files .fileInput .file_add {
    padding: 6px 7px 5px;
}
#site .board_wrapper .table.board_write_table .files .fileInput .tempChk {
    text-align: right;
}
#site .board_wrapper .table.board_write_table .files + .sumChk {
    padding-bottom: 0;
    margin-bottom: 0;
    border: 0;
}
/* 휴지통 버튼 */
#site .board_wrapper .table.board_write_table .files .refresh {
    cursor: pointer;
}
#site .board_wrapper .table.board_write_table .files .refresh:hover {
    color: #ec0909;
}
/* 파일 추가 버튼 */
#site .board_wrapper .table.board_write_table .files + #File_add {
    padding: 0;
    padding-left: 0;
    padding-right: 0;
    height: 30px;
    border-radius: 2px;
}
#site .board_wrapper .table.board_write_table .files + #File_add .fa-plus {
    line-height: 0;
}
/* input 가로 */
#site .board_wrapper .table.board_write_table :where(.input-group, .form-control):not(#wr_name, #wr_email, #at_name, #wr_captcha, #wr_cate, #wr_thumb) {
    width: 100%;
}
/* 필수 입력 항목 */
#site .board_wrapper .table.board_write_table :where(th > span, span.required_text):first-child {
    position: static;
    margin: -0em 3px 0 0;
    color: var(--page-point-color);
}
/* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (width >= 768px) {
    #site .board_wrapper .table.board_write_table .files_upload_wrap {
        gap: 15px;
    }
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site .board_wrapper .table.board_write_table img[alt*="현재 대표 이미지"] {
        max-width: 100% !important;
    }
    #site .board_wrapper .table.board_write_table #delete_thumb {
        width: 100%;
    }
    #site .board_wrapper .table.board_write_table :where(.input-group, .form-control) {
        width: 100%;
    }
    #site :is(.board_list_list, .board_status_list) .table_default :is(colgroup, .num, .regdate, .hits, .writer) {
        display: none;
    }
    #site :is(.board_list_list, .board_status_list) .table_default .subject {
        width: 100%;
    }
    #site :is(.board_list_list, .board_status_list) .table_default .status {
        width: 35%;
    }
    #site .board_data_view .header_wrap .title {
        font-size: 20px;
    }
    #site .board_data_view .header_wrap .info {
        margin-top: 10px;
    }
    #site .board_data_view .download_wrap tr {
        display: flex;
        flex-direction: column;
    }
    #site .board_data_view .download_wrap tr > * {
        width: 100%;
    }
    #site .board_data_view .download_wrap tr th {
        padding-bottom: 10px;
    }
    #site .board_data_view .download_wrap tr a {
        word-break: break-all;
    }
    #site .board_data_view .download_wrap tr li + li {
        margin-top: 10px;
    }
}
/* radio checkbox */
#site :where(.member_wrapper, .board_wrapper) .checkbox label :is(input[type="checkbox"], input[type="radio"]) {
    margin-top: 0;
}
/* 자동입력방지 */
#wr_captcha {
    margin-top: 0 !important;
}
#captcha {
    z-index: 10;
    position: relative;
    filter: brightness(0.62) contrast(4.5) opacity(0.7);
    height: 40px;
    margin: 0;
    border-color: transparent;
}
#captcha + br {
    display: none;
}
#captcha + br + input {
    margin-left: -1px;
}
#captcha + br + input:focus {
    z-index: 15;
}
td:has(#captcha) {
    display: flex !important;
    gap: 0 !important;
}
.board_data_view .header_wrap .info span {
    font-size: 14px;
    color: #777;
}
.board_data_view .header_wrap .info span strong {font-weight: 600;color: #555;}

/* 로그인/비번찾기 2024-02-22*/
#site .member_wrapper h1 {
    font-size: clamp(30px, 3vw, 36px);
    font-weight: 700;
}
#site .member_wrapper h1 + p {
    font-size: clamp(14px, 2vw, 16px);
}
#site .member_wrapper #login_form .btn {
    width: 100%;
}
#site .member_wrapper .form-group {
    display: flex;
}
#site .member_wrapper .form-group label {
    font-size: clamp(14px, 2vw, 16px);
}
#site .member_wrapper .login_extra {
    margin-top: 30px;
}
#site .member_wrapper .login_extra ul {
    display: flex;
    justify-content: center;
    gap: 0 15px;
}
#site .member_wrapper .login_extra li > a {
    font-size: clamp(13px, 3vw, 14px);
}
#site .member_wrapper .login_extra li + li {
    margin-left: 0;
}
#site .member_wrapper .login_extra li + li::before {
    content: none;
}
#site .member_wrapper .join_agree .join_agree_box {
    font-size: clamp(13px, 2vw, 16px);
}
#site .member_wrapper .join_agree .checkbox {
    font-size: clamp(12px, 2vw, 14px);
}
#site .member_wrapper .join_agree .checkbox a {
    color: #0439c1;
}
#site .member_wrapper .join_agree [type="checkbox"] {
    margin-top: clamp(1px, 0.5vw, 4px);
}
#site .member_wrapper .join_agree .btn {
    max-width: 150px;
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    #site .member_wrapper {
        padding-block: 60px 70px;
    }
    #site .member_wrapper h1 {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    #site .member_wrapper .form-group {
        flex-direction: column;
    }
    #site .member_wrapper .form-group + .form-group {
        margin-top: 10px;
    }
    #site .member_wrapper .login_extra ul {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    #site .member_wrapper .login_extra li + li::before {
        content: none;
    }
}
/* 회원가입 */
#site .member_wrapper .table tbody {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
#site .member_wrapper .table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 4fr);
    margin-bottom: -1px;
}
#site .member_wrapper .table tbody tr th {
    width: auto;
    padding-inline: 25px 15px;
    background-color: rgba(0, 0, 0, 0.03);
}
#site .member_wrapper .table tbody tr th span {
    color: var(--page-point-color);
}
#site .member_wrapper .table tbody tr td {
    padding-inline: 15px;
}
#site .member_wrapper .table tbody tr :where(th, td) {
    display: block;
    padding-block: 12px;
    font-size: clamp(13px, 3vw, 14px);
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
    :where(.member_wrapper .table, .member_wrapper .table :where(tbody, tbody tr)) {
        display: block !important;
        width: 100% !important;
    }
    #site .member_wrapper .table tbody tr :where(th, td) {
        display: block !important;
        width: 100% !important;
        font-size: clamp(15px, 2vw, 17px);
    }
    #site .member_wrapper .table tbody tr th {
        padding: 10px 30px !important;
    }
    #site .member_wrapper .table .files_upload_wrap {
        display: flex;
        flex-direction: column;
    }
    #site .member_wrapper .table .files_upload_wrap .files {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    #site .member_wrapper .table .files_upload_wrap .files input {
        width: auto;
    }
    #site .member_wrapper .table .files_upload_wrap .files .file_add {
        position: relative;
        right: auto;
    }
    #site .member_wrapper .table .files_upload_wrap .btn {
        width: 100%;
        aspect-ratio: inherit;
        margin-top: 15px;
    }
    #site .member_wrapper #join_form tr th {
        padding: 10px 20px !important;
        margin-bottom: 10px;
    }
    #site .member_wrapper #join_form tr td {
        display: flex !important;
        padding-left: 0;
        padding-right: 0;
        padding-top: 10px;
        padding-bottom: 10px;
        gap: 5px;
    }
    #site .member_wrapper #join_form tr td > div:has(textarea) {
        width: 100%;
    }
    #site .member_wrapper #join_form tr td[style="vertical-align:middle"] {
        align-items: center;
        padding-inline: 20px;
    }
    #site .member_wrapper #join_form tr td[style="vertical-align:middle"] span {
        margin-top: 0 !important;
    }
    #site .member_wrapper #join_form tr td input:not(#mb_mailing) {
        width: 100% !important;
    }
    #site .member_wrapper div.text-center {
        margin-top: 0 !important;
        margin-bottom: 50px;
        padding-top: 30px;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    #site .member_wrapper .text-center .btn + .btn {
        margin-left: 0 !important;
    }
    #site .member_wrapper .text-center .btn.btn-lg {
        padding: 0;
        height: 50px;
        font-size: 14px;
    }
    #site .member_wrapper .text-center :where(.btn.btn-lg, .btn + .btn) {
        flex: 1;
        min-width: inherit;
    }
}
/* 약관 */
#site :is(.privacy_container, .agreement_container, .mypage_container) {
    text-align: left;
    padding-inline: var(--container-padding-inline) !important;
    max-width: var(--container-max-width);
    margin-inline: auto;
}
#site :is(.privacy_container, .agreement_container) h1 {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    margin-bottom: 40px;
}
#site :is(.privacy_container, .agreement_container) .privacy_body {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.6em;
}
/* 접근성 */
.navbar .caret {
    display: none;
}
.clip {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 0);
}
/* company01 */
#company01 .greet-type01 .img-box img{width: max-content;height: auto;}
#company01 .info .li-dash > li{font-size: clamp(15px, 3vw, 17px);line-height: var(--p-line-height);}

#company01 .info .li-dash {
    margin-bottom: clamp(35px, 6vw, 50px);
}
#company01 .info .li-dash > li+li{margin-top: 20px;}

/* company02 */
.end_kr{
    border-bottom: 1px dashed #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

/* 반응형 */
/* max-width (under) */
/* [max-xx-lager / desktop] 데스크탑, 1400px 미만 ▼ */
@media (width <= 1399.98px) {
}
/* [max-x-lager / labtop] 노트북, 1200px 미만 ▼ */
@media (width <= 1199.98px) {
}
/* [max-lager / tablet] 태블릿, 992px 미만 ▼ */
@media (width <= 991.98px) {
}
/* [max-medium / landscape phones]  태블릿/모바일, 768px 미만 ▼ */
@media (width <= 767.98px) {
}
/* [max-small / portrait phones] 모바일, 576px 미만 ▼  */
@media (width <= 575.98px) {
}

/* min-width (over)*/
/* [min-xx-lager / desktop] 데스크탑, 1400px 이상 ▲ */
@media (width >= 1400px) {
}
/* [min-x-lager / labtop] 노트북, 1200px 이상 ▲ */
@media (width >= 1200px) {
}
/* [min-lager / tablet] 태블릿, 992px 이상 ▲ */
@media (width >= 992px) {
}
/* [min-medium / landscape phones]  태블릿/모바일, 768px 이상 ▲ */
@media (width >= 768px) {
}
/* [min-small / portrait phones] 모바일, 576px 이상 ▲ */
@media (width >= 576px) {
}