@charset "UTF-8";


/* =========================================================
   서브페이지 공통 레이아웃
   회사소개 / 서비스안내 / 상담문의 / 고객지원
   ========================================================= */

.sub-page {
    width: 1280px;
    margin: 0 auto;
}


/* 상단 배너 */
.sub-banner {
    width: 1280px;
    height: 130px;

    margin: 0;
    padding: 0;

    box-sizing: border-box;

    overflow: hidden;
    background-color: #f4f8fc;
}

.sub-banner img {
    display: block;

    width: 1280px;
    height: 130px;

    margin: 0;
    padding: 0;

    border: 0;
}

/* 왼쪽 메뉴 + 오른쪽 콘텐츠 */

.sub-layout {
    width: 1280px;

    display: flex;
    align-items: flex-start;
}


/* 왼쪽 메뉴 */

.sub-sidebar {
    width: 190px;
    flex: 0 0 190px;
}


/* 왼쪽 메뉴 제목 */

.sub-sidebar-title {
    height: 55px;

    display: flex;
    align-items: center;

    padding-left: 20px;

    box-sizing: border-box;

    font-size: 22px;
    font-weight: 700;
    color: #222;

    border-bottom: 2px solid #222;
}


/* 왼쪽 메뉴 */

.sub-sidebar-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}


.sub-sidebar-menu li {
    height: 36px;
    border-bottom: 1px solid #ddd;
}


.sub-sidebar-menu li a {
    display: flex;
    align-items: center;

    width: 100%;
    height: 100%;

    padding-left: 10px;

    box-sizing: border-box;

    font-size: 14px;
    color: #333;

    text-decoration: none;
}


.sub-sidebar-menu li a::before {
    content: "▸";
    margin-right: 5px;
    font-size: 9px;
}


.sub-sidebar-menu li a:hover {
    color: #1769d5;
}


.sub-sidebar-menu li.active a {
    color: #1769d5;
    font-weight: 600;
}


/* 오른쪽 콘텐츠 */

.sub-content {
    flex: 1;
    min-width: 0;
    margin-left: 20px;
}


/* Breadcrumb */

.sub-breadcrumb {
    height: 42px;

    display: flex;
    align-items: center;

    gap: 8px;

    box-sizing: border-box;

    border-bottom: 1px solid #ddd;

    font-size: 12px;
    color: #777;
}


.sub-breadcrumb strong {
    color: #333;
}


/* 본문 */

.sub-body {
    padding: 18px 19px 60px;
    box-sizing: border-box;
}


/* 본문 내용 영역 */

.sub-content-box {
    width: 100%;
    min-height: 500px;

    box-sizing: border-box;

    background-color: #f4f8fc;

    border: 1px solid #e3eaf2;
}




