/* --------------------------------------------
   各項目 (.privacy-item)
   -------------------------------------------- */
.privacy-item {
    margin-bottom: 60px; /* 項目ごとの間隔 */
}
.privacy-item:last-child {
    margin-bottom: 0; /* 最後の項目は下の余白なし */
}

/* 見出し (1. 個人情報の安全管理 等) */
.privacy-item h2 {
    border-bottom: 1px solid #707070; /* 下線 */
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* 子見出し ((1) 個人情報の取得 等) */
.privacy-item h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* 本文テキスト */
.privacy-item p {
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify; /* 両端揃え（きれい見えます） */
}

/* リスト (①〜⑤) */
.privacy-item ul {
    list-style: none; /* デフォルトの黒丸を消す */
    padding-left: 0;
    margin-top: 15px;
}

.privacy-item ul li {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 8px;
    text-indent: -1em; /* 2行目以降の字下げ調整 */
    padding-left: 1em;
}

/* --------------------------------------------
   お問い合わせ窓口ボックス (.contact-info)
   -------------------------------------------- */
.contact-info {
    background-color: #f9f9f9; /* 背景色 */
    border: 1px solid #ddd;    /* 枠線 */
    padding: 30px;
    margin-top: 30px;
}

.contact-info p {
    margin-bottom: 0;
    font-weight: 500;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .content-body {
        width: 100%;
    }
    .privacy-item {
        margin-bottom: 40px;
    }
    .privacy-item h2 {
    }
    .contact-info {
        padding: 20px;
    }
}