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

* {
    word-break: keep-all;
}

#site {
    font-family: "Inter", "notokr", sans-serif;
    color: #212121;
    letter-spacing: -0.02em;
}

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

/* variables */
:root {
    --gms: "Material Symbols Outlined";
    /* grade */
    --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);
    /* nav */
    --navHeight: 95px;
    /* color */
    --page-point-color: #217fc4;
    --page-danger-color: #f34825;
    --page-dark-color: #444;
    --page-grey-color: #e0e0e0;
    /* 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));
}

/* =================================== material symbol =================================== */
.material-symbols-outlined {
    font-variation-settings: var(--gms500_Out), var(--gradZero);
    user-select: none;
}

/*=================================== reset =================================== */

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

.img-box {
    position: relative;
}

: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.45;
    font-weight: normal;
}

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

button {
    border-radius: 0;
    background: transparent;
    border: 0;
}

br {
    visibility: visible;
    opacity: 0;
}

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

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

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

.row > * {
    float: inherit;
}

/*=================================== common =================================== */
[class$="-dash"] {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
    margin: 0;
    padding: 0;
}

[class$="-dash"] > *:not(dt) {
    position: relative;
    padding-left: 15px;
}

[class$="-dash"] > *:not(dt)::before {
    content: "-";
    left: 0;
}

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

/* #gnb_57 .dropdown-menu{
    display: none;
} */

.navbar .caret {
    display: none;
}

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

.navbar-inverse .navbar-header {
    justify-content: flex-start;
    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 0px;
    box-shadow: 0 4px 20px rgb(0 0 0 / 8%);
    margin-bottom: 0;
    border: 0;
}

/* nav 로고 */
.navbar-brand {
    display: flex;
    gap: 0 10px;
    align-items: center;
    height: auto;
    margin: 0 !important;
    padding: 0;
}

.navbar-brand img {
    height: 75px;
}

.navbar-brand h1 {
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 0;
}

.navbar-brand h1 br {
    display: none;
}

:is(.navbar-brand, .navbar-brand:hover) h1 {
    color: #2b3c72;
}

/* nav 메뉴 속성 */
.navbar-inverse .navbar-nav > li > a {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    color: #212121;
    letter-spacing: 0;
    text-transform: uppercase;
}

/* nav 메뉴 클릭 및 후버 시 */
.navbar-inverse .navbar-nav > li > a:is(:hover, :focus),
.navbar-inverse .navbar-nav > li:is(:hover, :focus) .dropdown-toggle {
    background: none;
    color: #217fc4;
}

/* dropdown-menu background */
.navbar-inverse .navbar-nav .dropdown-menu {
    background: #072f64;
}

#gnb_73 .dropdown-menu {
    display: none !important;
}
/* dropdown-menu color */
.navbar-inverse .navbar-nav :is(li.open, li) .dropdown-menu > li > a {
    color: #666;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.5;
}

.navbar-inverse .navbar-nav :is(li.open, li) .dropdown-menu > li > a::after {
    content: "\e5e1";
    font-family: var(--gms);
    color: #308bcf;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* dropdown-menu hover */
.navbar-inverse .navbar-nav .dropdown-menu > li > a:hover {
    background: transparent;
    color: #308bcf !important;
    text-decoration: underline;
    text-underline-position: under;
}

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

    .navbar > .container {
        height: 70px;
        display: grid;
        grid-template-columns: 1fr max-content 1fr;
        width: 100%;
        padding: 0 50px;
        /* align-items: center; */
        justify-content: center;
    }

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

    /* pc nav 대메뉴 */
    .navbar-inverse .navbar-nav > li > a {
        justify-content: center;
        align-items: center;
        padding: 0px 40px;
    }

    /* pc nav 드롭다운 박스 */
    .navbar-inverse .navbar-nav .dropdown-menu {
        left: 50%;
        right: auto;
        transform: translate(-50%, 0);
        border-radius: 0;
        border: none;
        padding: 12px 0;
        text-align: center;
        background: #fff;
        box-shadow: 2px 2px 14px rgb(0 0 0 / 12%);
    }

    /* pc nav 드롭다운 메뉴*/
    .navbar-inverse .navbar-nav .dropdown-menu > li > a {
        padding: 8px 25px;
        font-size: 16px;
        text-align: left;
        line-height: 1.4;
        letter-spacing: 0;
        font-weight: 500;
        /* transition: all 0.25s; */
        color: #222 !important;
    }

    .navbar-inverse .navbar-nav .dropdown-menu > li + li > a {
        height: 100%;
        display: flex;
        align-items: center;
    }

    .navbar-inverse .navbar-nav > li {
        position: static !important;
        transform: none;
    }

    .navbar-inverse .navbar-nav .dropdown-menu > li > a:hover {
        color: #308bcf;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu {
        overflow: hidden;
        /* transform: none; */
        width: 1140px;
        left: 50%;
        right: inherit;
        display: grid;
        grid-template-columns: 300px repeat(2, 1fr);
        padding: 40px 40px 50px;
    }

    .navbar-inverse .navbar-nav .open#gnb_56 .dropdown-menu {
        grid-auto-flow: row dense;
    }

    .navbar-inverse .navbar-nav .open#gnb_56 .dropdown-menu > li {
        grid-column-start: 2;
    }

    .navbar-inverse .navbar-nav .open#gnb_56 .dropdown-menu > li:is(:nth-last-child(1), :nth-last-child(2), :nth-last-child(3)) {
        grid-column-start: 3;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        font-size: 16px;
        white-space: break-spaces;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-left: 30px;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu::before {
        grid-row: span 4;
        text-align: left;
        font-size: 36px;
        font-weight: 700;
        background: #072f64;
        color: #fff;
        padding-top: 40px;
        padding-left: 50px;
        margin: -40px 0px -50px -40px;
        line-height: 1.3;
        letter-spacing: 0;
    }

    .navbar-inverse .navbar-nav #gnb_55.open .dropdown-menu::before {
        content: "CORPORATE";
    }

    .navbar-inverse .navbar-nav #gnb_56.open .dropdown-menu::before {
        content: "BUSINESS SCOPE";
    }

    .navbar-inverse .navbar-nav #gnb_57.open .dropdown-menu::before {
        content: "CONTACT";
    }
}

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

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

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

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

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

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

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

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

    .navbar-inverse .navbar-brand {
        order: 1;
        width: 100px;
        margin: 0 0 0 10px !important;
    }
    .navbar-inverse .navbar-brand img {
        height: 40px;
    }
    .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-nav > li > a,
    .navbar-nav .open .dropdown-menu :is(.dropdown-header, li > a) {
        display: flex;
        justify-content: start;
        align-items: center;
    }

    .navbar-inverse .navbar-nav > li > a {
        height: 50px;
        padding: 0 15px;
    }

    .navbar-nav .open .dropdown-menu :is(.dropdown-header, li > a) {
        height: 45px;
        padding: 0 20px;
    }

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

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

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

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

.footer-wrap {
    display: grid;
    /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    grid-template-rows: min-content;
    align-items: flex-start;
    gap: 0px 0px;
}

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

/* default */
.footer-info {
    grid-row: span 2;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.footer-info li:not(.corp, .copyright, .clearfix) {
    display: inline;
    margin-right: 10px;
}

.footer-info li:where(.corp, .copyright) {
    display: block;
}

.footer-info li.corp {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-info li.copyright {
    margin-top: 10px;
    font-size: 11px;
    color: rgb(255 255 255 / 40%);
    letter-spacing: 1px;
}

.footer-login {
    grid-row: 2;
    grid-column: 2;
    margin-left: auto;
    margin-top: auto;
}

.footer-login .login-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 30px;
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    line-height: 1;
    border-radius: 50px;
}

.footer-login .login-btn:hover {
    border-color: rgb(255 255 255 / 50%);
    color: #fff;
    font-weight: 500;
}

#scrolltop {
    padding: 0;
    aspect-ratio: 1;
    position: fixed;
    z-index: 1000;
    right: 20px;
    bottom: 20px;
    width: 40px;
    display: none;
    text-align: center;
    color: #fff;
    background: #162840;
    background: rgba(111, 111, 111, 0.4);
    right: 10px;
    bottom: 10px;
}

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

#scrolltop .inner :is(i, span) {
    font-size: 20px;
}

.footer-family {
    margin-left: auto;
}

#familymenu {
    width: 190px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    background: transparent;
    border: 1px solid #aaa;
    color: #ddd;
    font-size: 13px;
    line-height: 1;
}

#familymenu span {
    margin-left: 5px;
}

#familymenu + .dropdown-menu {
    min-width: 150px;
    margin-top: -1px;
    margin-bottom: 0 !important;
    padding: 5px 0;
    background: #f7f7f7;
    border: 1px solid #aaa;
    border-radius: 0;
    text-align: left;
}

#familymenu + .dropdown-menu > li {
    display: block;
    margin: 0;
}

#familymenu + .dropdown-menu > li > a {
    display: block;
    background: transparent !important;
    padding: 0 13px;
    color: #222 !important;
    font-size: 13px;
    line-height: 1.8;
}

#familymenu + .dropdown-menu > li > a:hover {
    background-color: #217fc4 !important;
    color: #fff !important;
}

/* mobile footer*/
@media (max-width: 767px) {
    .footer-info {
        display: flex;
        flex-direction: column;
    }
    .footer-wrap {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .footer-family {
        margin-left: 0;
        display: none;
    }
    .footer-login {
        margin-left: 0;
    }
    #scrolltop {
        width: 40px;
        height: 40px;
        right: 0px;
        bottom: 50px;
    }

    #scrolltop .inner :is(i, span) {
        font-size: 18px;
    }
}

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

.maintenance .icon {
    display: block;
    line-height: 1;
    font-size: 64px;
    margin-bottom: 10px;
}

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

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

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

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

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

#mainCarousel .carousel-inner .item::after {
    /* background: linear-gradient(to top, #124e91, transparent); */
    /* height: 70%; */
    /* bottom: 0; */
    /* top: auto; */
    /* opacity: 0.85; */
}

/* caption */
#mainCarousel .carousel-caption {
    top: 42%;
    padding: 0;
    text-shadow: 0 0 40px rgb(0 0 0 / 50%);
    text-shadow: 4px 4px 8px rgb(0 0 0 / 50%);
}

#mainCarousel .carousel-caption h1 {
    position: relative;
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 700;
    letter-spacing: 0;
    margin: 0;
}

#mainCarousel .carousel-caption p {
    margin-top: 5px;
    font-size: clamp(16px, 3vw, 26px);
    line-height: 1.65;
    font-weight: 400;
    letter-spacing: 0;
    font-weight: 600;
}

#mainCarousel .carousel-caption p::after {
    content: "";
    width: 100px;
    height: 2px;
    background: #fff;
    display: block;
    margin: 40px auto 0;

    display: none;
}

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

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

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

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

#mainCarousel .glyphicon.glyphicon-chevron-right::before,
#mainCarousel .glyphicon.glyphicon-chevron-left::before {
    color: #fff;
    font-family: var(--gms);
    font-weight: 100;
}

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

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

#mainCarousel .carousel-control :is(.glyphicon-chevron-left, .glyphicon-chevron-right, .icon-next, .icon-prev) {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: auto;
    height: auto;
    font-size: 54px;
}

/* indicators */
#mainCarousel .carousel-indicators {
    bottom: 290px;
    display: none;
}

#mainCarousel .carousel-indicators :is(li, li.active) {
    aspect-ratio: 1/1;
    width: 12px;
    height: auto;
    border: 2px solid #fff;
    border-radius: 50%;
    margin: 0 2px;
    backdrop-filter: blur(10px);
}

#mainCarousel .carousel-indicators li {
    background-color: transparent;
    transition: ease-in-out 0.15s all;
}

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

/* =================================== mainpage common =================================== */
/* section */
.mainpage {
    overflow: hidden;
}
.mainpage section.main-section {
    position: absolute;
    width: 100%;
    bottom: 0px;
    z-index: 100;
}

.mainpage section.main-section .container {
    width: 100%;
    padding: 0;
}
.service-wrap {
    display: flex;
    /* grid-template-columns: repeat(6, minmax(0, 1fr)); */
    align-items: flex-end;
    gap: 0px;
}

@media (min-width: 768px) {
    .service-wrap span.material-symbols-outlined {
        transition: 0.3s;
        font-variation-settings: var(--gms400_Out);
        font-size: 50px;
        /* margin-right: 15px; */
        margin-bottom: 25px;
        /* color: #b8efff; */
        color: #fff;
    }

    .service-wrap .item {
        flex: 1;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        height: 220px;
        padding: 52px 20px 30px;
        color: #fff;
        /* background: rgb(18 125 201 / 90%); */
        background-color: rgb(0 0 0 / 65%);
        transition: all 0.35s;
        /* box-shadow: 4px 10px 20px rgb(0 0 0 / 10%); */
    }

    .service-wrap > .item:nth-last-child(-n + 4) {
        border-bottom: none;
    }

    .service-wrap > .item:nth-child(4n) {
        border-right: none;
    }

    .service-wrap .item:hover {
        padding-top: 45px;
        padding-bottom: 30px;
        background: #217fc4;
        /* border-color: #072f64; */
        height: 270px;
        box-shadow: 4px 10px 20px rgb(0 0 0 / 10%);
    }

    .service-wrap .item:hover span.material-symbols-outlined {
        text-align: center;
        font-variation-settings: var(--gms400_Out);
        font-size: 65px;
        margin-bottom: 20px;
    }
    .service-wrap .item::after {
        transition: 0.3s;
        content: "\e147";
        font-family: var(--gms);
        font-weight: 100;
        opacity: 0;
        margin-top: auto;
        font-size: 36px;
    }
    .service-wrap .item:hover::after {
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .main-section {
        position: relative !important;
        background-color: #888;
        padding: 50px 0;
        /* background: url(/public/img/main/m-bs-m01.jpg) no-repeat center / cover; */
    }
    .main-section > img {
        position: absolute;
        filter: brightness(0.3);
        z-index: -1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .main-section p {
        color: #fff;
        opacity: 0.9;
    }
    .main-section .se-title {
        padding: 0 15px;
        margin-bottom: 40px;
    }
    .service-wrap {
        padding: 0 15px;
        gap: 15px 5px;
        display: grid;
        grid-template-columns: var(--grid-3repeat);
        align-items: flex-start;
    }
    .service-wrap .item {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        color: #fff;
    }
    .service-wrap span.material-symbols-outlined {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.25);
        aspect-ratio: 1;
        border-radius: 50%;
        width: 60px;
        margin-bottom: 10px;
    }
    .service-wrap p {
        color: #fff;
        padding: 0;
        font-size: 11px;
    }
}

.service-wrap .item p {
    font-size: clamp(13px, 3vw 17px);
    font-weight: 500;
    line-height: 1.37;
    letter-spacing: 0;
    text-transform: capitalize;
    text-align: center;
}

.service-wrap .item:nth-last-child(1) p,
.service-wrap .item:nth-last-child(2) p {
    font-size: clamp(13px, 3vw 16px);
    line-height: 1.4;
}

.service-wrap .item:nth-child(3) p {
    /* font-size: 15px; */
}

.main-busi .container-fluid {
    padding: 120px 0 0;
}

@media (max-width: 767px) {
    .main-busi .container-fluid {
        padding-top: 0;
    }
}

#business_view {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

#business_view :is(.left, .right) .img-box {
    aspect-ratio: 1;
    background-color: #eee;
}

#business_view .left .item {
    position: relative;
    display: flex;
    aspect-ratio: 16/15;
    /* aspect-ratio: 1; */
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-end;
    /* align-content: flex-end; */
    align-items: flex-end;
    text-align: right;
    padding: clamp(30px, 3vw, 70px);
}

#business_view .left .item::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0+100,0.65+100 */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.6) 85%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.6) 85%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.6) 85%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    /* IE6-9 */
    z-index: -1;
}

#business_view .left p {
    font-size: clamp(24px, 3vw, 42px);
    color: #fff;
    font-weight: 700;
    line-height: 1.33;
}

#business_view .left a {
    transition: 0.25s;
    margin-top: 30px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    border: 2px solid #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 7px 20px 7px 25px;
    gap: 15px;
}

#business_view .left a:hover {
    background-color: #fff;
    color: #072f64;
}

#business_view .left a::after {
    content: "\e941";
    font-family: var(--gms);
    font-weight: 300;
    font-size: 24px;
}

#business_view .left .img-box {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -2;
}

#business_view .left .img-box img {
    width: 100%;
    object-fit: cover;
}

#business_view .right {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    padding-left: 100px;
    padding-right: 60px;
}

#business_view .right .se-title h4 {
    margin-top: clamp(40px, 5vw, 125px);
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 800;
    color: #072f64;
    text-transform: uppercase;
}

#business_view .right .se-title p {
    font-size: clamp(16px, 3vw, 20px);
    margin-top: 20px;
    margin-bottom: 85px;
    line-height: 1.6;
    color: #111;
    padding-right: 6em;
}

#business_view .right #busi_sub {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    margin-right: -90px;
}

#business_view .right .slick-track {
    margin: 0 -15px 0 -330px;
    padding-bottom: 70px;
}

#business_view .right .item {
    cursor: pointer;
    width: 300px !important;
    margin: 0 15px;
    aspect-ratio: 1;
}

#business_view .right .item a {
    display: none;
}

#business_view .right .item p {
    font-size: 15px;
    font-weight: 600;
    background: #fff;
    width: 80%;
    margin-top: -60px;
    padding: 20px 10px 20px 5px;
    line-height: 1.4;
}

#business_view .right .slick-dots {
    position: static;
    width: auto;
}

#business_view .slick-indicators {
    display: flex;
    flex-direction: row-reverse;
    /* justify-content: space-between; */
    align-items: flex-end;
    align-items: center;
    /* margin-bottom: 120px; */
}

#business_view .right .slick-btn {
    display: flex;
    gap: 10px;
    margin-left: 35px;
}

#business_view .right :where(.next-btn, .prev-btn) {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    padding: 0;
}

#business_view .right :where(.next-btn, .prev-btn)::before {
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--gms);
    font-weight: 400;
    font-size: 28px;
    color: #072f64;
    aspect-ratio: 1/1;
    width: 32px;
    border-radius: 50%;
    /* border: 1px solid #ddd; */
}

#business_view .right :where(.next-btn, .prev-btn):hover::before {
    /*     background-color: #072f64; */
    /*     color: #fff; */
}

#business_view .right .next-btn::before {
    content: "\e5e1";
}

#business_view .right .prev-btn::before {
    content: "\e5e0";
}

#business_view .right .slick-dots {
    position: static;
    display: inline-flex !important;
    justify-content: center;
    gap: 0 8px;
    width: auto;
}

#business_view .right .slick-dots li {
    opacity: 0.2;
    width: auto;
    height: auto;
    margin: 0;
}

#business_view .right .slick-dots li.slick-active {
    opacity: 1;
}

#business_view .right .slick-dots li button {
    width: 9px;
    height: auto;
    aspect-ratio: 1;
    margin: 0;
    padding: 0;
    /* border-radius: 50%; */
    background-color: #000;
}

#business_view .right .slick-dots li.slick-active button {
    background-color: #072f64;
}

#business_view .right .slick-dots li button:before {
    content: none;
}

@media (max-width: 767px) {
    .main-busi {
        padding: 50px 0;
    }
    #business_view {
        overflow: hidden;
        display: flex !important;
        flex-direction: column-reverse;
    }
    /* #busi_main{} */
    #business_view .slick-list {
        margin-left: 10px;
        margin-right: 30px;
        overflow: visible;
    }
    #business_view .right {
        padding: 0 17px;
        margin-bottom: 30px;
    }
    #business_view .right h4 {
        margin-top: 0 !important;
        text-transform: capitalize !important;
    }
    #business_view .right .se-title p {
        padding-right: 0;
    }
    #business_view .right .slick-track {
        display: none;
    }
    #business_view .slick-indicators {
        display: none;
    }
    #business_view .left .item {
        margin: 0 10px;
    }
}
/* wrap */

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

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

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

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

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

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

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

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

.subpage-header .subpage-title h2 {
    font-size: clamp(36px, 3vw, 62px);
    line-height: 1;
    margin-top: clamp(40px, 3vw, 85px);
    text-align: center;
    font-weight: 700;
    letter-spacing: 0;
    color: #fff;
    text-transform: uppercase;
}

.breadcrumb {
    display: none;
    background: none;
    padding: 0;
    margin: 15px 0 0 0;
    gap: 20px;
    font-size: 13px;
}

.breadcrumb > li {
    position: relative;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0;
}

.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: 18px;
    line-height: 1;
}

/* =================================== snb =================================== */

#ns01 .dropdown.snb {
    display: none;
}

.snb-dropdown .gnb .dropdown-menu .dropdown-menu {
    display: none;
}

.snb {
    position: relative;
    z-index: 10;
    background: #217fc4;
}

.subpage-header + .snb:not(.dropdown) {
}

/* .subpage-header + .snb::after {
    content: '';
    width: 500px;
    height: 500px;
    background: #11396a;
    position: absolute;
    right: -340px;
    bottom: -350px;
    transform: rotate(45deg);
}
 */
.snb-dropdown {
    display: grid;
    grid-template-columns: repeat(3, max-content);
}

.snb-dropdown > li > a {
    align-items: center;
    height: 60px;
    text-transform: uppercase;
}

.snb-dropdown > li {
    border: 0;
    position: relative;
    height: 100%;
}

.snb-dropdown {
    overflow: visible;
}

.snb-dropdown li.home a,
.snb-dropdown .dropdown-toggle {
    color: #222;
}

.snb-dropdown li.home a {
    display: flex;
    aspect-ratio: 1;
    justify-content: center;
    text-align: center;
    padding: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.snb-dropdown > li:not(.home) > a {
    display: grid;
    grid-template-columns: auto max-content;
    min-width: 240px;
    gap: 0 15px;
    height: 100%;
    padding: 0 15px 0 20px;
    line-height: 1;
    font-size: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.snb-dropdown li a::after {
    font-family: var(--gms);
    font-variation-settings: var(--gms500_Out);
}

.snb-dropdown li.home a::after {
    content: "\e88a";
    font-size: 22px;
    color: #fff;
}

.snb-dropdown > li:not(.home) > a::after {
    content: "\e313";
    font-size: 20px;
    color: #fff;
}

.snb-dropdown .dropdown-toggle {
    border: 0;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

.snb-dropdown .dropdown-menu {
    min-width: 100%;
    margin: 0;
    padding: 0;
    box-shadow: none;
    border: 1px solid #0fa6c3;
    margin-left: -1px;
    border-radius: 0;
}

.snb-dropdown > .dropdown > .dropdown-menu {
    padding: 0;
}

.snb-dropdown > .dropdown > .dropdown-menu > li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    white-space: normal;
    text-align: left;
    padding: 12px 25px;
    font-size: 13px;
    line-height: 1.3;
    color: #888;
}

.snb-dropdown > .dropdown > .dropdown-menu > li + li a {
    border-top: 1px solid #eee;
}

.snb-dropdown .dropdown-menu > li.active a {
    background: transparent;
    color: #217fc4;
    font-weight: 500;
}

.snb-dropdown > li > .dropdown-menu > li a:hover {
    background: #f1f8fd;
    color: #217fc4;
    font-weight: 500;
}

#bs06 .snb-dropdown #snb_69 br {
    display: none;
}

/* .snb {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid #ccc;
}

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

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

.snb li {
    flex: 1;
}

.snb li>a {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 55px;
    background: #fff;
    text-align: center;
    font-size: 16px;
    color: #888;
}

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

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

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

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

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

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

.subpage-content .col-6 {
    grid-template-columns: var(--grid-6repeat);
}
.subpage-content section {
    min-height: 500px;
    padding: clamp(70px, 4vw, 120px) 0 clamp(90px, 4vw, 140px);
}

.subpage-content .container {
    display: flex;
    flex-direction: column;
    gap: clamp(50px, 4vw, 85px) 0;
}

.subpage-content :where(li, p, dd) {
    position: relative;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}

.subpage-content .se-title h3 {
    margin: 0;
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 600;
    color: #072f64;
    line-height: 1;
    text-align: left;
}

.subpage-content .se-title h3 + :where(p, ul) {
    font-size: clamp(16px, 3vw, 18px);
    margin-top: clamp(30px, 3vw, 50px);
    margin-bottom: 0;
    line-height: 1.7;
    font-weight: 400;
}

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

.subpage-content .wp-title h4 {
    font-weight: 700;
    font-size: clamp(22px, 3vw, 26px);
    line-height: 1.4;
    color: #217fc4;
    padding-left: 0;
}

.subpage-content h5 {
    font-weight: 500;
    font-size: 24px;
}

.subpage-content h6 {
    font-weight: 500;
    font-size: 20px;
    color: #555;
}

.subpage-content :where(h4, h5, h6) + * {
    margin-top: 15px;
}

/* =================================== subpage content =================================== */
/* 01 */
.greet-wrap {
    display: grid;
    grid-template-columns: 60% auto;
    align-items: center;
}

.greet-wrap .text {
    padding-right: 100px;
    margin-bottom: 0;
}

.greet-wrap .text h4 {
    margin: 0;
    color: #072f64;
    text-align: left;
    font-size: clamp(32px, 3vw, 55px);
    line-height: 1.2;
    font-weight: 700;
}

.greet-wrap .text p {
    font-size: clamp(15px, 3vw, 17px);
    margin-top: 30px;
    margin-bottom: 0;
    line-height: 1.75;
    font-weight: 400;
}

.greet-wrap .text span.mini {
    display: block;
    font-weight: 700;
    font-size: 16px;
    padding-left: 3px;
    margin: 30px 0 55px;
    color: #217fc4;
}

.greet-wrap .img-box {
    overflow: hidden;
    position: relative;
}

@media (max-width: 767px) {
    .greet-wrap .text span.mini {
        margin-top: 0;
        margin-bottom: 20px;
    }
    .greet-wrap {
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
    }
    .greet-wrap .img-box {
        aspect-ratio: 5/4;
        width: auto;
        margin: 0 -15px;
    }
    .greet-wrap .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .greet-wrap .text {
        position: relative;
        z-index: 500;
        margin-top: -90px;
        padding: 30px;
        background-color: #fff;
    }
    .greet-wrap .text h4 {
        text-align: center;
    }
    .down-wrap {
        gap: 15px;
        flex-direction: column;
    }
}

.down-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.down-wrap h5 {
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 500;
}

.li-down {
    display: flex;
    gap: 5px;
    margin: 0;
}

.li-down a {
    display: flex;
    gap: 0 5px;
    align-items: center;
    color: #fff;
    line-height: 1;
    border: 1px solid #bdbdbd;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #212121;
}

.li-down a:hover {
    background: #258fdd;
    color: #fff;
    border-color: #258fdd;
}

.li-down a:hover::after {
    color: #fff;
}

.li-down a::after {
    content: "\e2c4";
    font-family: var(--gms);
    font-weight: 400;
    font-size: 19px;
    line-height: 1;
    transform: translate(5px, 0px);
    color: #217fc4;
}

.dl-office {
    display: flex;
    flex-direction: column;
    /* gap: 40px 30px; */
    margin-top: 60px;
    border-top: 2px solid #072f64;
}

.dl-office > div {
    display: grid;
    grid-template-columns: 18.5% auto;
}

.dl-office :is(dt, dd) {
    padding: 40px;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.dl-office dd {
    padding-left: 30px;
}

.dl-office dt {
    font-size: 20px;
    color: #072f64;
    padding-left: 5px;
}

.dl-office dd + dd {
    margin-top: 10px;
}

.dl-office dd strong {
    margin-right: 8px;
}

@media (max-width: 767px) {
    .dl-office > div {
        display: flex;
        flex-direction: column;
    }
    .dl-office dt {
        padding-bottom: 10px;
    }
    .dl-office dd {
        padding-inline: 0;
    }
}

ul.li-round {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 9px 0;
}

ul.li-round > li strong {
    color: #126fb3;
}

ul.li-round > li {
    display: grid;
    grid-template-columns: 110px auto;
    font-size: 15px;
    color: #606060;
    font-weight: 400;
    padding-left: 12px;
}

ul.li-round > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    display: block;
    aspect-ratio: 1;
    width: 3px;
    background: #126fb3;
}

.cert-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, minmax(100px, auto));
    padding: clamp(30px, 3vw, 60px) 30px;
    justify-content: center;
    gap: 50px clamp(20px, 3vw, 40px);
    background: #f7f7f7;
}

.cert-wrap p {
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
}

.cert-wrap img {
    border: 1px solid #e0e0e0;
    padding: 5px;
    margin: 0 auto;
    width: 280px;
    box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.05);
    background: #fff;
}

.cert-wrap .item {
    text-align: center;
}

/* map */
:is(.root_daum_roughmap, .root_daum_roughmap .wrap_map, iframe[src^="https://www.google.com/"])
{
    width: 100% !important;
    height: 400px !important;
    padding: 0 !important;
}

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

.li-map {
    display: flex;
    padding: 30px 0 0;
    gap: 0 40px;
    /* background: #2c3c72; */
}

.map-wrap {
    margin-bottom: 30px;
}

.li-map li {
    display: flex;
    align-items: center;
    gap: 0 7px;
    font-size: inherit;
    line-height: 1;
    font-size: clamp(16px, 3vw, 18px);
}

.li-map li span.material-symbols-outlined {
    font-size: 18px;
    transform: translateY(1px);
    color: #fff;
    background: #072f64;
    border-radius: 100px;
    padding: 5px;
    margin-right: 2px;
}

/* 02 */
.li-logo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

.li-logo img {
    padding: 0 20px;
}

@media (max-width: 767px) {
    :is(.root_daum_roughmap, .root_daum_roughmap .wrap_map, iframe[src^="https://www.google.com/"])
    {
        aspect-ratio: 5/3;
        height: auto !important;
    }
    .li-map {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}
.img-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

#bs05 .img-box {
    display: block;
}

.img-box.wide {
    border: 1px solid #e0e0e0;
    padding: 60px 70px;
}

#bs01 .img-box.wide {
    border: none;
    padding: 0;
}

.img-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 15px;
}

.img-wrap p {
    margin-top: 0;
    padding: 6px 20px;
    font-size: 14px;
    font-weight: 500;
    background: #11396a;
    background: rgb(0 60 122 / 80%);
    color: #fff;
}

.img-wrap .item p {
    position: absolute;
    left: 1px;
    bottom: 0;
    width: calc(100% - 2px);
}

.img-wrap .img-box {
    position: relative;
    overflow: hidden;
    /* border: 1px solid #eee; */
}

.img-wrap .img-box img {
    border: 1px solid #eaeaea;
}

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

/* Global Forwarding Service */
#bs01 .img-wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

#bs02 .img-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Heavy & Oversized Cargo Transportation */
#bs03 .img-wrap.wp01 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

#bs03 .img-wrap.wp02 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Sea Fastening Service */
#bs04 .img-wrap.wp01 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

#bs04 .img-wrap.wp02 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Cargo Packaging and Cargo Preservation Services */
/* #bs05 .img-wrap {
    grid-template-columns: 35% auto;
} */

#bs05 .item.fit .img-box {
    height: 393px;
}

/* Crane & Special Equipment Operation Service */
#bs06 .img-wrap {
    grid-template-columns: repeat(2, 1fr);
}

#bs06 .item.fit {
    grid-row: span 2;
}

#bs06 .item.fit .img-box {
    height: 690px;
}

@media (max-width: 767px) {
    .img-wrap + .img-wrap {
        margin-top: -35px;
    }
    #bs06 .item.fit .img-box {
        height: auto;
    }
    #bs07 .img-wrap,
    #bs06 .img-wrap,
    #bs04 .img-wrap.wp02,
    #bs04 .img-wrap.wp01,
    #bs03 .img-wrap.wp02,
    #bs03 .img-wrap.wp01,
    #bs02 .img-wrap,
    #bs01 .img-wrap {
        display: flex;
        flex-direction: column;
    }
}

.dl-line {
    display: flex;
    flex-direction: column;
    gap: 60px 30px;
}

.dl-line > div {
    display: grid;
    grid-template-columns: 32% auto;
}

.dl-line :is(dt, dd) {
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.dl-line dt {
    line-height: 1.35;
    font-size: 20px;
    color: #072f64;
    padding-left: unset;
    border-top: 2px solid #217fc4;
}

.dl-line dd + dd {
    margin-top: 10px;
}

.dl-line dd strong {
    margin-right: 5px;
}

/* 03 */

/* 04 */

/* 05 */

/* table */
.table-responsive {
    margin-top: 0;
}

table {
    margin-top: 0;
    margin-bottom: 0;
}

.subpage .table-style :is(tbody, thead) :is(th, td) {
    border-color: #e0e0e0;
    border-right: 1px solid #e0e0e0;
    text-align: center;
    padding: 12px 15px;
    font-size: 15px;
    vertical-align: middle;
}

.subpage .table-style {
    border-top: 1px solid #222;
    border-bottom: 1px solid #ccc;
    /* border-right: 2px solid #fff; */
}

.subpage .table-style > thead th {
    background: #072f64;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    border: 0;
    font-size: 16px;
    padding: 20px;
}

.subpage .table-style > tbody th {
    color: #fff;
    border: 0;
    font-weight: 500;
    font-size: 16px;
}

.subpage .table-style > tbody tr:first-child td {
    border-top: 0;
}

.subpage .table-style > tbody th.cate01 {
    background: #2e7eb9;
}

.subpage .table-style > tbody th.cate02 {
    background: #2fa5bb;
}

.subpage .table-style > tbody th.cate03 {
    background: #072f64;
}

.form-wrap #list_btn {
    display: none;
}

/* =================================== board, bbs =================================== */
.page-header h4 {
    display: inline-block;
}

.page-header a.pull-right i::before {
    content: "\e145";
    font-family: var(--gms);
    font-size: 24px;
    font-weight: 500;
    color: #000;
}

:is(.board_wrapper, .pagination_wrap, .search_wrap) {
    content-visibility: hidden;
}

.bbs-area :is(.board_wrapper, .pagination_wrap, .search_wrap) {
    content-visibility: auto;
}

[class^="board_box"] {
    margin-bottom: 0 !important;
}

:is(.table_video, .table_blog2) dd:not([class]) {
    width: 100%;
}

:is(.table_video, .table_blog2, ) dd .inner .bottom {
    padding: 15px 20px;
}

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

.bbs-area .reply_wrap h4 {
    font-size: 22px;
    text-align: left;
}

.bbs-area .search_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    gap: 5px;
}

.board_wrapper {
    margin-top: 0 !important;
}

.board_wrapper .text-center {
    display: flex;
    justify-content: center;
    gap: 10px;
}

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

.board_wrapper .text-center .btn + .btn {
    margin: 0;
}

.btn.btn-primary:is(:hover, :focus) {
    background-color: #1664a8;
    border-color: #1664a8;
}

.btn.btn-dark:is(:hover, :focus) {
    background-color: #262626;
    border-color: #262626;
}

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

.member_wrapper h1 {
    margin-top: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.table.table_default tr :is(th, td) {
    font-size: 15px;
    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;
}

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

input.form-control {
}

/* wrapper */
.board_wrapper .table.board_write_table {
    border-top: 2px solid #072f64;
}

.board_wrapper .text-center .btn {
    padding: 15px 0 !important;
}

.board_wrapper .table.board_write_table :is(.input-group.input-group-big, .form-control.form-control-big, .btn, .form-control) {
    width: 50%;
}

.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 {
    font-size: 15px;
    font-weight: 700;
    padding-top: 26px;
    padding-left: 35px;
    background: #f7f7f7;
    color: #072f64;
}

.board_wrapper .table.board_write_table tbody tr :where(th, td) {
    padding-top: 18px;
    padding-bottom: 18px;
}

.board_wrapper .table.board_write_table tbody tr td {
    padding-left: 20px;
}

.board_wrapper .table.board_write_table .checkbox {
    margin-top: 15px;
}

.board_box_blog2 .row {
    margin-left: -5px;
    margin-right: -5px;
}

.board_box_blog2 .row > div[class^="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}

.board_box_blog2 .inner {
    margin-top: 0;
    margin-bottom: 0;
}

.board_box_blog2 .inner .bottom {
    padding: 12px 10px;
}

.board_box_blog2 .inner .bottom .title {
    font-size: 25px;
    letter-spacing: -0.02em;
}

.board_box_blog2 .inner .bottom .title a {
    font-size: 14px;
}

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

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

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

.board_box_blog2 .inner .top a .thumb {
    height: 180px;
}

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

:is(.checkbox label, .radio label) {
    font-size: 15px;
}

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

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

#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: 12px;
    font-weight: 400;
}

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

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

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

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

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

.join_wrapper .member_wrapper {
    width: auto;
}

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

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

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

.member_wrapper .form-group:focus-within {
    z-index: 100;
    border-color: #007cbe;
}

.member_wrapper .form-group:focus-within span.material-symbols-outlined {
    opacity: 1;
}

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

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

.member_wrapper h1 + p {
    line-height: 1.35;
}

.member_wrapper h1 {
    font-size: 30px;
    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: 13px;
}

.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) {
    /* carousel */
    #mainCarousel .carousel-inner .item {
        aspect-ratio: 1;
        height: auto;
    }

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

    .carousel-control {
        font-size: 14px;
        display: none !important;
    }

    .carousel-indicators :is(li, li.active) {
        aspect-ratio: 1;
        width: 10px;
        margin: 0 6px;
    }
}

/* subpage */
@media (max-width: 767px) {
    .snb-dropdown {
        padding-block: 15px;
        gap: 10px;
    }
    .snb-dropdown li.home {
        display: none;
    }
    .snb-dropdown > li:not(.home) > a {
        height: 50px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .snb-dropdown {
        display: flex;
        flex-direction: column;
    }
    .subpage-header {
        height: 170px;
    }
}

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

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

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

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

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

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

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

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

    .board_wrapper .text-center .btn.btn-lg {
        padding: 0;
        height: 50px;
    }

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

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

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

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

    .main_popup_contents {
        padding: 10px;
    }

    :is(#find_idpw, .join_wrapper, .login_wrapper) {
        position: relative;
        padding: 30px 0;
    }

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

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

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

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

    .member_wrapper {
        padding-top: 50px;
    }

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

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

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

/* sns_link */
.sns_link {
    display: flex;
    margin-left: 50px;
    justify-content : space-between
}
.sns_link .img-box{
    flex-direction: column;
    gap: 1px;
}
.sns_link .img-box img{
    height: 57px;
    object-fit : contain;
}
.sns_link .img-box p{
    color: #0173c9;
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
}
.sns_link ul {
    display: flex;
    gap: 10px;
    align-items: center;
}
.sns_link li:nth-child(1) a {
    background: #4867aa;
    padding-right: 1px;
    padding-bottom: 1px;
}
.sns_link li:nth-child(2) a {
    background: #0266c8;
}
.sns_link li a {
    /* display: block; */
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* line-height: 26px; */
    width: 45px;
    aspect-ratio: 1;
    text-align: center;
    border-radius: 50%;
    padding-bottom: 1px;
}
.sns_link li a i {
    color: #fff;
}
#ab02 .office-wrap dd ul li{
    display: grid;
    grid-template-columns: 127px 1fr;
}
#ab02 .office-wrap dd ul li strong{}
@media (max-width: 991px) {
    .sns_link {
        margin-left: 0;
        gap: 10px;
    }
    .sns_link ul {
        gap: 5px;
        flex-direction: column;
        justify-content: center;
    }
    .sns_link li a {
        font-size: 12px;
        width: 30px;
    }
    .sns_link .img-box img {
        height: 40px;
    }
    .sns_link .img-box p {
        font-size: 9px;
    }
}
@media (max-width: 767px) {
    .sns_link {
        position: absolute;
        right: 60px;
        top: 2px;
        scale: 0.9;
    }
}
