/* ============ プライバシーポリシー専用（衝突回避のためスコープ） ============ */
.policy-page {
    --policy-bg: #ffffff;
    /* 白背景 */
    --policy-text: #000000;
    /* 黒文字 */
    --policy-muted: #4b4b4b;
    /* 補助テキスト */
    --policy-accent: #7D00BE;
    /* アクセントカラー */
    --policy-width: 920px;
    --policy-gap: 28px;
    /* セクション間隔 */
}

.policy-page * {
    box-sizing: border-box;
}

.policy-page body {
    margin: 0;
}

/* ラッパ */
.policy-wrap {
    max-width: var(--policy-width);
    margin: 6vh auto;
    padding: 20px;
    color: var(--policy-text);
    font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
    line-height: 1.85;
    font-size: 0.9rem;
    background: var(--policy-bg);
}

/* ヘッダ */
.policy-head {
    text-align: left;
    margin-bottom: 18px;
}

.policy-head h1 {
    margin: 0 0 4px;
    font-size: 1.4rem;
    letter-spacing: .02em;
}

.policy-meta {
    margin: 0;
    color: var(--policy-muted);
    font-size: .95rem;
}

/* セクション */
.policy-sec {
    margin: var(--policy-gap) 0;
}

.policy-sec h2 {
    position: relative;
    display: flex;
    align-items: center;
    gap: .6em;
    margin: 0 0 12px;
    padding: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.policy-sec h2::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--policy-accent);
    border-radius: 2px;
}

.policy-sec h2>span {
    color: var(--policy-accent);
    font-weight: 700;
}

.policy-sec h3 {
    margin: 14px 0 6px 14px;
    font-size: 1.0rem;
}

.policy-sec p {
    margin: 8px 0;
}

.policy-sec ul,
.policy-sec ol {
    margin: 8px 0 8px 14px;
}

.policy-sec li {
    margin: 4px 0;
}

.policy-address {
    font-style: normal;
    background: #fafafa;
    padding: 10px 12px;
    border-radius: 6px;
}

/* 改訂履歴 */
.policy-revision {
    margin: 8px 0 0 1.2em;
}

.policy-actions {
    text-align: center;
    margin-top: 32px;
}

.policy-btn {
    display: inline-block;
    min-width: 220px;
    text-align: center;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: var(--policy-accent);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}

.policy-btn:hover {
    filter: brightness(1.03);
}

.policy-page a,
.policy-page a:visited,
.policy-page a:hover,
.policy-page a:active {
    color: inherit;
    text-decoration: none;
}

/* レスポンシブ */
@media (max-width: 560px) {
    .policy-wrap {
        margin: 3vh auto;
        padding: 16px;
    }
}