section.policy header {
    position: static;
    display: block;
    align-items: normal;
    padding: 0;
    width: 100%;
}

/* プライバシーポリシーセクション */
section.policy {
    position: relative;
    width: 100%;
    padding: 80px 5% 120px;
    background-color: #fff;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

section.policy *:not(:first-child) {
    margin-top: 0;
}

/* ページタイトル */
section.policy header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(52, 152, 219, 0.1);
    position: relative;
}

section.policy header::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #3498db;
}

section.policy header p:first-child {
    font-size: 14px;
    color: #3498db;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

section.policy header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

section.policy header h2 + p {
    font-size: 18px;
    color: #7f8c8d;
    font-weight: 400;
    margin-bottom: 0;
}

/* 導入文 */
section.policy header + .group {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 50px;
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.1);
}

/* セクション見出し */
section.policy .group .strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(52, 152, 219, 0.2);
    position: relative;
}

section.policy .group .strong::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #3498db;
}

section.policy .group p {
    line-height: 1.5;
}

/* ホバーエフェクト付きのカード風セクション */
section.policy .group {
    background-color: #fff;
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(44, 62, 80, 0.05);
}

section.policy .group:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
    border-color: rgba(52, 152, 219, 0.3);
}

/* 重要なセクションのハイライト */
section.policy .highlight-section {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.03), rgba(255, 255, 255, 0.8));
    border-left: 4px solid #3498db;
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

/* 装飾要素 */
section.policy::before {
    content: "";
    position: absolute;
    top: 40px;
    right: 5%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), transparent);
    border-radius: 50%;
    z-index: -1;
}

section.policy::after {
    content: "";
    position: absolute;
    bottom: 60px;
    left: 5%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.08), transparent);
    border-radius: 50%;
    z-index: -1;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    section.policy {
        padding: 60px 6% 100px;
    }

    section.policy header h2:nth-child(2) {
        font-size: 32px;
    }

    section.policy .group .strong {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    section.policy {
        padding: 40px 6% 80px;
    }

    section.policy header {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    section.policy header h2:nth-child(2) {
        font-size: 28px;
    }

    section.policy header + .group {
        padding: 20px;
        font-size: 15px;
    }

    section.policy .group {
        padding: 20px;
    }

    section.policy .group .strong {
        font-size: 16px;
        margin: 30px 0 15px 0;
    }
}

@media (max-width: 576px) {
    section.policy header h2:nth-child(2) {
        font-size: 24px;
    }

    section.policy {
        padding: 0 10px;
    }
}
