/* =========================================
   1. 共通設定 (header-footer.css で管理)
   ========================================= */

/* =========================================
   プライバシーポリシー専用スタイル
   ========================================= */
a { text-decoration: none; color: var(--color-main); }
a:hover { text-decoration: underline; }

.container {
    max-width: 850px;
    margin: 3rem auto;
    padding: 0 20px;
}

.page-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    font-weight: 700;
}

/* 白いペーパー風のコンテンツエリア */
.privacy-content {
    background-color: var(--color-white);
    padding: 3rem 4rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.intro-text {
    margin-bottom: 3rem;
    color: #555;
}

/* 各セクション */
.policy-section {
    margin-bottom: 2.5rem;
}

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

.policy-section h3 {
    font-size: 1.3rem;
    color: var(--color-main);
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.policy-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background-color: var(--color-main);
}

.policy-section p {
    margin-bottom: 1rem;
    color: #444;
}

/* リストのスタイル */
.policy-list {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: #444;
}

.policy-list.num-list {
    list-style-type: decimal;
}

.policy-list.disc-list {
    list-style-type: disc;
}

.policy-list li {
    margin-bottom: 0.5rem;
}

.sub-list {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
    list-style-type: circle;
}

/* 注意書き */
.note {
    font-size: 0.9rem;
    color: #d9534f;
    background-color: #fdf2f2;
    padding: 10px 15px;
    border-left: 4px solid #d9534f;
    border-radius: 4px;
    margin-top: 10px;
}

/* =========================================
   メディアクエリ (header-footer.css で管理)
   ========================================= */
@media screen and (max-width: 768px) {
    .container { margin: 2rem auto; }
    .page-title { font-size: 1.8rem; }
    .privacy-content { padding: 2rem 1.5rem; }
    .policy-section h3 { font-size: 1.15rem; }
}
