@charset "UTF-8";
/* CSS Document */
/* Privacy Policy Page Styles - 株式会社TORITSU */

/* ========================================
   PRIVACY HERO SECTION
======================================== */

.privacy-hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #2F1B14 0%, #1a1a1a 100%);
    color: #fff;
    text-align: center;
}

.privacy-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.privacy-hero-subtitle {
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 2rem;
    font-weight: normal;
}

.privacy-hero-description {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.9;
}

/* ========================================
   PRIVACY CONTENT SECTION
======================================== */

.privacy-content {
    padding: 5rem 0;
    background: #fff;
}

.privacy-intro {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 4rem;
    border-left: 5px solid #FFD700;
}

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

.privacy-sections {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 3rem;
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.privacy-section:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.privacy-section h2 {
    background: linear-gradient(135deg, #FFD700, #FFC107);
    color: #000;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0;
    padding: 1.5rem 2rem;
}

.section-content {
    padding: 2rem;
}

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

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

/* Purpose List */
.purpose-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.purpose-list li {
    position: relative;
    padding: 0.8rem 0 0.8rem 2rem;
    color: #555;
    line-height: 1.6;
    border-bottom: 1px solid #e9ecef;
}

.purpose-list li:last-child {
    border-bottom: none;
}

.purpose-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: #FFD700;
    font-size: 1.2rem;
}

/* Contact Information */
.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    border: 1px solid #e9ecef;
}

.contact-item {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

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

.contact-item strong {
    color: #333;
    font-weight: 600;
    display: inline-block;
    min-width: 120px;
}

.contact-item a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #FFC107;
    text-decoration: underline;
}

/* Policy Date */
.policy-date {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.policy-date p {
    color: #666;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    font-weight: 500;
}

/* ========================================
   BACK TO CONTACT SECTION
======================================== */

.back-to-contact {
    padding: 5rem 0;
    background: #2F1B14;
    color: #fff;
    text-align: center;
}

.back-to-contact h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.back-to-contact p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-buttons .btn-primary {
    background: #FFD700;
    color: #000;
}

.cta-buttons .btn-primary:hover {
    background: #FFC107;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-buttons .btn-secondary:hover {
    background: #fff;
    color: #000;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 768px) {
    .privacy-hero {
        padding: 6rem 0 4rem;
    }
    
    .privacy-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .privacy-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .privacy-intro {
        padding: 2rem 1.5rem;
        margin: 0 1rem 3rem;
    }
    
    .privacy-section {
        margin: 0 1rem 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.2rem;
        padding: 1.2rem 1.5rem;
    }
    
    .section-content {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-item strong {
        display: block;
        margin-bottom: 0.3rem;
        min-width: auto;
    }
    
    .policy-date {
        margin: 3rem 1rem 0;
        padding: 1.5rem;
    }
    
    .back-to-contact h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .privacy-hero {
        padding: 5rem 0 3rem;
    }
    
    .privacy-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .privacy-hero-subtitle {
        font-size: 1rem;
    }
    
    .privacy-intro {
        padding: 1.5rem;
        margin: 0 0.5rem 2.5rem;
    }
    
    .privacy-section {
        margin: 0 0.5rem 1.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.1rem;
        padding: 1rem 1.2rem;
    }
    
    .section-content {
        padding: 1.2rem;
    }
    
    .section-content p {
        font-size: 0.9rem;
    }
    
    .purpose-list li {
        padding: 0.6rem 0 0.6rem 1.8rem;
        font-size: 0.9rem;
    }
    
    .purpose-list li::before {
        top: 0.6rem;
        font-size: 1rem;
    }
    
    .contact-info {
        padding: 1.2rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .policy-date {
        margin: 2.5rem 0.5rem 0;
        padding: 1.2rem;
    }
    
    .policy-date p {
        font-size: 0.85rem;
    }
    
    .back-to-contact h2 {
        font-size: 1.8rem;
    }
    
    .back-to-contact p {
        font-size: 0.95rem;
    }
}