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

* {
    word-break: keep-all;
}

#site {
    font-family: "Roboto", "notokr", sans-serif;
}

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

/* =================================== material symbol =================================== */
.material-symbols-outlined {
    font-variation-settings: var(--gms300_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.5;
    font-weight: normal;
    letter-spacing: -0.025em;
}

: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 =================================== */
:is(.li-dash, .li-cir) {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

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

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

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

/* 다국어 최적화 */
.service-wrap .item span.de {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #798693;
}

.navbar-inverse .navbar-nav .dropdown-menu > li > a span.de {
    opacity: 0.8;
    display: block;
    margin-top: 5px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
}

.subpage-content .se-title h3 span.de {
    display: block;
    margin-top: 12px;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    color: #798693;
}

.snb li a span.de {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 1.15em;
    color: #798693;
}

.snb li.active a span.de,
.snb li a:hover span.de {
    color: #b1b1b1;
}

.breadcrumb span.de {
    display: none;
}

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

.navbar .caret {
    display: none;
}

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

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

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

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

/* reset end */
.lang-btn {
    display: none;
}

.container .lang-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.lang-btn span.material-symbols-outlined {
    font-size: 22px;
    color: #000;
}

.lang-btn button {
    padding: 0 9px;
    line-height: 0.8;
    font-size: 15px;
    color: #aaa;
    font-weight: 900;
}

.lang-btn button.active {
    color: #000;
    font-weight: 500;
}

.lang-btn button + button {
    border-left: 1px solid #aaa;
}

/* 상단 메뉴 */
.navbar-inverse {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
    padding: 0px 0px;
    /* box-shadow: 5px 0 5px rgba(0, 0, 0, 0.1); */
    margin-bottom: 0;
    border: 0;
}

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

.navbar-brand > img {
    width: 80px;
}

/* nav 대메뉴*/
.navbar-inverse .navbar-nav > li > a {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    letter-spacing: -0.034em;
}

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

/* nav 서브메뉴 dropdown-menu color */
.navbar-inverse .navbar-nav :is(li.open, li) .dropdown-menu > li > a {
    color: #222;
}

/* nav 대메뉴&서브메뉴 hover,focus 모바일 제외 */
@media (hover: hover) {
    /* nav 대메뉴 클릭&후버 시 */
    .navbar-inverse .navbar-nav > li > a:is(:hover, :focus),
    .navbar-inverse .navbar-nav > li:is(:hover, :focus) .dropdown-toggle {
        background: none;
        color: #111;
    }

    /* nav 서브메뉴 dropdown-menu hover */
    .navbar-inverse .navbar-nav .dropdown-menu > li > a:hover {
        color: #fff !important;
        background: #5493ce;
    }
}

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

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

    /* nav 서브메뉴 dropdown-menu  */
    .navbar-inverse .navbar-nav .dropdown-menu {
        top: calc(50% + 30px);
        left: 50%;
        right: auto;
        transform: translate(-50%, 0);
        border-radius: 0;
        border: 0;
        padding: 5px;
        text-align: center;
        border: 1px solid #777;
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    }

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

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

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

    .container .lang-btn {
        position: absolute;
        top: 8px;
        right: 5px;
    }

    .lang-btn button {
        font-size: 13px;
    }

    .lang-btn span.material-symbols-outlined {
        font-size: 17px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /* nav 로고*/
    .navbar-inverse .navbar-brand {
        order: 1;
        width: 100px;
        justify-content: flex-start;
        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;
        flex-wrap: wrap;
        justify-content: start;
        align-items: center;
    }
    .navbar-inverse .navbar-nav .dropdown-menu > li > a span.de {
        width: 100%;
        margin-top: 2px;
    }

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

    /* nav 서브메뉴 */
    .navbar-inverse .navbar-nav > li.open > ul.dropdown-menu > li > a {
        height: auto;
        padding: 10px 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: #5493ce;
    }
}

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

.footer-wrap {
    display: grid;
    grid-template-columns: repeat(2, auto);
    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.5;
    font-size: 14px;
    color: #fff;
    gap: 0 10px;
}

.footer-info li {
    font-weight: 300;
    letter-spacing: 0;
    opacity: 0.8;
}

.footer-info li.corp strong {
    font-weight: 400;
}

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

.footer-info li.corp {
    margin-bottom: 5px;
    opacity: 1;
}

.footer-info li.copyright {
    margin-top: 15px;
    font-size: 12px;
    letter-spacing: 0.03em;
    font-weight: 200;
    opacity: 0.4;
}

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

.footer-login .login-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 35px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1;
}

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

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

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

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

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

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

    #scrolltop {
        width: 40px;
        height: 40px;
        right: 0px;
        bottom: 30px;
    }

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

/* caption */
.carousel-caption {
    top: 49%;
    padding: 0;
}

.carousel-caption h1 {
    position: relative;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0;
}

.carousel-caption p {
    margin-top: 16px;
    font-size: 22px;
    line-height: 1.65;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* 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.glyphicon-chevron-right::before,
.glyphicon.glyphicon-chevron-left::before {
    color: #fff;
    font-family: var(--gms);
    font-weight: 100;
}

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

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

.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 */
.carousel-indicators {
    bottom: 40px;
}

.carousel-indicators :is(li, li.active) {
    aspect-ratio: 1/1;
    width: 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: 100px 0 110px;
}

.mainpage section.main-service {
    background: url(/public/img/main/main_bg1.jpg) no-repeat top left;
}

.mainpage section.main-business {
    background: url(/public/img/main/main_bg2.jpg) no-repeat center left;
    padding: 120px 0 130px;
}

.mainpage h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #05336c;
}

.service-wrap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
    padding: 0 20px;
}

.service-wrap .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px 30px;
    height: 180px;
    border: 1px solid #fff;
    color: #000;
    background: #fff;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 3px;
}

@media (hover: hover) {
    .service-wrap .item:hover {
        border: 2px solid #5bace7;
    }
}

.service-wrap .item h4 {
    line-height: 1.25;
    font-size: 20px;
    font-weight: 700;
}

.service-wrap .item::after {
    content: "\e5cc";
    content: "";
    /* font-family: var(--gms); */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    /* width: 30px; */
    /* background-color: #000; */
    /* color: #fff; */
    /* border-radius: 50%; */
    /* font-size: 20px; */
    margin-left: auto;
    width: 66px;
    height: 24px;
    background: url(/public/img/main/arrow1.png) no-repeat right 50%;
}

.business-wrap {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.business-wrap .item {
    padding: 50px 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #fff;
    /* border-top: 1px solid #3656a6; */
    box-shadow: 2px 2px 22px 4px rgba(0, 27, 88, 0.09);
    border-radius: 5px;
}

.business-wrap .item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-top: 15px;
    line-height: 1.32em;
}

.business-wrap .item h4::before {
    content: "";
    display: block;
    width: 35px;
    height: 1px;
    background: #aac3ef;
    margin: 30px auto 35px;
}

.business-wrap .item span.material-symbols-outlined {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    width: 84px;
    font-size: 42px;
    color: #fff;
    /* border-radius: 50%; */
    /* border: 3px solid #62bdfb; */
    /* border-left-color: #7263f1; */
    /* border-bottom-color: #6483c9; */
    background: linear-gradient(0.4turn, #496cab 0%, #468af1 50%, #45b1f1 100%);
    border-radius: 50%;
}
@media (hover: hover) {
    .business-wrap .item:hover {
        background: #388fe3;
    }

    .business-wrap .item:hover span {
        background: #fff;
        color: #1c7bb3;
    }

    .business-wrap .item:hover h4 {
        color: #fff;
        font-weight: 500;
    }

    .business-wrap .item:hover h4::before {
        background: #fff;
        opacity: 0.7;
    }
}

.board-wrap {
    /* display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px; */
}

.board-wrap h3 {
    font-weight: 700;
    font-size: 26px;
}

.board-wrap .nav {
    margin-top: 6px;
    border: 0;
}

.board-wrap .nav > li {
    position: relative;
}

.board-wrap .nav > li + li {
    margin-left: 20px;
}

.board-wrap .nav > li + li::before {
    content: "/";
    position: absolute;
    font-size: 18px;
    line-height: 1;
    color: #999;
    left: -14px;
    top: 4px;
}

.board-wrap .nav > li a {
    padding: 0;
    margin: 0;
    border: 0 !important;
    font-size: 17px;
}

.board-wrap .nav > li:not(.active) a {
    color: #666;
}

.board-wrap .nav > li:hover a,
.board-wrap .nav > li.active a {
    font-weight: 500;
    color: #000;
    background-color: transparent;
}

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

.board-wrap .item > .page-header {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
    border-bottom: 1px solid #000;
    padding-right: 50px;
}

.board-wrap .tab-content .page-header {
    position: absolute;
    top: 5px;
    right: 0px;
    margin: 0 0 0 0;
    padding: 0;
    border: 0;
}

.board-wrap .tab-content .page-header a {
    margin-top: 0;
}

.board-wrap .tab-content .page-header h4 {
    display: none;
}

.board-wrap .board_box_list li {
    font-size: 16px;
    color: #222;
}

.board-wrap .board_box_list li :is(.writer, .hits) {
    display: none;
}

.board-wrap .board_box_list li + li {
    margin-top: 10px;
}

/* wrap */

/* =================================== subpage header =================================== */
/* default */
.subpage-header {
    position: relative;
    height: 280px;
    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: #000;
    opacity: 0.45;
}

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

.subpage-header .subpage-title h2 {
    font-size: 47px;
    line-height: 1;
    text-align: center;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.034em;
}

/* grid default layout */
.subpage > .container.subpage-body {
    display: grid;
    grid-template-areas: "snb sb-connent";
    grid-template-columns: 250px auto;
    grid-template-rows: min-content;
    gap: 0px 60px;
    padding-bottom: 150px;
    min-height: 500px;
}

.snb {
    grid-area: snb;
}

.subpage-content {
    grid-area: sb-connent;
    padding-top: 52px;
}

.subpage-content:only-child {
    grid-column: span 2;
    padding: 100px 0 0px;
}

.se-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.se-title h3 {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.034em;
}

.se-title h3 + :where(p, li) {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 0;
    padding-bottom: 30px;
    line-height: 1.6;
    font-weight: 400;
    color: #333;
}

.se-title .breadcrumb {
    background: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    gap: 20px;
    font-size: 13px;
}

.se-title .breadcrumb > li {
    position: relative;
    color: #777;
    font-size: 14px;
}

.se-title .breadcrumb > li.active {
    color: #111;
}

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

.subpage-content div + h4 {
    margin-top: 50px;
}

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

.subpage-content .wp-title h4 {
    font-size: 30px;
    font-weight: 700;
}

.subpage-content h4 {
    font-weight: 500;
    font-size: 26px;
    line-height: 1.4;
    color: #000;
    letter-spacing: -0.034em;
    padding-left: 0;
    margin-bottom: 20px;
}

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

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

/* =================================== snb =================================== */
.snb-title {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    padding: 0 20px;
    background-color: #3a54a6;
}

.snb-title h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.25;
    font-family: "notokr";
    color: #fff;
    margin-top: -3px;
}

[id^="bs0"] .snb-title h2 {
    font-size: 25px;
}
.snb li.active a {
    font-weight: 700;
    color: #222;
    border-color: #444;
    font-size: 17px;
}

.snb li a {
    position: relative;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    justify-content: center;
    align-items: flex-start;
    padding: 10px 25px 10px 20px;
    min-height: 50px;
    font-size: 17px;
    line-height: 1;
    color: #666;
    border-bottom: 1px solid #ddd;
    font-weight: 400;
    letter-spacing: -0.03em;
}

[id^="rs"] .snb li a {
    padding: 12px 25px 12px 17px;
    color: #000;
}

@media (hover: hover) {
    .snb li a:hover,
    .snb li a:focus {
        color: #fff;
        background: #464f56;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
    }
}

.snb li.active a {
    font-weight: 400;
    color: #fff;
    font-size: 16px;
    border-color: #333;
    background: #464f56;
}

.snb li a::after {
    position: absolute;
    top: 50%;
    right: 3px;
    transform: translateY(-50%);
    content: "\e5cc";
    font-family: var(--gms);
    font-weight: 300;
    font-size: 27px;
    line-height: 1;
    color: #bbb;
}

.snb li.active a::after {
    color: inherit;
}

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

/* =================================== subpage =================================== */
.subpage-content section {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

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

.subpage-content .se-title {
    border-bottom: 1px solid #ddd;
    padding-bottom: 18px;
    flex-direction: column;
    align-items: flex-start;
}

.subpage-content .se-title h3 {
    margin: 0;
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    text-align: left;
}

.subpage-content .se-title h3 + :where(p, li) {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 0;
    padding-bottom: 30px;
    line-height: 1.6;
    font-weight: 400;
    color: #333;
}

.subpage-content h5 {
    line-height: 1;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

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

.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: flex;
    flex-direction: column;
    gap: 10px;
}

.greet-wrap .top {
    display: grid;
    grid-template-columns: auto 200px;
    align-items: start;
    gap: 100px;
}

.greet-wrap .top .txt-box p,
.greet-wrap .info > p {
    font-size: 17px;
}

.greet-wrap .top .txt-box p:first-child {
    font-size: 28px;
    line-height: 1.4em;
    color: #000;
}

.greet-wrap .top .txt-box,
.greet-wrap .info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.greet-wrap .info .area h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 50px;
}

.greet-wrap .area p {
    margin-top: 0;
    padding: 20px 20px 20px 30px;
    background-color: #f8f8f8;
    border-left: 1px solid #bbb;
    margin-left: 3px;
}

.greet-wrap ul.li-name,
.form-wrap .text ul.li-name {
    /* display: flex; */
    /* justify-content: right; */
    /* gap: 15px; */
    /* line-height: 1; */
    text-align: right;
}

.greet-wrap .li-name li:is(.rank, .ceo),
.form-wrap .text .li-name li:is(.rank, .ceo) {
    font-weight: 700;
    font-size: 15px;
}

.greet-wrap .li-name li.name {
    font-size: 20px;
    margin-top: 10px;
}

.prof-wrap {
    background: #f4f6f9;
    padding: 50px;
}

.prof-wrap h4 {
    font-size: 24px;
}

.prof-wrap h5 {
    font-size: 17px;
    margin-bottom: 0;
    font-weight: 700;
}

.prof-wrap ul li {
    font-size: 15px;
    line-height: 1.4em;
}

.prof-wrap ul {
    margin-top: 12px;
}

.prof-wrap ul.li-contact {
    display: flex;
    gap: 15px;
    line-height: 1;
    margin-bottom: 40px;
}

.history-wrap {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
}

.history-wrap h4.year {
    margin-bottom: 0;
    line-height: 1;
    font-weight: 700;
    color: #333;
    display: none;
}

.history-wrap .item {
    margin-top: 0;
}

.history-wrap .box {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
}

.history-wrap button.subject {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 25px 25px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: left;
}

.history-wrap button.subject h5 {
    margin-bottom: 0;
    font-size: 18px;
    letter-spacing: -0.034em;
    color: #798693;
    display: grid;
    grid-template-columns: 120px auto;
    align-items: flex-start;
    line-height: 1.2;
    gap: 20px;
}

.history-wrap button.subject h5 span {
    display: inline-block;
    font-size: 20px;
    position: relative;
    border-right: 1px solid #ccc;
    line-height: 1;
}

/* .history-wrap button.subject h5 span::after {
    content: '';
    display: block;
    position: absolute;
    height: 18px;
    width: 1px;
    background: #000;
    right: -22px;
    top: 2px;
    opacity: 0.2;
} */

.history-wrap button.subject:hover h5,
.history-wrap .active button.subject h5 {
    color: #fff;
}

.history-wrap button.subject:hover,
.history-wrap .active button.subject {
    border-color: #818fa1;
    background: #818fa1;
}

.history-wrap .item .text {
    display: none;
    padding: 30px;
    background-color: #f7f7f7;
    /* margin-bottom: 10px; */
}

.history-wrap .item p + ul {
    margin-top: 10px;
}

.history-wrap .item .text p + p {
    margin-top: 20px;
    line-height: 1.6em;
    font-size: 16px;
}

.mem-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.mem-wrap .item {
    border: 1px solid #ddd;
    background-color: #f4f6f9;
}

.mem-wrap .item dt {
    padding: 25px;
    background-color: #fff;
}

.mem-wrap .item dt h5 {
    margin-bottom: 15px;
    font-weight: 500;
}

.mem-wrap .item dt span.rank {
    font-weight: 500;
    color: #3a54a6;
}

.mem-wrap .item dd {
    padding: 20px 20px;
    display: flex;
}
.mem-wrap .item dd + dd {
    padding-top: 0px;
}
.mem-wrap .item ul {
    margin-top: 0;
}

.mem-wrap .item li {
    font-size: 14px;
}

.mem-wrap .item h6 {
    font-size: 14px;
    font-weight: 700;
    margin-right: 15px;
}

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

.edu-wrap .inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 30px;
}

.edu-wrap .wp-title {
    grid-column: span 3;
}

.edu-wrap .item {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0 30px 30px;
    background-color: #f4f6f9;
    border-radius: 10px;
}

.edu-wrap .img-box {
    margin: 0 -30px 25px;
    overflow: hidden;
}

.edu-wrap h5 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    line-height: 1.32em;
    margin: 10px 0;
}

.edu-wrap p {
    margin-top: 0;
}

.edu-wrap span.teach {
    margin: 0;
    font-weight: 700;
    color: #3a54a6;
}

.bs-wrap {
    display: grid;
    gap: 80px;
}

.bs-wrap h4 {
    padding-left: 70px;
    line-height: 1.2em;
}

.bs-wrap h4::before {
    content: "";
    display: block;
    width: 55px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
    top: 14px;
}

.bs-wrap h4 span.rank {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.034em;
    display: block;
}

.bs-wrap h4 span.name {
    font-weight: 700;
    font-size: 25px;
}

/* .bs-wrap .text-box {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 50px;
}

.bs-wrap .text-box .text {
    margin: 0;
} */

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

/* 04 */

/* 05 */
.form-wrap :is(.top, .bbs-area) {
    display: grid;
    grid-template-columns: 380px auto;
    gap: 90px;
}

.form-wrap .text {
    margin-top: 0;
}

.form-wrap {
    margin-top: 50px;
}

.form-wrap .top h4 {
    font-size: 33px;
    letter-spacing: -0.06em;
    font-weight: 700;
    line-height: 1.6em;
}

.form-wrap .text p {
    font-size: 17px;
}

.form-wrap .text p.imp {
    font-weight: 700;
    display: none;
}

.form-wrap .text p + p {
    margin-bottom: 10px;
}

.form-wrap .text ul {
    margin-top: 50px;
}

.form-wrap .text .li-name .name {
    font-size: 17px;
}

.form-wrap .bbs-area {
    margin-top: 100px;
    gap: 0;
    background: #222;
    grid-template-columns: 360px auto;
    box-shadow: 0 20px 25px 0px rgba(0, 0, 0, 0.06);
}

.form-wrap .bbs-area h4 {
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.035em;
    line-height: 1.3;
    padding: 60px 48px;
}

.form-wrap .bbs-area > h4 span {
    font-weight: 300;
    font-size: 17px;
    color: #ccc;
    letter-spacing: 0;
}

/* ----- 주문폼 스타일 START----- */
#ca01 .board_wrapper {
    background: #fafafa;
    padding: 70px 80px;
    border: 1px solid #eee;
}

#ca01 .board_write_table {
    border-top: none;
    border-bottom: none;
}

#ca01 .board_write_table th,
#ca01 .board_write_table td {
    font-size: 15px;
    border: none;
    letter-spacing: -0.035em;
}

#ca01 .board_write_table tbody th {
    width: 140px;
    background: rgba(0, 0, 0, 0);
    padding: 13px 0 0 10px;
    font-size: 15px;
    font-weight: 600;
}

#ca01 .board_write_table td {
    padding: 0 0 20px;
    font-size: 14px;
}

#ca01 #item_agree td span {
    font-size: 13px;
}

#ca01 #item_agree td span a {
    color: #333;
    font-weight: 600;
}

#ca01 #item_agree td .checkbox {
    margin-top: 15px;
}

#ca01 .board_write_table .form-control {
    width: 100%;
    height: 46px;
    padding-left: 0;
    border: none;
    border-bottom: 2px solid #333;
    font-size: 14px;
    letter-spacing: -0.025em;
    background: transparent;
}

#ca01 .board_write_table textarea.form-control {
    height: 150px !important;
    min-height: 150px !important;
}

#ca01 .board_write_table .form-control:focus {
    border-color: #aaa;
}

#ca01 .board_write_table #item_email .text-muted {
    margin-top: 8px !important;
    font-size: 13px;
    color: #777;
    letter-spacing: -0.02em;
}

#ca01 .board_write_table #item_email .text-muted i {
    display: none;
}

#ca01 .board_wrapper .table.board_write_table tbody tr th > span.required_text {
    color: #111;
    font-size: 0.85em;
}

#ca01 #item_agree td .checkbox {
    margin-top: 15px;
}

#ca01 #item_agree td span {
    font-size: 13px;
}

#ca01 #item_agree td span a {
    color: #333;
    font-weight: 600;
}

#captcha {
    width: 130px;
}

#ca01 .btn-primary {
    background: #222;
    border: 1px solid #222;
}

#ca01 .btn-primary:hover {
    background: #fff;
    border: 1px solid #222;
    color: #222;
}

/* ----- 모바일 ----- */
@media (max-width: 767px) {
    .form_style3_wrap {
        display: block;
    }

    .form_style3_wrap .form_title,
    .form_style3_wrap .form_area {
        width: 100%;
    }

    .form_style3_wrap .form_title .inner {
        padding: 40px 30px;
    }

    #ca01 .form_title p {
        font-size: 28px;
        margin-bottom: 18px;
    }

    #ca01 .form_title span {
        font-size: 14px;
    }

    .form_style3_wrap .form_area {
        padding: 30px 30px 60px;
    }

    #ca01 .board_write_table tbody tr th {
        padding-left: 10px !important;
    }

    #ca01 .text-center {
        margin-top: 25px;
    }

    #ca01 .text-center .btn {
        min-width: 120px;
    }
}

/* ----- 주문폼 스타일 END----- */
/* =================================== 교육 사업 fullpage =================================== */
.fullpage {
}

.fullpage section {
    position: sticky;
    top: var(--navHeight);
    height: calc(100vh - var(--navHeight));
}

.fullpage section::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.5;
}

.fullpage section .container {
    display: flex;
    height: 100%;
    align-items: center;
}

.fullpage section.se01 {
    background-image: url(/public/img/sub/bs01-bg.jpg);
}

.fullpage section.se02 {
    background-image: url(/public/img/sub/bs02-bg.jpg);
}

.fullpage section.se03 {
    background-image: url(/public/img/sub/bs03-bg.jpg);
}

.fullpage section.se04 {
    background-image: url(/public/img/sub/bs04-bg.jpg);
}

.fullpage section.se05 {
    background-image: url(/public/img/sub/bs05-bg.jpg);
}

.fullpage .se-caption {
    width: 100%;
    position: relative;
    z-index: 50;
    color: #fff;
}

.fullpage .se-caption h2 {
    font-size: 82px;
    line-height: 1.3;
    letter-spacing: 0.015em;
    font-weight: 700;
    text-shadow: 0 0 60px rgba(0, 0, 0, 0.15);
    margin: 0px 0 40px -10px;
}

.fullpage .se-caption h4 {
    margin: 0;
    font-size: 30px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.034em;
}

.fullpage .se-caption h4 + p {
    margin: 15px 0 0;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 300;
}

.fullpage .se-caption p {
    margin-top: 20px;
    font-size: 24px;
    letter-spacing: -0.03em;
    font-weight: 400;
}

.fullpage .se-caption span.cate {
    font-size: 22px;
    margin-bottom: 17px;
    padding-left: 5px;
    font-weight: 300;
}

.fullpage section .more-btn {
    display: inline-block;
    margin-top: 50px;
    border-bottom: 2px solid #fff;
    padding-bottom: 7px;
    color: #fff;
    font-size: 22px;
    line-height: 1;
}

.fullpage section .more-btn:hover {
    color: #fff;
}

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

.page-header a.pull-right i::before {
    content: "\e145";
    font-family: var(--gms);
    font-size: 25px;
    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;
}

.category_wrap ul {
    display: flex;
    gap: 0 20px;
}

.category_wrap li {
    margin: 0 !important;
}

.category_wrap li a {
    color: #888;
    font-weight: 500;
    font-size: 15px;
    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, minmax(0, 1fr));
    gap: 50px 20px;
    margin: 0;
}

:is(.table_video, .table_blog2) > 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: 16/9;
    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:not([class]) {
    width: 100%;
    grid-column: span 3;
}

: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: 16px;
    text-align: left;
}

#reply_list .text-center {
    padding: 30px 0 !important;
}

#reply_list .text-center span {
    font-size: 15px !important;
}

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

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

.board_wrapper table.table.table_default {
    margin-bottom: 20px;
}

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

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

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

.btn.btn-primary {
    font-family: "notokr";
    background-color: #3353a4;
    border: 1px solid #3353a4;
    color: #fff;
}

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

/* 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: #fafafa;
    border-bottom: 1px solid #ddd;
    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 {
    font-family: "notokr", sans-serif;
}

.badge {
    background: #509ec9;
}

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

.board_wrapper .table.board_write_table {
    border-top: 1px solid #333;
}

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

.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 {
    background-color: #fafafa;
    font-size: 15px;
    font-weight: 700;
    padding: 20px 20px;
    width: 180px;
}

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

.board_data_view .header_wrap .title {
    text-align: left;
    font-size: 26px;
    letter-spacing: -0.034em;
}

.board_data_view .header_wrap .info {
    text-align: left;
}

.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;
    letter-spacing: -0.06em;
}

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

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

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

.join_wrapper .member_wrapper {
    width: auto;
}

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

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

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

.member_wrapper .form-group:focus-within {
    z-index: 100;
    border-color: #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 {
        height: 500px;
    }

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

    .carousel-caption h1 {
        font-size: 42px;
    }

    .carousel-caption p {
        font-size: 18px;
    }

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

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

    .mainpage section {
        padding: 80px 0 90px !important;
    }

    .mainpage h2 {
        font-size: 34px;
        margin-bottom: 40px;
    }

    .service-wrap {
        padding: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-wrap .item {
        height: 190px;
        padding: 20px;
    }

    .service-wrap .item span.de {
        word-break: break-all;
    }
    .service-wrap .item h4 {
        font-size: 18px;
    }
    .service-wrap .item::after {
        margin-top: 30px;
    }

    .mainpage section.main-business,
    .mainpage section.main-service {
        /* background-attachment: fixed; */
        background-size: cover;
    }

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

    .business-wrap .item {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .business-wrap .item h4 {
        margin-top: 0;
    }

    .business-wrap .item h4::before {
        margin: 20px auto 20px;
    }
}

/* subpage */
@media (max-width: 767px) {
    .subpage-header .subpage-title h2 {
        display: none;
    }
    .subpage > .container.subpage-body {
        display: flex;
        flex-direction: column;
        padding-bottom: 80px;
    }
    .snb {
        margin-top: -70px;
    }
    .snb li a {
        font-size: 15px;
    }
    .snb-title {
        /* display: none; */
        height: 120px;
    }
    .snb-title h2 {
        margin-top: 5px;
        font-size: 34px;
    }
    .subpage-content .se-title h3 {
        text-align: center;
    }
    .subpage-header {
        height: 130px;
    }
    .subpage-content .se-title {
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .greet-wrap .img-box {
        width: 170px;
    }
    .greet-wrap .top {
        gap: 40px;
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
        align-items: center;
    }
    .prof-wrap {
        padding: 30px 25px;
    }
    .prof-wrap ul.li-contact {
        flex-direction: column;
    }
    .prof-wrap ul li b {
        display: block;
    }
    .history-wrap button.subject h5 span {
        border-right: 0;
    }
    .history-wrap button.subject h5 {
        display: flex;
        flex-direction: column;
        line-height: 1.5;
    }
    .mem-wrap {
        display: flex;
        flex-direction: column;
    }
    .mem-wrap .item {
        /* display: grid; */
        /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
    }
    .mem-wrap .item dt,
    .mem-wrap .item dd {
        padding: 20px;
    }
    .mem-wrap .item dt span.rank {
        font-size: 13px;
    }
    .fullpage section {
        min-height: 600px;
        height: auto;
    }
    .fullpage section .container {
        padding-top: 80px;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 100px;
        align-items: flex-start;
    }
    .fullpage .se-caption h2 {
        font-size: 44px;
    }
    .fullpage .se-caption h4 {
        font-size: 24px;
    }
    .fullpage section .more-btn {
        font-size: 18px;
    }
    .form-wrap .top h4 {
        /* margin-bottom: 0; */
        margin-bottom: 30px;
    }
    .form-wrap :is(.top, .bbs-area) {
        display: flex;
        flex-direction: column;
        gap: 0px;
    }
    .form-wrap {
        margin-top: 0;
    }
    #ca01 .board_wrapper {
        padding: 30px;
    }
}

/* 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, minmax(0, 1fr));
        gap: 20px 30px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .main_popup_contents {
        padding: 10px;
    }

    :is(#find_idpw, .join_wrapper, .login_wrapper) {
        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 */
:is(.form-wrap, form) #list_btn {
    display: none;
}

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

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