@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=block");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css");

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

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

@media (max-width: 767px) {
    :root {
        --navHeight: 80px;
    }
    .container {
        max-width: none;
        width: 100%;
        height: 100%;
    }
}

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

* {
    word-break: keep-all;
}

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

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

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

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

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

/* .badge,
.form-control,
.btn {
    border-radius: 0;
} */

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

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

.img-box.radius {
    border-radius: 5px;
}

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

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

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

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

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

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

small {
    font-size: 13px;
}

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

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

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

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

.btn {
    font-size: 15px;
}

br {
    visibility: visible;
    opacity: 0;
}

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

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

.row {
    margin: 0;
}

.col {
    padding: 0;
}

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

.grid {
    display: grid;
}

.grid > * {
    width: 100%;
}

.grid :where(.col),
.grid .col-span-1 {
    grid-column: span 1;
}
.grid .col-span-2 {
    grid-column: span 2;
}
.grid .col-span-3 {
    grid-column: span 3;
}
.grid .col-span-4 {
    grid-column: span 4;
}
.grid .col-span-5 {
    grid-column: span 5;
}
.grid .col-span-6 {
    grid-column: span 6;
}
.grid .col-span-7 {
    grid-column: span 7;
}
.grid .col-span-8 {
    grid-column: span 8;
}
.grid .col-span-9 {
    grid-column: span 9;
}
.grid .col-span-10 {
    grid-column: span 10;
}
.grid .col-span-11 {
    grid-column: span 11;
}
.grid .col-span-12 {
    grid-column: span 12;
}

.grid.col-temp-2 {
    grid-template-columns: var(--grid-2repeat);
}
.grid.col-temp-3 {
    grid-template-columns: var(--grid-3repeat);
}
.grid.col-temp-4 {
    grid-template-columns: var(--grid-4repeat);
}
.grid.col-temp-5 {
    grid-template-columns: var(--grid-5repeat);
}
.grid.col-temp-6 {
    grid-template-columns: var(--grid-6repeat);
}
.grid.col-temp-7 {
    grid-template-columns: var(--grid-7repeat);
}
.grid.col-temp-8 {
    grid-template-columns: var(--grid-8repeat);
}
.grid.col-temp-9 {
    grid-template-columns: var(--grid-9repeat);
}
.grid.col-temp-10 {
    grid-template-columns: var(--grid-10repeat);
}
.grid.col-temp-11 {
    grid-template-columns: var(--grid-11repeat);
}
.grid.col-temp-12 {
    grid-template-columns: var(--grid-12repeat);
}

.modal.show {
    opacity: 1;
}

.modal .modal-header {
    flex-direction: row-reverse;
}
.modal .modal-header::before,
.modal .modal-header::after {
    content: none;
}
.modal .modal-footer {
    flex-wrap: nowrap;
    flex-direction: row-reverse;
}
.modal .modal-footer .btn {
    flex: 1;
    min-width: inherit !important;
}
.modal .btn.btn-default {
    background-color: #5d5d5d;
    color: #fff;
}

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

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

/*=================================== list-type =================================== */
.li-cir li {
    --marker-padding: 15px;
    position: relative;
    padding-left: var(--marker-padding);
    font-size: clamp(14px, 2cqw, 16px);
}

.li-cir li + li {
    margin-top: 5px;
}

.li-cir li::before {
    content: "";
    position: absolute;
    top: 0.6em;
    left: 0;
    display: block;
    background-color: #1a7dcf;
    width: 4px;
    aspect-ratio: 1;
    /* border-radius: 50%; */
}

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

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

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

.dropdown-toggle::after,
.navbar .caret {
    display: none;
}

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

.navbar-inverse .navbar-header {
    justify-content: center;
    align-items: center;
}

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

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

/* 상단 메뉴 */
.navbar-inverse {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
    padding: 0px;
    margin-bottom: 0;
    border: 0;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.07);
}
/* nav 로고 */
.navbar-inverse :is(.navbar-brand, .navbar-brand:hover, .navbar-brand:focus) {
    width: 150px;
    height: auto;
    margin: 0;
    padding: 0;
    color: #000;
}

.navbar-inverse .navbar-brand span {
    position: relative;
    display: block;
    font-size: 24px;
    font-weight: 700;
}

/* nav 대메뉴*/
.navbar-inverse .navbar-nav > li > a {
    position: relative;
    padding: 0px clamp(15px, 3cqw, 30px);
    font-weight: 700;
    color: #222;
    font-size: clamp(16px, 2.5cqw, 17px);
    letter-spacing: 0;
}

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

/* nav 서브메뉴 dropdown-menu color */
.navbar-inverse .navbar-nav :is(li.open, li) .dropdown-menu > li > a {
    color: #333;
    font-size: clamp(13px, 2cqw, 15px);
    font-weight: 500;
}

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

/* nav 서브메뉴 dropdown-menu hover */
.navbar-inverse .navbar-nav .dropdown-menu > li > a:hover {
    color: var(--page-point-color) !important;
    background: transparent;
    font-weight: 700;
}

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

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

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

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

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

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

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

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

    /* nav 대메뉴 */
    .navbar-inverse .navbar-nav > li > a {
        justify-content: center;
        align-items: center;
        letter-spacing: -0.01em;
    }

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

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

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

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

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

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

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

    .navbar-inverse.scroll .navbar-brand {
        width: 180px;
    }

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

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

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

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

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

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

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

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

    .navbar-inverse .navbar-right,
    .navbar-collapse {
        width: 100%;
    }

    .navbar-inverse .navbar-collapse {
        transition: 0.3s !important;
        position: relative;
        display: flex;
        align-items: flex-start;
        overflow: hidden;
        max-height: 0px;
    }

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

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

    /* nav 메뉴 버튼*/
    .navbar-inverse .navbar-toggle {
        order: 2;
        border: 0;
        padding: 9px 0;
        margin: 0 15px 0 0;
    }

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

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

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

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

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

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

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

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

    /* nav 로고*/
    .navbar-inverse .navbar-header :is(.navbar-brand, .navbar-brand:hover, .navbar-brand:focus) {
        order: 1;
        width: 70px;
        margin: 0 0 0 15px !important;
    }

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

    /* nav 대메뉴 */
    .navbar-inverse .navbar-nav > li > a {
        height: 50px;
    }

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

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

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

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

/* =================================== footer =================================== */
#site footer {
    margin-top: 0px;
    padding: 35px 0;
    background-color: #f0f0f0;
}

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

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

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

.footer-info li {
    font-size: clamp(13px, 2cqw, 14px);
    color: var(--page-point-color);
}

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

.footer-info li.corp {
}

.footer-info li.copyright {
    margin-top: 10px;
    color: #999;
    font-size: 12px;
    letter-spacing: 0;
}

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

.footer-login .login-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 11px;
    background: transparent;
    color: #5a5a5a;
    line-height: 1;
    border-radius: 0;
    border: 1px solid #d3d3d3;
    font-size: clamp(11px, 2cqw, 12px);
}

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

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

#scrollTop {
    padding: 0;
    aspect-ratio: 1;
    position: fixed;
    z-index: 1000;
    right: 25px;
    bottom: 25px;
    width: 40px;
    display: none;
    text-align: center;
    color: #fff;
    background: var(--page-point-color-dark);
}

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

#scrollTop .inner :is(i, span) {
    font-size: 1.75rem;
    font-variation-settings: var(--gms600_Out), var(--gradZero);
}

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

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

    #scrollTop {
        display: none !important;
    }
}

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

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

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

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

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

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

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

/* caption */
.carousel-caption {
    top: 49%;
    bottom: inherit;
    right: 20%;
    left: 20%;
    padding: 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    text-align: left;
}

#mainCarousel .carousel-inner > .item:nth-child(2) .carousel-caption {
    /* text-align: left; */
}

.carousel-caption h1 {
    position: relative;
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.5;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0;
}

.carousel-caption p {
    margin-top: 28px;
    font-size: clamp(16px, 2.5vw, 23px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.4;
}

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

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

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

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

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

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

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

.carousel-control :is([class*="glyphicon-chevron"], [class*="icon"]) {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: auto;
    height: auto;
    font-size: clamp(25px, 5vw, 50px);
}

/* indicators */
.carousel-indicators {
    width: auto;
    bottom: 40px;
    margin-left: 20%;
    margin-right: 20%;
    text-align: left;
    justify-content: flex-start;
}

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

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

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

/* =================================== mainpage common =================================== */
/* section */
.mainpage section {
    position: relative;
    padding-top: clamp(80px, 10vw, 110px);
    padding-bottom: clamp(80px, 10vw, 120px);
}

.mainpage h3 {
    font-size: clamp(32px, 5vw, 44px);
    text-align: center;
    margin-bottom: 65px;
    font-weight: 800;
}

.m-tech-wrap {
    gap: 20px;
}

.m-tech-wrap .img-box {
    background-color: #000;
}

.m-tech-wrap .img-box img {
    transition: all 0.4s;
}

.m-tech-wrap {
    text-align: center;
}

.m-tech-wrap h5 {
    transition: color 0.25s;
    font-weight: 700;
    font-size: 20px;
    margin-top: 23px;
    color: #222;
}

.m-tech-wrap h5::after {
    content: "VIEW MORE";
    display: flex;
    width: 180px;
    height: 44px;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    letter-spacing: 0;
    margin: 20px auto 0;
    font-weight: 500;
    background: #fff;
    color: var(--page-point-color);
    border: 1px solid #ddd;
    transition: all 0.3s;
}

@media (hover: hover) {
    .m-tech-wrap a:hover h5::after {
        background: var(--page-point-color);
        color: #fff;
        border-color: var(--page-point-color);
    }

    .m-tech-wrap .item:hover h5 {
        color: var(--page-point-color);
    }

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

    .m-tech-wrap a:hover .img-box img {
        transform: scale(1.1);
        opacity: 0.7;
    }
}
/* wrap */

/* =================================== subpage header =================================== */
/* default */
.subpage-header {
    position: relative;
    height: clamp(150px, 30vw, 300px);
    background: center / cover no-repeat url(/public/img/sub/sub-top01.jpg);
}

.subpage-header::after {
    content: "";
    width: 5vw;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    /* background: #fff; */
}

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

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

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

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

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

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

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

.subpage-header .subpage-title h2 {
    line-height: 1;
    margin-top: 0;
    text-align: center;
    font-weight: 800;
    color: #fff;
    font-size: clamp(36px, 4vw, 44px);
    letter-spacing: 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

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

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

.snb ul {
    margin: 0;
    gap: 0;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.07);
}

/* #rs01 .snb {
    visibility: hidden;
} */

.snb li > a {
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    font-size: clamp(15px, 4vw, 17px);
    height: clamp(50px, 10vw, 64px);
    letter-spacing: 0;
    background: #fff;
    color: #999;
    font-weight: 600;
    transition: all 0.25s;
    border: 1px solid #ddd;
}

.snb li + li > a {
    border-left: none;
}

.snb li {
    flex: 1;
}

.snb li > a:hover {
    color: #333;
}

.snb li.active a {
    position: relative;
    color: #fff;
    font-weight: 600;
    background: var(--page-point-color);
    border-color: var(--page-point-color);
}

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

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

/* =================================== subpage =================================== */
.subpage-content {
    overflow: hidden;
}

.subpage-content section {
    padding: 105px 0 120px;
    min-height: 300px;
}

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

.subpage-content .se-title {
    margin-bottom: clamp(50px, 7vw, 80px);
    text-align: center;
}

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

.subpage-content .se-title h3 {
    text-align: left;
    font-weight: 700;
    color: #222;
    font-size: clamp(28px, 5cqw, 40px);
    letter-spacing: 0;
}

.subpage-content .se-title p {
    font-weight: 300;
    color: #000;
    letter-spacing: -0.035em;
    font-size: clamp(18px, 5cqw, 22px);
}

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

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

.subpage-content .wp-title h4 {
    font-size: clamp(20px, 5cqw, 28px);
    font-weight: 700;
    display: inline-block;
    border-top: 1px solid;
}

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

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

.subpage-content * + .co-title {
    margin-top: 30px;
}

.subpage-content .co-title + * {
    margin-top: 0 !important;
}
.subpage-content .co-title {
    margin-bottom: 30px;
}
.subpage-content .co-title h5 {
    font-size: clamp(18px, 5cqw, 24px);
    font-weight: 600;
    padding-left: 28px;
}

.subpage-content .co-title h5::before {
    content: "";
    width: clamp(10px, 5cqw, 13px);
    aspect-ratio: 1;
    background: var(--page-point-color);
    position: absolute;
    left: 0;
    top: clamp(5px, 2cqw, 10px);
    box-shadow: 5px 5px 0 #00aeef;
}

.subpage-content .co-title * + h5 {
    margin-top: 30px;
}

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

.subpage-content .marker {
    position: relative;
    padding-left: 15px;
    font-size: 26px;
}

.subpage-content .marker::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    display: block;
    aspect-ratio: 1;
    width: 4px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--page-point-color);
}

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

.subpage-content .wrap {
    display: flex;
    gap: 60px;
}
.subpage-content .wrap .wp-title {
    width: 20%;
}
.subpage-content .wrap .info {
    flex: 1;
}
.subpage-content .wrap .info > .col + .col {
    margin-top: 70px;
}
.subpage-content .wrap .text p {
    font-size: clamp(15px, 3vw, 18px);
}
.subpage-content .wrap .img-box {
    justify-content: center;
}

.subpage-content .wrap :is(.info, .info > .col) > * + * {
    margin-top: clamp(15px, 2cqw, 30px);
}

.img-box.process {
    background-color: #f6f6f6;
    padding: 45px;
    border: 1px solid #e3e3e3;
}

.img-box.process img {
    mix-blend-mode: multiply;
}

.img-wrap {
    position: relative;
    display: grid;
    gap: 10px;
}

.img-wrap .col {
    position: relative;
}

#tc01 .wp03 .img-wrap {
    grid-template-columns: var(--grid-2repeat);
}

#tc01 .wp03 .img-wrap .col {
    border: 1px solid #ddd;
    padding: 25px;
}

#tc03 .img-wrap {
    grid-template-columns: var(--grid-3repeat);
}

#rs01 .img-wrap {
    grid-template-columns: var(--grid-3repeat);
}
#tc03 .wp04 .dl-area {
    grid-template-columns: var(--grid-3repeat);
}
.img-wrap.refer {
    gap: 10px;
    grid-template-columns: var(--grid-4repeat);
}

.img-wrap.arrow {
    gap: 10px;
    grid-template-columns: var(--grid-2repeat);
}

.img-wrap.arrow .col {
}

.img-wrap.arrow .col + .col::before {
    position: absolute;
    top: 48%;
    left: -45px;
    transform: translateY(-50%);
    content: "\e5c8";
    font-family: var(--gms);
    font-size: 42px;
    aspect-ratio: 1;
    width: 75px;
    background-color: #fff;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
    color: #0078bb;
    border: 5px solid #77b0df;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.img-wrap .col p {
    text-align: center;
    padding: 13px;
    font-size: clamp(15px, 4cqw, 18px);
    font-weight: 600;
    background: var(--page-point-color);
    color: #fff;
}

.img-wrap.refer .col p {
    background: #fff;
    color: #333;
    font-size: 17px;
    line-height: 1.4;
    padding: 17px 0px 30px;
    font-weight: 700;
    text-align: left;
}

.c02 .img-wrap.refer .col {
    /* border: 1px solid #ddd; */
}

.img-wrap span.lang {
    display: block;
    font-size: 0.8em;
    line-height: 1.5;
    color: #777;
    font-weight: 500;
    margin-top: 2px;
}

.li-adv {
    display: grid;
    grid-template-columns: var(--grid-1repeat);
    gap: 12px;
}

.li-adv li {
    counter-increment: itemNum;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.li-adv li::before {
    content: counter(itemNum, decimal-leading-zero) "";
    margin-right: 15px;
    font-weight: 500;
    background: var(--page-point-color);
    color: #fff;
    width: 32px;
    aspect-ratio: 1;
    text-align: center;
    line-height: 32px;
    flex-shrink: 0;
}

.dl-ref {
    display: grid;
    grid-template-columns: var(--grid-4repeat);
    gap: 25px 10px;
    /* background: #e6f4f9; */
    /* padding: 30px; */
}
.dl-ref div {
    display: flex;
    flex-direction: column;
    border: 1px solid #d7dbdf;
    border-top: 1px solid var(--page-point-color);
    /* background: #fff; */
    /* border-radius: 5px; */
    overflow: hidden;
}
.dl-ref dt {
    color: var(--page-point-color);
    font-size: clamp(16px, 4cqw, 18px);
    font-weight: 700;
    padding: 8px 15px;
    display: inline-block;
    text-align: center;
}

.dl-ref dd {
    position: relative;
    flex: 1;
    padding: 0;
    background-color: #f5f5f5;
    /* background: linear-gradient(-45deg, #e9f3fb, #f3f3f3); */
    margin-bottom: 0;
}

.dl-ref dd li {
    font-size: 14px;
    padding-left: 12px;
    font-weight: 500;
}

.dl-ref ul {
    overflow-y: auto;
    overflow-x: hidden;
    height: 120px;
    padding: 15px 18px;
}

.dl-ref ul li + li {
    margin-top: 0;
}

.dl-ref ul::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 4px;
    background: #ddd;
}

.dl-ref ul::-webkit-scrollbar-thumb {
    background: #c4d3df;
}

.dl-ref ul::-webkit-scrollbar-track {
    background-color: #f1f7fc;
}

.dl-ref ul::-webkit-scrollbar:vertical {
    width: 4px;
}

.dl-ref ul::-webkit-scrollbar:horizontal {
    height: 12px;
}

.dl-area {
    display: grid;
    grid-template-columns: var(--grid-2repeat);
    gap: 10px;
}
.dl-area div {
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
}
.dl-area dt {
    padding: 12px 20px;
    background: var(--page-point-color);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}
.dl-area dd {
    flex: 1;
    padding: 25px 50px;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.6;
    font-size: 16px;
    border-top: none;
    font-weight: 500;
}
.dl-line {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #000;
}
.dl-line div {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #e3e3e3;
    align-items: center;
}
.dl-line div dt {
    width: 10%;
    font-size: 15px;
    background: var(--page-point-color);
    padding: 4px;
    text-align: center;
    color: #fff;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.dl-line dd {
    margin-bottom: 0;
    font-size: 17px;
    letter-spacing: -0.02em;
}

.greet-wrap {
    display: flex;
    gap: 70px;
    align-items: start;
}

.greet-wrap .info {
    padding-top: 40px;
}

.greet-wrap .img-box {
    display: inline-flex;
    gap: 5px;
    align-items: end;
    padding-top: 5px;
}
.greet-wrap h4 {
    margin-bottom: 50px;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.4;
    color: var(--page-point-color);
}
.greet-wrap p {
    font-size: 18px;
    line-height: 1.58;
    /* width: 93%; */
}

.greet-wrap p.name {
    font-weight: 600;
    border-top: 1px solid #e3e3e3;
    padding-top: 12px;
    /* text-align: right; */
    letter-spacing: 1px;
    font-size: 15px;
    color: #666;
    margin-top: 65px;
}
.greet-wrap p + p {
    margin-top: 40px;
}
/* map */
:is(.root_daum_roughmap, .root_daum_roughmap .wrap_map, iframe[src^="https://www.google.com/"])
{
    aspect-ratio: 5/3.2;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
}
.map-wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
}
.map-wrap .wp-title h4 {
    border-top: 0;
    color: var(--page-point-color);
}
.map-wrap .wp-title h4 small {
    color: inherit !important;
}
.map-wrap small.en {
    display: block;
}
.map-wrap .info {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    grid-column: 1 / span 2;
}

.map-wrap .map {
    /* grid-column: 1 / span 2; */
    grid-row: 2 / span 2;
}

.map-wrap .info dl {
    width: 70%;
    border-top: 1px solid #333;
}
.map-wrap .info .company {
    font-size: 32px;
    line-height: 1;
    width: 30%;
    text-align: center;
}

.map-wrap .info .company h4 {
    font-size: 22px;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.map-wrap .info h4 .en {
    color: #b5b5b5;
}

.map-wrap .info .dl-map div {
    display: flex;
    gap: 20px;
    position: relative;
    padding: 12px 0;
    padding-left: 22px;
    align-items: center;
    border-bottom: 1px solid #e3e3e3;
}

.map-wrap .info dl div::before {
    /* content: "\e0c8";
    font-family: var(--gms);
    font-variation-settings: var(--gms800_Out);
    position: absolute;
    left: 8px;
    top: 50%;
    color: #0d71c5;
    font-size: 22px;
    line-height: 1.2;
    transform: translateY(-50%); */
}
.map-wrap .info .tel::before {
    /* content: "\e0b0"; */
}
.map-wrap .info .email::before {
    /* content: "\e158"; */
}
.map-wrap .info .domain::before {
    /* content: "\e88a"; */
}
.map-wrap .info div dt {
    width: 15%;
    font-size: 15px;
}
.map-wrap .info div dd {
    flex: 1;
    margin: 0;
}
.table-style :is(tbody, thead) tr :is(th, td) {
    border-color: #ddd;
    text-align: center;
    padding: 12px;
    vertical-align: middle;
}

.table-style > thead > tr > th {
    border-bottom: 0;
}

/* =================================== widget =================================== */
/* 위젯 */
[class^="board_box"] {
    margin-bottom: 0 !important;
}

.page-header {
    margin-top: 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #000;
}

.page-header h4 {
    display: inline-block;
    font-size: clamp(18px, 5cqw, 22px);
}

.page-header a.pull-right i::before {
    position: relative;
    display: block;
    content: "\e145";
    transform: translateY(2px);
    font-family: var(--gms);
    font-variation-settings: var(--gms300_Out);
    font-size: clamp(18px, 5cqw, 22px);
    font-weight: 500;
    color: #000;
}

.type_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.type_list :is(li) {
    padding: 0;
}

.type_list :is(a):hover {
    text-decoration: underline;
}

.type_list :is(li, a) {
    line-height: 1;
    font-size: clamp(14px, 5cqw, 16px);
    color: #000;
}

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

.type_thumb {
    display: grid;
    grid-template-columns: repeat(2, var(--grid-1fr));
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    gap: 10px;
}

.type_thumb > div {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.type_thumb .inner {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
}

.type_thumb .inner .bottom {
    padding: 0;
}

.type_thumb .inner .bottom .info {
    display: none;
}

.type_thumb .inner .bottom .title {
    padding: 0;
    margin-top: 5px;
}

.type_thumb .bottom .title a {
    font-size: clamp(15px, 5cqw, 17px);
}

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

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

.search_wrap .write_btn_wrap {
    margin-top: 0;
}

#bbsArea .board_wrapper .table.board_write_table > :where(tbody, tfoot, thead) > tr > :where(th, td) {
    border-bottom: 0;
}

#bbsArea {
    gap: 0;
}

#bbsArea :is(.board_wrapper, .pagination_wrap, .search_wrap) {
    display: block;
    margin-top: 0;
}

#bbsArea .board_wrapper [class*="wrap"] {
    margin: 0;
}

#bbsArea .board_wrapper .option_wrap {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

#bbsArea .board_wrapper .option_wrap .list_btn_wrap {
    position: static;
}

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

.category_wrap li {
    margin: 0 !important;
}

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

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

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

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

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

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

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

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

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

:is(.table_video, .table_blog2, .table_pd) > dd {
    width: 100%;
    padding: 0;
}

:where(.table_video, .table_blog2, .table_pd) .inner {
    border: 0;
}

:where(.table_video, .table_blog2, .table_pd) .inner .top a .thumb {
    aspect-ratio: 5/3;
    width: 100%;
    height: auto;
    background-size: cover;
}

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

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

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

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

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

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

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

/* 댓글 */
#bbsArea .reply_wrap h4 {
    text-align: left;
    font-size: clamp(15px, 5cqw, 17px);
}

/* 검색 */
#bbsArea .board_wrapper + :is(.search_wrap, .pagination_wrap) {
    margin-top: 70px;
}

#bbsArea .pagination_wrap + .search_wrap {
    margin-top: 30px;
}

#bbsArea .search_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 0 !important;
}

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

:is(.member_wrapper, .board_wrapper) .text-center {
    display: flex;
    justify-content: center;
    gap: 10px;
}

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

:is(.member_wrapper, .board_wrapper) .text-center .btn + .btn {
    margin: 0;
}

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

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

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

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

.btn-lg {
    height: 45px !important;
}

.form-control[type="file"] {
    line-height: 2.9;
    padding: 0 0.8rem !important;
}

.wr_form_item input.form-control {
    background-color: transparent;
    padding-left: 0;
}

.btn:not(#search_btn, #File_add, #write_btn, #id_check, #email_check, #delete_btn, #list-back-btn, #reply_btn, [id^="reply_modify_"], [id^="reply_modify_"] + .btn, [id^="reply_delete_"]),
.text-center #write_btn {
    min-width: 150px;
}

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

.form-control[type="file"] {
    margin: 0;
}

.board_wrapper .table.board_write_table :where(.input-group, .form-control):not(#wr_name, #wr_email, #at_name, #wr_captcha, #wr_cate, #wr_thumb) {
    width: 100%;
}

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

.member_wrapper h1 {
    margin-top: 0;
}

.member_wrapper .btn {
    font-size: clamp(13px, 5cqw, 14px);
}
.member_wrapper .table tbody tr :is(th, td) {
    font-size: clamp(13px, 5cqw, 14px);
}
.member_wrapper .table tbody tr th {
    background-color: rgba(0, 0, 0, 0.03);
}

.member_wrapper .table tbody tr th span {
    color: var(--page-point-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.board_wrapper .table.board_write_table .files .fileInput .file_add {
    padding: 6px 7px 5px;
}

.board_wrapper .table.board_write_table .files + .sumChk {
    padding-bottom: 0;
    margin-bottom: 0;
    border: 0;
}

.board_wrapper .table.board_write_table tbody tr th {
    background-color: transparent;
    font-weight: 700;
    font-size: 1.1rem;
}
.board_wrapper .table.board_write_table tbody tr td {
    padding-top: 15px;
    padding-bottom: 15px;
}
.board_data_view {
    border-top: 1px solid #333;
}

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

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

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

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

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

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

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

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

#mainPopup {
    position: relative;
    top: calc(var(--navHeight) - 140px);
}

.main_popup {
    border: 0;
    border-radius: 0;
    background-color: transparent !important;
}

.main_popup_optional {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    padding: 7px 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    backdrop-filter: blur(10px);
}

.main_popup_optional :is(label, div) {
    opacity: 0.8;
}

.main_popup_optional :is(label, div):is(:hover, :focus) {
    opacity: 1;
}

.main_popup_optional :is(label, div, span) {
    float: inherit !important;
    line-height: 1;
}

.main_popup_optional label {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 400;
}

.main_popup_optional label span.material-symbols-outlined {
    font-size: 1.25rem;
    margin-right: 2px;
}

.main_popup button.close {
    opacity: 1;
    margin: 0;
    height: auto;
    color: inherit;
    font-size: 1.75rem;
}

.main_popup span.material-symbols-outlined {
    font-variation-settings: var(--gms100_Out);
    font-size: inherit;
}

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

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

/* login */
:is(#find_btn, #login_btn) {
    margin-top: 25px;
    height: 50px !important;
}

:is(#find_idpw, .join_wrapper, .login_wrapper) {
    z-index: 10;
    width: 100%;
    padding: 100px 0 120px;
    background: #f7f7f7;
}

:is(#find_idpw, .login_wrapper) {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - var(--navHeight));
}

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

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

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

:is(#find_idpw, .login_wrapper) .member_wrapper {
    width: 400px;
    margin: 0 auto;
}

.member_wrapper .form-group {
    position: relative;
    margin: 0 !important;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
}

.member_wrapper .form-group:focus-within {
    z-index: 100;
    border-color: var(--page-point-color);
}

.member_wrapper .form-group:focus-within span.material-symbols-outlined {
    opacity: 1;
    color: var(--page-point-color);
}

.member_wrapper .form-group:nth-of-type(1) {
    margin-bottom: -1px !important;
}

.member_wrapper .form-group label span.material-symbols-outlined {
    opacity: 0.5;
    transform: translateY(1px);
    font-variation-settings: var(--gms400_Out);
    font-size: 1.25rem;
    color: #000;
}

.member_wrapper .form-group > label:nth-child(1) {
    width: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.member_wrapper .form-group > div:nth-child(2) {
    flex: 1;
}

.member_wrapper .form-group > * {
    width: auto;
    padding: 0 !important;
}

.member_wrapper :is(#login_form, fieldset) {
    display: flex;
    flex-direction: column;
}

.member_wrapper :is(#login_form, #login_form input) {
    font-size: clamp(13px, 5cqw, 14px);
}

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

.member_wrapper h1 + p {
    line-height: 1.4;
    font-size: clamp(13px, 5cqw, 14px);
}

.member_wrapper h1 {
    font-size: clamp(28px, 5cqw, 34px);
    border: 0;
    margin-bottom: 20px;
    padding-bottom: 0px;
}

.member_wrapper .login_extra ul {
    display: flex;
    justify-content: center;
    gap: 0 15px;
}

.member_wrapper .login_extra ul li > a {
    font-size: clamp(13px, 5cqw, 14px);
}

.member_wrapper .login_extra ul li + li {
    margin-left: 0;
}

.member_wrapper .login_extra ul li + li::before {
    content: none;
}

.member_wrapper .login_extra {
    margin-top: 30px;
}

/* =================================== mobile =================================== */
/* mainpage */
@media (max-width: 767px) {
    #mainCarousel .carousel-inner .item {
        aspect-ratio: 4/5;
        height: auto;
    }

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

    .carousel-control {
        display: none;
    }

    .mainpage section {
        padding: 70px 0 80px;
    }
    .m-tech-wrap {
        flex-direction: column;
        gap: 50px;
    }
}

/* subpage */
@media (max-width: 767px) {
    .snb {
        margin-top: 0;
        padding: 15px 0;
        height: auto;
        background-color: #eee;
    }
    #rs01 #snb {
        display: none;
    }
    .snb ul {
        flex-direction: column;
        gap: 3px;
    }
    .subpage-content {
        overflow: hidden;
    }
    .subpage-content :where(.row, .grid, [class*="wrap"]) + :where(.row, .grid, [class*="wrap"]) {
        margin-top: 70px;
    }
    .subpage-content section {
        padding: 70px 0 100px;
    }
    .subpage-content .wrap {
        flex-direction: column;
        gap: 30px;
    }
    .subpage-content .wrap .wp-title {
        width: 100%;
    }
    .img-box.process {
        padding: 20px;
    }
    #tc01 .wp03 .img-wrap {
        grid-template-columns: var(--grid-1fr);
    }
    .img-wrap.refer {
        grid-template-columns: var(--grid-2repeat);
    }
    #tc03 .wp04 .dl-area,
    .dl-area,
    .dl-ref {
        grid-template-columns: var(--grid-1fr);
    }
    #tc01 .dl-ref {
        grid-template-columns: var(--grid-2repeat);
    }
    .dl-line div dt {
        display: inline-block;
        width: auto;
        padding: 3px 10px;
    }
    .dl-area dd {
        padding: 20px;
    }
    .dl-line div {
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    .greet-wrap {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .greet-wrap .img-box {
        aspect-ratio: 5/4;
    }
    .map-wrap {
        grid-template-columns: var(--grid-1fr);
    }
    .map-wrap .info {
        grid-column: span 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .map-wrap .info .company {
        width: 100%;
    }
    .map-wrap .info dl {
        width: 100%;
    }
    .map-wrap .info .dl-map div {
        padding-left: 50px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .map-wrap .info div::before {
        left: 5px;
    }
}

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

    .privacy_body {
        padding: 0 30px;
    }

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

    .table_default .subject {
        width: 100%;
    }

    .member_wrapper #join_form .table :is(.input-group.input-group-big, .form-control.form-control-big),
    .board_wrapper .table.board_write_table :is(.input-group.input-group-big, .form-control.form-control-big, tbody tr td .btn, tbody tr td .form-control, .input-group.input-group-big, .form-control.form-control-big) {
        width: 100%;
    }

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

    .search_wrap {
        margin-bottom: 0 !important;
    }

    .board_data_view .download_wrap tr {
        display: flex;
        flex-direction: column;
    }

    .board_data_view .download_wrap tr > * {
        width: 100%;
    }

    .board_data_view .download_wrap tr th {
        padding-bottom: 10px;
    }

    .board_data_view .download_wrap tr li a {
        word-break: break-all;
    }

    .board_data_view .download_wrap tr li + li {
        margin-top: 10px;
    }

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

    :is(.member_wrapper, .board_wrapper) .text-center .btn.btn-lg {
        padding: 0;
        height: 50px;
        font-size: 14px;
    }

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

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

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

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

    .main_popup_contents {
        padding: 10px;
    }

    :is(#find_idpw, .join_wrapper, .login_wrapper) {
        margin-top: 0;
        position: relative;
        padding: 100px 0;
        min-height: calc(100svh - var(--navHeight));
    }

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

    :is(#find_idpw, .join_wrapper, .login_wrapper) .container {
        width: 100%;
        padding: 0 15px;
    }

    .member_wrapper {
        width: 100% !important;
        margin: 0 !important;
    }

    .member_wrapper .form-group div:last-child {
        width: 100%;
    }

    .member_wrapper {
        padding-top: 50px;
    }

    .member_wrapper .login_extra ul {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .member_wrapper .login_extra ul li + li::before {
        content: none;
    }

    .member_wrapper .table,
    .member_wrapper .table :where(tbody, tbody tr) {
        display: block !important;
        width: 100% !important;
    }

    .member_wrapper .table tbody tr :where(th, td) {
        display: block !important;
        width: 100% !important;
        font-size: clamp(15px, 2cqw, 17px);
    }

    .member_wrapper .table tbody tr th {
        padding: 10px 30px !important;
    }

    .member_wrapper .table .files_upload_wrap {
        display: flex;
        flex-direction: column;
    }

    .member_wrapper .table .files {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .member_wrapper .table .files .fileInput input {
        width: auto;
    }

    .member_wrapper .table .files .fileInput .file_add {
        position: relative;
        right: auto;
    }

    .member_wrapper .table .files_upload_wrap .btn {
        width: 100%;
        aspect-ratio: inherit;
        margin-top: 15px;
    }
    .member_wrapper #join_form th {
        padding: 10px 20px !important;
    }
    .member_wrapper #join_form td {
        display: flex !important;
        padding-left: 0;
        padding-right: 0;
        gap: 5px;
    }
    .member_wrapper #join_form td input:not(#mb_mailing) {
        width: 100% !important;
    }
    .member_wrapper #join_form tr:last-child td {
        display: block !important;
    }
}

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

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

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

.board_data_view .contents_wrap :is(li, dl) {
    margin: inherit;
    padding: inherit;
    list-style-position: inside !important;
}

.board_data_view .contents_wrap ul li {
    list-style-type: disc !important;
}

.board_data_view .contents_wrap ol li {
    list-style-type: decimal !important;
}
