/* Additional styles for auxiliary pages */

.page-header {
    background: #ffffff;
    box-shadow: 0 2px 4px -1px rgb(0 0 0 / 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.page-header nav {
    display: flex;
    gap: 24px;
}

.page-header nav a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.page-header nav a:hover {
    color: #1e3a8a;
}

.page-main {
    min-height: 60vh;
    padding: 80px 0;
}

.page-main h1 {
    text-align: center;
    margin-bottom: 48px;
    color: #1e3a8a;
}

.about-section {
    margin-bottom: 48px;
    padding: 32px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 4px -1px rgb(0 0 0 / 0.1);
    border: 1px solid #e5e7eb;
}

.about-section h2 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.about-section p {
    color: #374151;
    line-height: 1.8;
    margin: 0;
}

.policy-content {
    min-height: 300px;
    padding: 48px 32px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 4px -1px rgb(0 0 0 / 0.1);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-style: italic;
}

.policy-content::after {
    content: "コンテンツは準備中です";
}

/* Policy sections styling */
.policy-section {
    margin-bottom: 32px;
    padding: 24px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px -1px rgb(0 0 0 / 0.1);
    border-left: 4px solid #84cc16;
}

.policy-section h2 {
    color: #1e3a8a;
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.policy-section p {
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

.policy-content {
    min-height: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    display: block;
}

.policy-content::after {
    display: none;
}

/* About page enhancements */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-image-placeholder {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.about-intro .about-content {
    text-align: left;
}

.about-quality .about-content {
    text-align: left;
}

.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.value-item {
    text-align: center;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 4px -1px rgb(0 0 0 / 0.1);
    border: 1px solid #e5e7eb;
}

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

.value-item h3 {
    color: #1e3a8a;
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.value-item p {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
}

.team-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

.about-values {
    text-align: center;
}

.about-team {
    background: #f8fafc;
    border-radius: 12px;
    padding: 48px 32px;
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .page-header .container {
        flex-direction: column;
        gap: 16px;
    }

    .page-header nav {
        gap: 16px;
    }

    .page-main {
        padding: 48px 0;
    }

    .about-section {
        margin-bottom: 32px;
        padding: 24px;
    }

    .policy-content {
        padding: 32px 24px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .about-intro .about-content,
    .about-quality .about-content {
        text-align: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-team {
        padding: 32px 24px;
    }

    .policy-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 16px 0;
    }

    .page-header nav {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .page-main h1 {
        font-size: 2rem;
        margin-bottom: 32px;
    }

    .about-section {
        padding: 20px;
    }

    .policy-content {
        padding: 24px 20px;
        font-size: 14px;
    }

    .about-image-placeholder {
        height: 200px;
    }

    .about-team {
        padding: 24px 20px;
    }
}