/* css/policy.css */

.policy-main {
    background-color: #fff; /* 白い背景で読みやすく */
    padding-top: 60px;
    padding-bottom: 60px;
}

.policy-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    color: #343a40;
}

.last-updated {
    text-align: center;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.policy-content {
    line-height: 1.8;
    color: #333;
    max-width: 800px; /* 長文コンテンツは読みやすい幅に制限 */
    margin: 0 auto;
    padding: 20px;
    background-color: #fefefe;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.policy-content h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #007bff; /* セクション見出しを目立たせる */
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 5px;
}

.policy-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #495057;
}

.policy-content p {
    margin-bottom: 1.5em;
    text-align: justify; /* 両端揃えで見た目を整える */
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 1.5em;
    padding-left: 25px;
}

.policy-content li {
    margin-bottom: 0.8em;
}