/* Privacy Policyページ専用CSS */

/* グローバルアニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 6px -1px rgba(255, 255, 255, 0.1);
    }
}

/* メインコンテンツ */
.main-privacy {
    min-height: 100vh;
    padding-top: 100px;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

/* ヒーローセクション */
.privacy-hero {
    text-align: center;
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.privacy-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.privacy-hero p {
    font-size: 1.2rem;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 0;
}

.privacy-hero a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #4b5563;
    transition: border-color 0.2s ease;
}

.privacy-hero a:hover {
    border-bottom-color: #ffffff;
}

/* プライバシーコンテンツ */
.privacy-content {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 60px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    border: 1px solid #4b5563;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Hiragino Sans', 'Yu Gothic UI', 'Meiryo UI', sans-serif;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
    transition: all 0.3s ease;
}

.privacy-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: #ffffff;
}

.privacy-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: -0.025em;
}

.privacy-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    margin: 48px 0 24px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #6b7280;
    letter-spacing: -0.01em;
}

.privacy-content p {
    color: #e5e7eb;
    line-height: 2.0;
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 400;
}

/* プライバシーセクション */
.privacy-section {
    margin-bottom: 40px;
    animation: slideInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

.privacy-section:nth-child(1) { animation-delay: 0.3s; }
.privacy-section:nth-child(2) { animation-delay: 0.4s; }
.privacy-section:nth-child(3) { animation-delay: 0.5s; }
.privacy-section:nth-child(4) { animation-delay: 0.6s; }
.privacy-section:nth-child(5) { animation-delay: 0.7s; }

.privacy-section:hover {
    transform: translateX(10px);
    transition: transform 0.3s ease;
}

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

/* 会社情報 */
.company-info {
    background-color: #2d2d2d;
    border-radius: 8px;
    padding: 28px;
    margin: 24px 0;
    border-left: 4px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: scaleIn 0.6s ease-out;
    animation-fill-mode: both;
    animation-delay: 0.8s;
}

.company-info:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-left-color: #10b981;
}

.company-info p {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.8;
    color: #e5e7eb;
    font-weight: 400;
}

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

/* プライバシーリスト */
.privacy-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    background-color: rgba(45, 45, 45, 0.3);
    border-radius: 8px;
    padding: 20px;
}

.privacy-list li {
    color: #e5e7eb;
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
    line-height: 1.8;
    font-size: 18px;
    font-weight: 400;
}

.privacy-list li:before {
    content: "•";
    color: #ffffff;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
}

.privacy-list ol {
    margin: 12px 0;
    padding-left: 20px;
}

.privacy-list ol li {
    padding-left: 0;
    margin-bottom: 8px;
}

.privacy-list ol li:before {
    display: none;
}

/* 請求手続き */
.request-procedure {
    background-color: #2d2d2d;
    border-radius: 8px;
    padding: 28px;
    margin: 24px 0;
    border: 1px solid #4b5563;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.request-procedure h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* 連絡先情報 */
.contact-info {
    background-color: #2d2d2d;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 24px;
    margin: 24px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 16px;
    line-height: 1.6;
}

.contact-info p {
    color: #fbbf24;
    margin: 0;
    line-height: 1.8;
    font-size: 17px;
    font-weight: 400;
}

/* Cookie詳細 */
.cookie-details {
    background-color: #2d2d2d;
    border: 1px solid #0ea5e9;
    border-radius: 8px;
    padding: 24px;
    margin: 24px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-details p {
    color: #7dd3fc;
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 400;
}

.cookie-details p:last-child {
    margin-bottom: 0;
}

/* アクティブフッターリンク */
.footer-links a.active {
    color: #ffffff !important;
    font-weight: 600;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .privacy-hero h1 {
        font-size: 2.5rem;
    }
    
    .privacy-hero p {
        font-size: 1.1rem;
    }
    
    .privacy-content {
        padding: 40px 24px;
        margin: 0 16px 40px 16px;
    }
    
    .privacy-content h2 {
        font-size: 2rem;
    }
    
    .privacy-content h3 {
        font-size: 1.5rem;
        margin: 40px 0 20px 0;
    }
    
    .privacy-content p {
        font-size: 17px;
        line-height: 1.9;
    }
    
    .company-info,
    .request-procedure,
    .contact-info,
    .cookie-details {
        padding: 20px;
    }
    
    .privacy-list li {
        font-size: 17px;
        padding-left: 24px;
        line-height: 1.7;
    }
    
    .company-info p {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .main-privacy {
        padding-top: 80px;
    }
    
    .privacy-hero {
        padding: 40px 0;
    }
    
    .privacy-hero h1 {
        font-size: 2rem;
    }
    
    .privacy-content {
        padding: 24px 20px;
        margin: 0 12px 40px 12px;
    }
    
    .privacy-content h2 {
        font-size: 1.8rem;
    }
    
    .privacy-content h3 {
        font-size: 1.4rem;
    }
    
    .privacy-content p {
        font-size: 16px;
        line-height: 1.8;
    }
    
    .company-info,
    .request-procedure,
    .contact-info,
    .cookie-details {
        padding: 16px;
    }
    
    .privacy-list li {
        font-size: 16px;
        padding-left: 20px;
        line-height: 1.7;
    }
    
    .company-info p {
        font-size: 16px;
    }
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-hero {
    animation: fadeInUp 0.6s ease-out;
}

.privacy-content {
    animation: fadeInUp 0.6s ease-out;
    animation-delay: 0.1s;
}

/* ホバー効果 */
.privacy-hero a:hover {
    color: #6b7280;
}

/* スクロールバーのスタイリング */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* 印刷用スタイル */
@media print {
    .header,
    .footer {
        display: none;
    }
    
    .main-privacy {
        padding-top: 0;
        background: white;
    }
    
    .privacy-content {
        box-shadow: none;
        border: none;
        margin: 0;
        padding: 0;
    }
    
    .privacy-hero {
        padding: 0 0 20px 0;
    }
}
