/* ========================================
   PRIVACY PAGE STYLES - privacy.html専用
   プライバシーポリシーページ専用スタイル
   ======================================== */

/* プライバシーポリシーヒーローセクション */
.privacy-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: visible;
}

.privacy-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    text-align: center;
}

.privacy-hero-title {
    font-size: 6rem;
    font-weight: 300;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    margin-top: 50px;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 1s ease-out;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.privacy-hero-message {
    background: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 50px 70px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 1.2s ease-out;
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    width: 100%;
    animation: fadeInUp 1s ease-out 0.8s both, float 6s ease-in-out infinite 2s;
}

.privacy-main-title {
    font-size: 2.3rem;
    line-height: 1.3;
    color: #2c3e50;
    margin: 0 0 25px 0;
    text-align: center;
    font-weight: 700;
}

.privacy-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    margin: 0 0 30px 0;
    text-align: center;
    font-weight: 400;
}

.privacy-update-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.update-badge {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 8px rgba(78, 205, 196, 0.3);
}

.update-text {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

/* プライバシーポリシー内容セクション */
.privacy-content-section {
    position: relative;
    background: transparent;
    padding: 80px 0;
    overflow: visible;
}

.privacy-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.privacy-section {
    background: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 40px 50px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    animation: fadeInUp 0.8s ease-out both;
}

.privacy-section:nth-child(1) { animation-delay: 0.1s; }
.privacy-section:nth-child(2) { animation-delay: 0.2s; }
.privacy-section:nth-child(3) { animation-delay: 0.3s; }
.privacy-section:nth-child(4) { animation-delay: 0.4s; }
.privacy-section:nth-child(5) { animation-delay: 0.5s; }
.privacy-section:nth-child(6) { animation-delay: 0.6s; }
.privacy-section:nth-child(7) { animation-delay: 0.7s; }
.privacy-section:nth-child(8) { animation-delay: 0.8s; }
.privacy-section:nth-child(9) { animation-delay: 0.9s; }
.privacy-section:nth-child(10) { animation-delay: 1.0s; }

.privacy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.privacy-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #4ecdc4;
    position: relative;
}

.privacy-section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4ecdc4, #44a08d);
    border-radius: 2px;
}

.privacy-section-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.privacy-section-content p {
    margin: 0 0 20px 0;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.privacy-list li {
    position: relative;
    padding: 8px 0 8px 30px;
    margin-bottom: 8px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.privacy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #4ecdc4;
    font-weight: bold;
    font-size: 1.2rem;
}

/* 情報カテゴリー */
.privacy-info-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.info-category {
    background: rgba(78, 205, 196, 0.1);
    border: 2px solid rgba(78, 205, 196, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.2);
    border-color: rgba(78, 205, 196, 0.4);
}

.info-category h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 12px 0;
}

.info-category p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ハイライトボックス */
.privacy-highlight {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.05) 100%);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
}

.privacy-highlight h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
}

.privacy-highlight p {
    font-size: 1rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* セキュリティ対策 */
.privacy-security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.security-measure {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.security-measure:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(78, 205, 196, 0.4);
}

.measure-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.measure-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.measure-content p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* お客様の権利 */
.privacy-rights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.right-item {
    background: rgba(123, 185, 255, 0.1);
    border: 2px solid rgba(123, 185, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.right-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(123, 185, 255, 0.2);
    border-color: rgba(123, 185, 255, 0.4);
}

.right-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 12px 0;
}

.right-item p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* お問い合わせ情報 */
.privacy-contact-info {
    background: rgba(78, 205, 196, 0.1);
    border: 2px solid rgba(78, 205, 196, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
}

.privacy-contact-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-text {
    font-size: 1rem;
    color: #555;
}

/* Cookie情報 */
.cookie-info {
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
}

.cookie-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.cookie-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* 会社情報 */
.privacy-company-info {
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
}

.privacy-company-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px 0;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.company-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 0;
}

.company-row .label {
    font-weight: 600;
    color: #2c3e50;
    min-width: 180px;
}

.company-row .value {
    font-weight: 500;
    color: #555;
}

/* プライバシーポリシー専用ボタン */
.privacy-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0 0 0;
    flex-wrap: wrap;
}

.privacy-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-height: 55px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.privacy-contact-btn.primary {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.9), rgba(68, 160, 141, 0.8));
    color: white;
    border: 2px solid rgba(78, 205, 196, 0.3);
}

.privacy-contact-btn.secondary {
    background: linear-gradient(135deg, rgba(123, 185, 255, 0.9), rgba(65, 105, 225, 0.8));
    color: white;
    border: 2px solid rgba(123, 185, 255, 0.3);
}

.privacy-contact-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.privacy-contact-btn.primary:hover {
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.privacy-contact-btn.secondary:hover {
    box-shadow: 0 8px 25px rgba(123, 185, 255, 0.4);
}

.privacy-contact-btn .btn-icon {
    font-size: 1.3rem;
    margin-right: 12px;
}

.privacy-contact-btn .btn-text {
    font-size: 1rem;
    font-weight: 600;
}

/* レスポンシブデザイン（プライバシーポリシー） */
@media (max-width: 768px) {
    .privacy-hero-content {
        gap: 40px;
        padding: 0 20px;
    }
    
    .privacy-hero-title {
        font-size: 4rem;
    }
    
    .privacy-hero-message {
        padding: 40px 30px;
        max-width: 100%;
    }
    
    .privacy-main-title {
        font-size: 2rem;
    }
    
    .privacy-description {
        font-size: 1.1rem;
    }
    
    .privacy-content {
        padding: 0 20px;
    }
    
    .privacy-section {
        padding: 30px 25px;
        margin-bottom: 30px;
    }
    
    .privacy-section-title {
        font-size: 1.5rem;
    }
    
    .privacy-section-content {
        font-size: 1rem;
    }
    
    .privacy-info-categories,
    .privacy-security-measures,
    .privacy-rights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .privacy-contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .privacy-contact-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .company-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .company-row .label {
        min-width: auto;
        font-size: 0.95rem;
    }
    
    .security-measure {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .measure-icon {
        margin-top: 0;
    }
} 