/* 조직도 스타일시트 */
.chart_wrap{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

.chart_inner p{
    margin: 10px 0;
    line-height: 50px;
    font-weight: 400;
    text-align: center;
    border: 1px solid gray;
    width: 210px;
}
.inner_top{
    background-color: rgb(18, 27, 56);
    color: white;
}
@media screen and (max-width:1000px) {
    .chart_wrap{
        padding: 0 20px;
        box-sizing: border-box;
        flex-wrap: wrap;
        /* justify-content: space-around; */
    }
}
@media screen and (max-width:500px){
    .chart_inner{

        width: calc(50% - 10px);
    }
    .chart_inner p{
        font-size: 14px;
        white-space: nowrap;
        width: 100%;
    }
}