.overview-container {
    margin: 20px;
    width: 60%;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table,
th,
td {
    border: 2px solid #ddd;
    padding: 8px;
}

.info-header {
    background-color: #f5c61d4b;
    font-weight: bold;
    text-align: center;
}

.info-buiiness {
    padding-top: 10px;
}

.service-list2 {
    display: flex;
    justify-content: space-between;
}

.service-item2 {
    max-width: 30%;
}

.officer-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    /* リストのデフォルトのマージンとポイントをリセット */
}

.officer-item {
    max-width: 45%;
    /* 横並びにするための幅調整 */
}


/* +++++++++++++  +++++++++++++  +++++++++++++  +++++++++++++  
 レスポンシブ SP 設定
  +++++++++++++  +++++++++++++  +++++++++++++  +++++++++++++ */

@media screen and (max-width: 768px) {
    .overview-container {
        margin: 10px;
        width: 95%;
        padding-top: 10px;
    }
    table,
    th,
    td {
        border: 2px solid #ddd;
        padding: 8px;
        font-size: 11px;
    }
    .officer-list {
        flex-direction: column;
    }
    .officer-item {
        max-width: 100%;
    }
    .officer-img {
        margin: 0 auto;
        width: 100%
    }
}