.bg-image {
    background-image: url("/static/assets/img/cowork2.jpg");
    background-size: cover; /* 背景を要素にフィットさせる */
    background-position: center; /* 中央に配置 */
    background-repeat: no-repeat; /* 繰り返しを防止 */
    height: 750px; /* 必要に応じて高さを設定 */
    width: 100%; /* 必要に応じて幅を設定 */
    margin: 0;
    padding:20px;
}


.sidebar{
    height:150vh;
    width:250px;
    background-color: #eaf5fc;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top:20px;
}

.sidebar a {
    color: #555 !important;
    padding: 15px;
    padding-left:25px;
    text-decoration: none;
    font-size:18px;
    color: #ecf0f1;
    width: 100%;
    border-bottom: 1px #9dcbd4 solid;
}

.main_contents{
    padding-right:10%;
    padding-top:30px;
}