@charset "UTF-8";
.privacy_policy {
    background-color: #bfbfbf;
    padding-bottom: 100px;
}

.privacy_policy h1 {
    font-size: 1.3rem;
    display: flex;
    align-items: center; /* 垂直中心 */
    justify-content: center; /* 水平中心 */
    margin-bottom: 10px;
}
.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: 15rem; /* 線の長さ */
}
.privacy_policy h1:before {
    margin-right: 5rem; /* 文字の右隣 */
}
.privacy_policy h1:after {
    margin-left: 5rem; /* 文字の左隣 */
}
.privacy_text{
    width: 60%;
    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: #999;
}

@media screen and (max-width: 768px) {

    .privacy_policy h1 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    .privacy_policy h1:before, .privacy_policy h1:after {
        border-top: 1px solid;
        content: "";
        width: 3rem; /* 線の長さ */
    }
    .privacy_policy h1:before {
        margin-right: 1rem; /* 文字の右隣 */
    }
    .privacy_policy h1:after {
        margin-left: 1rem; /* 文字の左隣 */
    }
    .privacy_text{
        width: 90%;
        line-height: 1.8rem;
        padding: 10px 0 30px;
        font-size: 0.9rem;
    }
}