/* privacy-policy.css */

:root {
    --header-height: 60px;
    --primary-color: #1a1a1a;
    --secondary-color: #fafafa;
    --accent-color: #a0825c;
    --accent-light: #d5c3a7;
    --text-color: #333;
    --text-light: #888;
    --text-dark: #222;
    --card-border-radius: 2px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 5px 15px rgba(0, 0, 0, 0.05);
    --transition-standard: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --gold-gradient: linear-gradient(135deg, #a0825c 0%, #d5c3a7 100%);
    --font-primary: 'Cormorant Garamond', 'Noto Serif JP', serif;
    --font-secondary: 'Montserrat', 'Noto Serif JP', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--secondary-color);
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 300;
    position: relative;
    min-height: 100vh;
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: white;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    padding: 0 32px;
    z-index: 1000;
}

.logo {
    font-size: 28px;
    font-weight: 300;
    color: var(--primary-color);
    font-family: var(--font-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding-right: 12px;
    line-height: 1;
    text-decoration: none;
}

.logo::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 50%;
    bottom: 4px;
    right: 0;
}

/* メインコンテンツ */
.main-container {
    padding-top: var(--header-height);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: var(--secondary-color);
    padding-bottom: 80px;
}

.privacy-policy-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 32px;
    width: 100%;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.page-title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    line-height: 1.3;
    color: var(--text-dark);
    font-family: var(--font-primary);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
}

.page-subtitle {
    color: var(--text-light);
    font-family: var(--font-secondary);
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-top: 20px;
}

.privacy-content {
    background: white;
    padding: 50px;
    border-radius: var(--card-border-radius);
    box-shadow: var(--shadow-soft);
    margin-bottom: 40px;
}

.privacy-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 40px;
    padding: 25px;
    background: var(--secondary-color);
    border-left: 4px solid var(--accent-color);
    border-radius: var(--card-border-radius);
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.section-title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: 0.05em;
    font-family: var(--font-primary);
    position: relative;
    padding-bottom: 10px;
    line-height: 1.3;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-gradient);
}

.section-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    letter-spacing: 0.02em;
}

.section-content p {
    margin-bottom: 16px;
}

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

.highlight-box {
    background: linear-gradient(135deg, rgba(160, 130, 92, 0.05) 0%, rgba(213, 195, 167, 0.05) 100%);
    padding: 25px;
    border-radius: var(--card-border-radius);
    margin: 25px 0;
    border-left: 3px solid var(--accent-color);
    font-style: italic;
}

.site-info {
    background: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: var(--card-border-radius);
    text-align: center;
    margin-top: 50px;
}

.site-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: var(--font-primary);
    letter-spacing: 0.05em;
}

.site-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--card-border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-label {
    font-family: var(--font-secondary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-bottom: 5px;
}

.info-value {
    font-size: 16px;
    font-weight: 400;
}

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

    .logo {
        font-size: 22px;
    }

    .privacy-policy-container {
        padding: 0 20px;
        margin: 20px auto;
    }

    .page-title {
        font-size: 28px;
    }

    .privacy-content {
        padding: 30px 25px;
    }

    .section-title {
        font-size: 20px;
    }

    .section-content {
        font-size: 15px;
    }

    .site-info {
        padding: 30px 25px;
    }

    .site-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .privacy-policy-container {
        padding: 0 15px;
    }

    .privacy-content {
        padding: 25px 20px;
    }

    .page-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 18px;
    }

    .highlight-box {
        padding: 20px;
        margin: 20px 0;
    }
}

/* ページ読み込みアニメーション */
.privacy-policy-container {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-section {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInSection 0.6s ease forwards;
}

.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:nth-child(6) { animation-delay: 0.8s; }
.privacy-section:nth-child(7) { animation-delay: 0.9s; }

@keyframes fadeInSection {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}