/* Auxiliary Pages CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.brand-name a {
    color: #1e3a8a;
    text-decoration: none;
}

.brand-name a:hover {
    color: #1e40af;
}

/* Main Content */
.main {
    flex: 1;
    padding: 3rem 0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 3rem;
}

.content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.content-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #fbbf24;
    padding-bottom: 0.5rem;
}

.content-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Services List */
.services-list {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #fbbf24;
}

.service-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.service-item p {
    color: #6b7280;
    margin-bottom: 0;
}

/* Empty Content */
.empty-content {
    background: #f9fafb;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: #1e3a8a;
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #374151;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand a {
    text-decoration: none;
}

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-brand-name a {
    color: #ffffff;
    text-decoration: none;
}

.footer-brand-name a:hover {
    color: #fbbf24;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: #fbbf24;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Additional styles for enhanced content */
.last-updated {
    font-style: italic;
    color: #6b7280;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 0.95rem;
}

.contact-info {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

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

/* About page specific styles */
.content-with-image {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    margin: 2rem 0;
}

.content-with-image.reverse {
    grid-template-columns: 1fr 2fr;
}

.content-with-image.reverse .text-content {
    order: 2;
}

.content-with-image.reverse .image-content {
    order: 1;
}

.about-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.innovation-item {
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.innovation-icon {
    margin-bottom: 1.5rem;
}

.innovation-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.innovation-item p {
    color: #6b7280;
    margin-bottom: 0;
}

.vision-content {
    background: linear-gradient(135deg, #1e3a8a 0%, #374151 100%);
    color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.vision-content p {
    color: #ffffff;
    opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 1rem 0;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .empty-content {
        padding: 3rem 1.5rem;
    }
    
    .content-with-image,
    .content-with-image.reverse {
        grid-template-columns: 1fr;
    }
    
    .content-with-image.reverse .text-content,
    .content-with-image.reverse .image-content {
        order: unset;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-content {
        padding: 2rem;
    }
}