/* css/policy.css */

.policy-main {
    background-color: var(--bg-color); /* 薄いグレー/ブルー背景 */
    padding: 4rem 1.5rem;
    min-height: 100vh;
}

.policy-container {
    max-width: 860px;
    margin: 0 auto;
    background: #fff;
    padding: 3.5rem 4rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid var(--border-subtle);
}

.policy-container h1 {
    font-size: 2.2rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 1.5rem;
    font-weight: 700;
}

.policy-intro {
    margin-bottom: 3rem;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    font-size: 1.4rem;
    color: var(--color-main);
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #e2e8f0;
}

.policy-section h3 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.policy-container p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-container ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-container li {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.4rem;
    list-style-type: disc;
}

/* 注釈・補足用スタイル */
.policy-note {
    background-color: #f8fafc;
    border-left: 4px solid var(--color-main);
    padding: 1rem 1.2rem;
    margin: 1rem 0 1.5rem 0;
    font-size: 0.95rem;
    color: #475569;
    border-radius: 0 8px 8px 0;
    line-height: 1.6;
}

/* リンク用スタイル */
.policy-link {
    color: var(--color-main);
    text-decoration: none;
    font-weight: 500;
}

.policy-link:hover {
    text-decoration: underline;
}

/* レスポンシブ対応（スマホ表示） */
@media (max-width: 768px) {
    .policy-container {
        padding: 2rem 1.5rem;
    }

    .policy-container h1 {
        font-size: 1.4rem;
    }

    .policy-section h2 {
        font-size: 1.25rem;
    }
}