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

:root {
    --primary-indigo: #2D1B69;
    --accent-persimmon: #FF6B35;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --white: #FFFFFF;
    --shadow-soft: 0 2px 12px rgba(45, 27, 105, 0.08);
    --shadow-medium: 0 4px 20px rgba(45, 27, 105, 0.12);
    
    --font-primary: 'Noto Sans JP', 'Yu Gothic UI', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    unicode-bidi: embed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-indigo);
    margin: 0;
}

.back-link {
    color: var(--accent-persimmon);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 2px solid var(--accent-persimmon);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.back-link:hover {
    background-color: var(--accent-persimmon);
    color: var(--white);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 60px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--primary-indigo);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-section h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--primary-indigo);
    margin-bottom: 24px;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 12px;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

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

/* Content with Image Layout */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.content-main-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

/* Content with SVG Layout */
.content-with-svg {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
}

.svg-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.svg-illustration svg {
    box-shadow: var(--shadow-soft);
    border-radius: 12px;
}

/* Footer Styles */
.footer {
    background-color: var(--primary-indigo);
    color: var(--white);
    padding: 60px 0 24px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
}

.footer-brand-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-section h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--accent-persimmon);
}

.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-contact-info p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.footer-contact-info strong {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-with-image,
    .content-with-svg {
        grid-template-columns: 1fr;
        gap: 30px;
    }
/* Responsive Design */
@media (max-width: 768px) {
    .content-with-image,
    .content-with-svg {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .content-section h2 {
        font-size: 1.6rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .main-content {
        padding: 40px 0;
    }
    
    .page-header {
        margin-bottom: 40px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .back-link {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .footer-grid {
        gap: 30px;
    }
}