:root { color-scheme: light; }
.privacy {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, Arial, sans-serif;
    line-height: 1.8;
    color: #111;
    background: #fff;
}

privacy.policy {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 16px;
}

h3 {
    font-size: 1.75rem;
    margin: 0 0 16px;
}

p { margin: 0 0 16px; }

ol.policy {
    padding-left: 1.4em;
    margin: 0;
}

ol.policy > li {
    margin: 24px 0;
}

ol.policy > li > h2 {
    font-size: 1.15rem;
    margin: 0 0 10px;
}

ul {
    margin: 8px 0 0;
    padding-left: 1.2em;
}

.note {
    margin-top: 12px;
    padding: 12px 14px;
    background: #f6f6f6;
    border-left: 4px solid #ccc;
}

/* モーダルの背景 */
.modal {
    display: none; /* デフォルトでは非表示 */
    position: fixed; /* 画面に固定 */
    z-index: 1; /* 他の要素の上に表示 */
    left: 0;
    top: 0;
    width: 100%; /* 全幅 */
    height: 100%; /* 全高さ */
    overflow: auto; /* スクロール可能 */
    background-color: rgb(0,0,0); /* 背景色 */
    background-color: rgba(0,0,0,0.4); /* 透過 */
}

/* モーダルコンテンツ */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 中央に配置 */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* 幅 */
}
