@charset "utf-8";
@import url("header-sub.css");
@import url("footer.css");

/* 서브페이지 타이틀 */
#subtitle {
    width: 100%;
    height: 150px;
}

.subtitle {
    height: 100px;
    background: #4b2f48;
    text-align: center;
    color: #fff;
    line-height: 100px;
    font-size: 20px;
}

.submenu_bar {
    border-bottom: 1px solid #ddd;
}

.sub_inner {
    position: relative;
    width: 1200px;
    height: 50px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.sub_inner img {
    width: 20px;
    padding-top: 2px;
    margin-left: 20px;
}

.sub_inner .home img {
    margin-right: 10px;
}

.sub_inner .menu img {
    margin-top: 4px;
    width: 14px;
    height: 16px;
}

.sub_inner .home {
    position: relative;
    padding-right: 15px;
}

.sub_inner .home::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background-color: #333;
}

.sub_inner div a {
    display: flex;
    justify-content: space-between;
}

.sub_inner .menu {
    position: relative;
    padding: 0 15px;
}

.sub_inner .menu::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background-color: #333;
}

/* 서브페이지 내용 */
#container {
    width: 1200px;
    margin: 30px auto 100px;
}