.privacy-wrapper {
    width: 60%;
    margin: 8rem auto 32rem;
    line-height: 2.4;
}

.privacy h1 {
    margin-bottom: 24rem;
    text-align: center;
}

.privacy-policy-wrapper {
    text-align: left;
    margin: 6rem 0;
}
.privacy-policy-wrapper h2 {
    font-size: 2.5rem;
}
ul {
    padding-left: 20px; /*左を合わせるため*/
}
.privacy-policy-wrapper li {
    margin-bottom: 1.6rem;
    list-style: disc;
    font-size: 2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #000000;
}

th, td {
    padding: 10px;
    text-align: left;
    vertical-align: middle;
    font-size: 1.4rem;
}

td:first-child{
    background-color: #EDEDED; /* 任意の背景色 */
    font-weight: 700;
    vertical-align: middle;
}
th {
    background-color: #EDEDED;
    font-weight: 700;
}

.privacy-policy-wrapper .title {
    font-weight: 700;
    font-size: 2.5rem;
}

.policy-footer {
    text-align: right;
}

@media screen and (max-width: 768px) {
.privacy-wrapper {
    width: 90%;
    margin: 4rem auto 8rem;
    line-height: 2.2;
}
.privacy-policy-wrapper {
    margin: 2.4rem 0;
}
.privacy-policy h1 {
    margin-bottom: 8rem;
}

.privacy-policy-wrapper h2 {
    font-size: 1.6rem;
}
.privacy-policy-wrapper .title{
    font-size: 1.6rem;
}
.privacy-policy-wrapper li {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}
table, thead, tbody, th, td, tr {
    display: block;
}

thead {
    display: none;
}

td {
    padding-left: 1.4rem;
    text-align: left; 
    border: none;
}

td:first-child {
    padding-left: 1.4rem;
    text-align: left; /* ここも追加！ */
}

td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    font-weight: bold;
    white-space: nowrap;
}
}