@charset "UTF-8";
.privacy_policy {
    background-color: #eeeeee;
    padding-bottom: 100px;
}
.privacy_header{
    width: 70%;
    margin: 0 auto;
}
.privacy_policy p{
    margin: 0 30px;
}
.privacy_policy h1 {
    font-size: 1.3rem;
    display: flex;
    align-items: center; /* 垂直中心 */
    justify-content: center; /* 水平中心 */
    margin-bottom: 10px;
    white-space: nowrap; /* テキストの改行を防止 */
}
.privacy_header p{
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 50px;
    font-style: italic;
}
.privacy_policy h1:before, .privacy_policy h1:after {
    border-top: 1px solid;
    content: "";
    width: 100%; /* 線の長さ */
}
.privacy_policy h1:before {
    margin-right: 5%; /* 文字の右隣 */
}
.privacy_policy h1:after {
    margin-left: 5%; /* 文字の左隣 */
}
.privacy_text{
    width: 70%;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}
.privacy_text h2{
    font-size: 1.2rem;
    margin: 70px 0 30px;
    padding: 20px 0 20px 30px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    background-color: #bfbfbf;
}

.company_info{
    /* width: 60%; */
    margin: 0 30px;
    padding: 0;
    font-size: 1rem;
    color: #333;
    border: none;
    line-height: 1.7rem;
}
.company_info tr,.company_info th,.company_info td{
    border: none;
    margin: 0;
    padding: 0;
}
.company_info tr{
    display: block;
    margin-bottom: 10px;
}
.company_info th{
    /* テキスト両端揃え */
    text-align-last: justify;
    width: fit-content;
}

@media screen and (max-width: 768px) {
    .privacy_header{
        width: 95%;
    }

    .privacy_policy h1 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    .privacy_policy h1:before, .privacy_policy h1:after {
        border-top: 1px solid;
        content: "";
        width: 100%; /* 線の長さ */
    }
    .privacy_policy h1:before {
        margin-right: 1rem; /* 文字の右隣 */
        margin-left: 20px;
    }
    .privacy_policy h1:after {
        margin-left: 1rem; /* 文字の左隣 */
        margin-right: 20px;
    }
    .privacy_text{
        width: 95%;
        line-height: 1.8rem;
        padding: 10px 0 30px;
        font-size: 0.9rem;
    }
    .company_info{
        font-size: 0.9rem;
    }
}