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

.privacy-content {
    max-width: 820px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    padding: 60px;
    position: relative;
}

.privacy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-blue), var(--header-teal));
}

.privacy-intro {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-gray);
}

.privacy-intro p {
    font-size: 16px;
    color: #2c3e50;
    line-height: 2.1;
    letter-spacing: 0.3px;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section:last-of-type {
    margin-bottom: 48px;
}

.privacy-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.privacy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-blue), var(--header-teal));
    border-radius: 3px;
}

.privacy-section p {
    font-size: 15px;
    color: #2c3e50;
    line-height: 2;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

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

.privacy-section ul {
    list-style: none;
    padding: 0;
    margin-top: 12px;
}

.privacy-section ul li {
    font-size: 15px;
    color: #2c3e50;
    line-height: 1.9;
    padding: 8px 0 8px 24px;
    position: relative;
    border-bottom: 1px solid rgba(224, 228, 233, 0.5);
}

.privacy-section ul li:last-child {
    border-bottom: none;
}

.privacy-section ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 18px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-blue), var(--header-teal));
    border-radius: 50%;
}

.privacy-section a {
    color: var(--primary-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: var(--header-teal);
}

.privacy-contact-info {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 24px 30px;
    margin-top: 16px;
    border-left: 4px solid var(--primary-blue);
}

.privacy-contact-info p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 4px;
}

.privacy-contact-info p:last-child {
    margin-bottom: 0;
}

.privacy-contact-info strong {
    font-weight: 700;
}

.privacy-date {
    text-align: right;
    padding-top: 32px;
    border-top: 2px solid var(--border-gray);
}

.privacy-date p {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

/* レスポンシブ - タブレット */
@media (max-width: 968px) {
    .privacy-content {
        padding: 40px;
    }

    .privacy-section h2 {
        font-size: 18px;
    }
}

/* レスポンシブ - モバイル */
@media (max-width: 768px) {
    .privacy-content {
        padding: 28px 20px;
        border-radius: 12px;
    }

    .privacy-content::before {
        height: 4px;
    }

    .privacy-intro {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }

    .privacy-intro p {
        font-size: 15px;
        line-height: 1.95;
    }

    .privacy-section {
        margin-bottom: 32px;
    }

    .privacy-section h2 {
        font-size: 17px;
        padding-left: 14px;
    }

    .privacy-section h2::before {
        width: 4px;
    }

    .privacy-section p {
        font-size: 14px;
        line-height: 1.9;
    }

    .privacy-section ul li {
        font-size: 14px;
        padding-left: 20px;
    }

    .privacy-section ul li::before {
        width: 6px;
        height: 6px;
        top: 16px;
    }

    .privacy-contact-info {
        padding: 20px;
    }

    .privacy-contact-info p {
        font-size: 14px;
    }

    .privacy-date {
        padding-top: 24px;
    }
}
