.table_privacy_container {
    width: 100%;
    max-width: 100vw;
    overflow-x: auto;
    box-sizing: border-box;
}

.table_privacy {
    min-width: 600px;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #dddddd;
    box-sizing: border-box;
}

.table_privacy th:nth-child(1) {
    min-width: 8rem;
}
.table_privacy th:nth-child(2) {
    min-width: 8rem;
}
.table_privacy th:nth-child(3) {
    min-width: 16rem;
}

.table_privacy th,
.table_privacy td {
    border: 1px solid #dddddd;
    padding: 16px;
    vertical-align: middle;
    /* 修正: center→middle */
}

.table_privacy th {
    background-color: #f5f5f5;
}

.table_privacy td ul {
    margin: 0;
    padding: 0;
}

/* スマホ時: 横スクロール時に親のみスクロール、bodyやhtml幅が伸びない */
@media screen and (max-width: 767px) {
    .table_privacy_container {
        max-width: 100vw;
        padding-bottom: 1rem;
    }
    .table_privacy {
        min-width: 600px;
    }
}