/* Auxiliary Pages Styles */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #FAF7F0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #FAF7F0;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #4F46E5;
}

.brand-name a {
    text-decoration: none;
    color: inherit;
}

.brand-name a:hover {
    color: #4338CA;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 80px 0;
    background-color: #ffffff;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.2;
}

.content-section {
    max-width: 800px;
    margin: 0 auto 48px auto;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #4F46E5;
    margin-bottom: 24px;
}

.content-section p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.image-placeholder {
    margin: 32px 0;
    text-align: center;
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.illustration-container {
    margin: 32px 0;
    text-align: center;
}

.illustration-container svg {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.policy-date {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.empty-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 20px;
}

.empty-content p {
    font-size: 18px;
    color: #6b7280;
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 12px;
    border: 2px dashed #d1d5db;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
    margin-bottom: 24px;
    align-items: start;
}

.footer .brand-name {
    color: #FAF7F0;
    font-size: 18px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}

.footer-nav a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.footer-nav a:hover {
    color: #ffffff;
    border-bottom-color: #4F46E5;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .content-section h2 {
        font-size: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }
    
    .logo-brand {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .brand-name {
        font-size: 20px;
    }
    
    .main-content {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }
    
    .empty-content p {
        padding: 20px;
        font-size: 16px;
    }
    
    .page-title {
        grid-template-columns: 1fr;
    }
}