/* 레이아웃 */
#container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 100px !important;
}

#wrap_content,
.wrap_sub,
.sub_contents {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.sub_contents {
    display: flex;
    max-width: 1420px;
    gap: 40px
}

.right_side {
    flex: 1;
    min-width: 0;
}

.contents,
.contents-bottom {
    width: 100%;
    box-sizing: border-box;
}

.contents-bottom-wrap {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    box-sizing: border-box;
}
.contents-bottom-wrap .left,
.contents-bottom-wrap .top {
    min-width: 200px;
}

.contents-bottom-wrap .right,
.contents-bottom-wrap .bottom {
    flex: 1;
    min-width: 300px;
}

/* 사이드메뉴 */
.side-menu {
    width: 200px;
    margin-top: 25px;
}

.side-menu-header {
    background-image: url(/2025/images/common/side-nav-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 102px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 10px 0 0;
}

.side-menu-header span {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}

.side-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-menu-list li {
    border: 1px solid #ddd;
    border-top: none;
}

.side-menu-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    transition: background-color 0.2s, color 0.2s;
}

.side-menu-list li a:hover {
    background-color: #f0f8ff;
    color: #283D72;
}

.right-icon {
    font-size: 20px;
    color: #999;
    transition: color 0.2s;
}

.side-menu-list li a:hover .right-icon {
    color: #00487C;
}

.side-menu-list li.active a {
    background-color: #f0f5fb;
    color: #003366;
    font-weight: bold;
}

.side-menu-list li.active .right-icon {
    color: #003366;
}
/* 사이드메뉴 끝 */

/* 헤더 이미지 */
.sub-visual {
    display: flex;
    flex-direction: column;
    min-height: 260px;
    align-items: center;
    background-image: url('/2025/images/common/sub-visual1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sub-title-img {
    margin-top: 135px;
    width: clamp(300px, 100vw, 900px);
}

/* 헤더 이미지 끝 */

/* right_side */
.contents .row>* {
    padding: 0 !important;
}

.contents-top {
    padding: 0px;
}

.contents-bottom {
    margin-top: 30px;
}

.contents-bottom .row .right {
    padding-left: 20px !important;
}

.right_side {
    float: none;
    width: 100%;
    overflow: hidden;
    padding: 0;
    background: #fff;
    border:none;
}

.sub_contents h1.page_title {
    text-align: left;
    font-size: 28px;
    padding: 0px 0px 10px;
    color: #283D72;
    font-family: 'Pretendard';
    font-weight: bold;
    line-height: normal;
    border-bottom: 4px solid #283D72;
}

.sub_contents h1.page_title::after {
    content: "";
    background: url(/2025/images/common/sub_title.png) no-repeat 0px 0px;
    background-size: contain;
    width: 90px;
    height: 50px;
    display: inline-block;
    position: relative;
    float: left;
} 

.sub-title-section {
    text-align: left;
    margin-bottom: 15px;
}

.sub-title {
    color: #303d4e;
    font-size: clamp(18px, 4vh, 20px);
    font-weight: bold;
    position: relative;
    padding-left: 18px;
}

.sub-title::after {
    display: block;
    content: "";
    width: 9px;
    height: 9px;
    background: navy;
    position: absolute;
    left: 0;
    top: 14px;
    z-index: 2;
}

.sub-title::before {
    display: block;
    content: "";
    width: 9px;
    height: 9px;
    background: #03a9f4;
    position: absolute;
    left: 0;
    top: 3px;
}

/* 페이지 위치 표시 */
.breadcrumb {
margin-bottom: 0px;
    background-color: #fff;
    margin-left: 0px;
    padding-left: 0px;
    line-height: 0px;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    font-size: 14px;
    color: #888;
}

.breadcrumb .home-icon,
.breadcrumb .right-icon {
    color: #888;
    font-size: 16px;
}
/* /.right_side */

/* left_side */
.left_side {
    margin-top:50px;
    width: fit-content !important;
}
/* /.left_side */

/* 반응형 처리 */
@media (max-width: 1439px) {
    .left_side {
        display: none;
    }
}

/* 반응형 처리 */
@media (max-width: 1439px) {
    .right_side .contents {
        padding: 0 20px;
    }
}
