.sub_container{
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding-top: 80px;
    padding-bottom: 60px;
    position: relative;
}
.page-wrap{
    position: relative;
}
.page-wrap::before{
    width: 100%;
    background: var(--Foundation-Blue-blue-50, #EEF3FD);
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 160px;
    z-index: -1;
}

.left_nav{
    width: 240px;
    .left_nav_tit{
        border-radius: 10px;
background: var(--blue-500, #598AE6);
display: flex;
padding: 20px;
min-height: 120px;
flex-direction: column;
justify-content: center;
align-items: center;
> h4{
    color: var(--white, #fff);
    font-weight: 700;
}
  

}
.left_nav_ul{
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    gap: 10px;
    > li > a{
        border-radius: 10px;
        color: var(--light-300, #D9DEE1);
border: 1px solid var(--light-300, #D9DEE1);
display: flex;

font-weight: 700;
width: 100%;
height: 60px;
padding: 20px;
text-align: left;
    }
    > li.active > a {
border: 1px solid var(--blue-500, #598AE6);
color: var(--blue-500, #598AE6);
    }
    > li > a:hover{
        background-color: var(--blue-400);
        color: var(--white);
    }
}
}
.mobil_sub_menu{
    display: none;
    position: absolute;
    top: 0;
    width: 100%;
    gap: 0;
    left: 0;
    > *{
        width: 50%;
        position: relative;
    }

    .depth_2{
        border-left: 1px solid var(--border);
    }
    button{
        border: 0;
        border-bottom: 1px solid var(--border);
        
        background-color: var(--white);
        width: 100%;
        display: inline-block;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.875rem;
        > i{
            font-size: 0.75rem;
            transition: 0.3s;
        }
    }
    button.show{
        background-color: var(--light-50);
        border-bottom: 1px solid var(--blue-500);
        > i{
            transform: rotate(180deg);
        }
    }
    .dropdown-menu{
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        > li a{
            padding: 0.75rem 1rem;
            display: block;
        }
        > li a:hover {
            color: var(--blue-500);
        }
        li + li {
            border-top: 1px solid var(--border);
        }
    }
}
@media (max-width:996px) {
    .left_nav{
        display:none;
    }
    .mobil_sub_menu{
    display: flex;
    }
}

.sub_cont{
    width: 100%;
}
.sub_header{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    > h1{
        font-weight: 700;
    }
}
.sub_body{
    margin-top: 40px;
}

.breadcrumb{
    display: flex;
align-items: center;
gap: 4px;
margin-bottom: 0;
    .home{
        width: 20px;
        height: 20px;
        background-size: 20px;
        background-repeat: no-repeat;
        background-position: center;
        display: block;
          background-color: var(--sub_text, #5B5B5B);       /* 아이콘 색 */
  -webkit-mask: url('/theme/bootstrap5-basic/img/bread_home.svg') no-repeat center / contain;
          mask: url('/theme/bootstrap5-basic/img/bread_home.svg') no-repeat center / contain;
    }
    li + li:before{
        width: 20px;
        height: 20px;
        background-image: url('/theme/bootstrap5-basic/img/bread_arrow.svg');
        background-size: 20px;
        background-repeat: no-repeat;
        background-position: center;
        display: inline-block;
        content: '';
    }
    li{
        display: flex;
        align-items: center;
    }
    a:hover{
        color: var(--blue-500);
    }
    .home:hover{
        background-color: var(--blue-500);
    }
}
.sound-only{
    display: none;
}

.btn-search{
    width: 48px;
    height: 48px;
    display: inline-flex;
    padding: 0;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.icon{
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: center;
    display: block;
}
.icon.search{
    background-image: url('/theme/bootstrap5-basic/img/search_btn.svg');
}

@media (max-width: 767.98px) {
    .sub_container {
    padding-top: 50px;
}
    .sub_header {
        flex-direction: column-reverse;
        > h1 {
        margin-top: 20px;
    }
    }
    .btn-search {
    width: 40px;
    height: 40px;
}
.breadcrumb {
    gap: 0;
}
}