/* プライバシーポリシーページ専用スタイル */

/* プライバシーコンテンツ */
.privacy-content {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    margin-bottom: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-section h2 {
    color: var(--text-main);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.privacy-section h2::before {
    content: '';
    display: block;
    width: 6px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.privacy-section h3 {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.privacy-section h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    font-weight: 600;
}

.privacy-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.7;
    position: relative;
    list-style: none;
}

.privacy-section li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.privacy-section a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.privacy-section a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.third-party-service {
    background: rgba(255, 255, 255, 0.5);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.third-party-service h4 {
    margin-top: 0;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .privacy-content {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 2rem;
        border-radius: var(--radius-lg);
    }

    .privacy-section h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 1.5rem;
    }

    .privacy-section {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.1rem;
    }
}