/* 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: #2D2D2A;
    background-color: #FAFAF8;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif JP', serif;
    line-height: 1.2;
    margin-bottom: 16px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 500;
}

h2 {
    font-size: 2.2rem;
    font-weight: 500;
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
}

h4 {
    font-size: 1.4rem;
    font-weight: 500;
}

p {
    margin-bottom: 16px;
    line-height: 1.5;
}

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

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.brand-name {
    font-size: 1.5rem;
    color: #2D2D2A;
    margin-bottom: 4px;
}

.brand-tagline {
    font-size: 0.9rem;
    color: #8B8B82;
    margin-bottom: 0;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav-link {
    color: #5A5A54;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    background-color: #E7E7E2;
    color: #D86441;
}

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

.page-title {
    text-align: center;
    margin-bottom: 48px;
    color: #2D2D2A;
    border-bottom: 2px solid #D86441;
    padding-bottom: 16px;
}

/* Content Sections */
.content-section {
    margin-bottom: 48px;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(45, 45, 42, 0.05);
    border: 1px solid #E7E7E2;
}

.content-section h3 {
    color: #2D2D2A;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E7E7E2;
}

.content-section p {
    color: #5A5A54;
    line-height: 1.6;
}

/* Centered content */
.content-section.centered {
    text-align: center;
}

/* Mission Content */
.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.mission-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(45, 45, 42, 0.1);
}

/* Company Story */
.company-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.story-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(45, 45, 42, 0.1);
}

/* Company Info Grid */
.company-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.company-vision {
    text-align: center;
    padding: 32px;
    background: #F5F5F0;
    border-radius: 12px;
}

.vision-icon {
    margin-bottom: 24px;
}

.company-vision h4 {
    color: #2D2D2A;
    margin-bottom: 16px;
}

.company-vision p {
    color: #5A5A54;
    margin-bottom: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.value-card {
    padding: 24px;
    background: #F5F5F0;
    border-radius: 8px;
    border-left: 4px solid #D86441;
}

.value-icon {
    margin-bottom: 16px;
    text-align: center;
}

.value-card h4 {
    color: #2D2D2A;
    margin-bottom: 12px;
}

.value-card p {
    color: #5A5A54;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Company Info */
.company-info {
    background: #F5F5F0;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #D86441;
}

.info-item {
    padding: 12px 0;
    color: #5A5A54;
    border-bottom: 1px solid #E7E7E2;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: #2D2D2A;
    display: inline-block;
    min-width: 120px;
}

/* Policy Content */
.policy-content {
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(45, 45, 42, 0.05);
    border: 1px solid #E7E7E2;
    min-height: 400px;
}

.policy-content p {
    color: #5A5A54;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E7E7E2;
}

.policy-section:last-child {
    border-bottom: none;
}

/* Footer */
.footer {
    background-color: #2D2D2A;
    color: #E7E7E2;
    padding: 60px 0 30px;
    margin-top: auto;
}

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

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

.footer-logo span {
    font-weight: 500;
    font-size: 1.2rem;
}

.footer-section p {
    color: #A8A8A0;
    margin-bottom: 0;
}

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

.footer-column h5 {
    margin-bottom: 16px;
    color: #E7E7E2;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: #A8A8A0;
    text-decoration: none;
}

.footer-column a:hover {
    color: #D86441;
}

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

.footer-bottom p {
    color: #A8A8A0;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .content-section,
    .policy-content {
        padding: 32px 24px;
    }
    
    .company-info {
        padding: 24px;
    }
    
    .mission-content,
    .company-story,
    .company-info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .mission-content,
    .company-story {
        text-align: center;
    }
    
    .mission-image img,
    .story-image img {
        height: 250px;
    }
    
    .info-item strong {
        display: block;
        margin-bottom: 4px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .main-content {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 1.8rem;
        margin-bottom: 32px;
    }
    
    .content-section,
    .policy-content {
        padding: 24px 16px;
    }
    
    .company-info {
        padding: 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .brand-name {
        font-size: 1.3rem;
    }
}