/*
 * privacypolicy.css - プライバシーポリシーページ
 * Version: 1.0
 * 法的コンテンツ向けのクリーンなレイアウト
 */

/* ===================================
   Page Base
=================================== */
.ewrd-page-privacypolicy {
    background: #fff;
}

/* ===================================
   ページコンテンツ
=================================== */
.ewrd-page-section {
    padding: var(--section-py, clamp(96px, 12vw, 140px)) 0;
}

.ewrd-page-content {
    max-width: 800px;
    margin: 0 auto;
}

/* ===================================
   導入文
=================================== */
.ewrd-page-lead {
    font-size: 1rem;
    line-height: 2;
    color: var(--text-sub, #5A5A5A);
    margin-bottom: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-light, #E8EBF0);
    letter-spacing: 0.04em;
}

/* ===================================
   ポリシーセクション
=================================== */
.ewrd-policy-section {
    margin-bottom: 56px;
}

.ewrd-policy-section:last-child {
    margin-bottom: 0;
}

.ewrd-policy-section h2 {
    font-family: var(--font-serif, 'Noto Serif JP', serif);
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    font-weight: 700;
    color: var(--secondary-color, #1A2B48);
    line-height: 1.5;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-light, #E8EBF0);
}

.ewrd-policy-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color, #1A2B48);
    line-height: 1.5;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    padding-left: 12px;
    border-left: 3px solid var(--accent-color, #B8942E);
}

.ewrd-policy-section p {
    font-size: var(--fs-body, 0.9375rem);
    line-height: var(--lh-body, 1.95);
    color: var(--text-main, #2C2C2C);
    margin-bottom: 1.5em;
    letter-spacing: var(--ls-body, 0.04em);
}

.ewrd-policy-section ul {
    list-style: disc;
    padding-left: 1.5em;
    margin-bottom: 1.5em;
}

.ewrd-policy-section ol {
    list-style: decimal;
    padding-left: 1.5em;
    margin-bottom: 1.5em;
}

.ewrd-policy-section li {
    font-size: var(--fs-body, 0.9375rem);
    line-height: 1.85;
    color: var(--text-main, #2C2C2C);
    margin-bottom: 0.4em;
    letter-spacing: var(--ls-body, 0.04em);
}

/* ===================================
   レスポンシブ
=================================== */
@media (max-width: 850px) {
    .ewrd-page-section {
        padding: var(--section-py-sm, clamp(72px, 8vw, 96px)) 0;
    }
}

@media (max-width: 600px) {
    .ewrd-page-lead {
        margin-bottom: 40px;
        padding-bottom: 32px;
    }

    .ewrd-policy-section {
        margin-bottom: 40px;
    }
}
