/* =========================================
   プライバシーポリシーページ用スタイル
   ========================================= */
.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 15px 80px;
}

.page-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 15px rgba(43, 234, 255, 0.4);
    letter-spacing: 0.05em;
}

/* 更新日時 */
.last-updated {
    color: #8f8f9a;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.privacy-content {
    background-color: #12141c;
    border: 1px solid #2a2d3d;
    border-radius: 12px;
    padding: 40px;
    color: #b9bdcc;
    line-height: 1.8;
}

.privacy-content h2 {
    color: #efeff1;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #2a2d3d;
    position: relative;
}

.privacy-content h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #2beaff;
    box-shadow: 0 0 8px rgba(43, 234, 255, 0.8);
}

.privacy-content h3 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 1.5rem 0 0.8rem;
    padding-left: 0.7rem;
    border-left: 3px solid #2beaff;
}

.privacy-content a {
    color: #2beaff;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.privacy-content a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(43, 234, 255, 0.8);
}

.privacy-content p,
.privacy-content ul {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.privacy-content ul {
    padding-left: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 24px 16px;
    }
}
