/* ==================== プライバシーポリシーページ固有スタイル ==================== */

.privacy-container {
    padding: 0;
}

/* プライバシーポリシーヒーロー */
.privacy-hero {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 2px;
}

.privacy-hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
    opacity: 0.9;
}

/* プライバシーポリシーコンテンツ */
.privacy-content {
    padding: 80px 0;
    background-color: #fffbf0;
}

.privacy-content .inner {
    max-width: 900px;
}

.privacy-intro {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #d97706;
    margin-bottom: 50px;
}

.privacy-intro p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.privacy-section {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.privacy-section h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #d97706;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #fed7aa;
}

.privacy-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

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

.privacy-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.privacy-section li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

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

.contact-info {
    background: #fffbf0;
    padding: 15px 20px;
    border-radius: 4px;
    font-weight: 600;
    color: #d97706 !important;
    margin-top: 15px !important;
}

.contact-box {
    background: #fffbf0;
    padding: 25px;
    border-radius: 4px;
    margin-top: 15px;
}

.contact-box p {
    margin-bottom: 10px;
}

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

.contact-box a {
    color: #d97706;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.contact-box a:hover {
    color: #f59e0b;
}

.policy-date {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.policy-date p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 5px;
}

/* 戻るリンク */
.back-link {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #d97706;
    border: 2px solid #d97706;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #d97706;
    color: #fff;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 60px 20px;
    }

    .privacy-hero h1 {
        font-size: 2rem;
    }

    .privacy-hero-subtitle {
        font-size: 0.9rem;
    }

    .privacy-content {
        padding: 60px 0;
    }

    .privacy-intro {
        padding: 25px;
        margin-bottom: 40px;
    }

    .privacy-section {
        padding: 25px;
        margin-bottom: 25px;
    }

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

    .privacy-section p,
    .privacy-section li {
        font-size: 0.9rem;
    }

    .contact-box {
        padding: 20px;
    }

    .back-link {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .privacy-hero h1 {
        font-size: 1.6rem;
    }

    .privacy-intro {
        padding: 20px;
    }

    .privacy-section {
        padding: 20px;
    }

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