/* Auxiliary Pages CSS - 初夢ギフトガイド2025 */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Yu Gothic', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    background-color: #FAFAFA;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Header */
.header {
    background-color: #FFFFFF;
    padding: 20px 0;
    border-bottom: 1px solid #E5E5E5;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.logo {
    filter: drop-shadow(0 2px 4px rgba(45, 80, 22, 0.1));
}

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

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #2D5016;
    margin: 0;
    line-height: 1.2;
}

.brand-year {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-top: -2px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.05) 0%, rgba(45, 80, 22, 0.02) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(45, 80, 22, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 80% 50%, rgba(45, 80, 22, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2D5016;
    line-height: 1.2;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Content Section */
.content-section {
    flex: 1;
    padding: 80px 0;
    background-color: #FFFFFF;
}

.content-block {
    max-width: 800px;
    margin: 0 auto 40px;
    background: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(45, 80, 22, 0.1);
}

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

.content-block h2 {
    font-size: 28px;
    font-weight: 600;
    color: #2D5016;
    margin-bottom: 24px;
    line-height: 1.3;
}

.content-block p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

/* About Page Specific Styles */
.content-block.centered {
    text-align: center;
}

.about-hero {
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.03) 0%, rgba(45, 80, 22, 0.01) 100%);
    border-radius: 16px;
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.about-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

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

.values-illustration {
    margin-bottom: 30px;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.commitment-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.03) 0%, rgba(45, 80, 22, 0.01) 100%);
    border-radius: 16px;
    border: 1px solid rgba(45, 80, 22, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.commitment-icon {
    margin-bottom: 20px;
}

.team-photo,
.workspace-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

/* Empty Content Placeholder */
.empty-content {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.02) 0%, rgba(45, 80, 22, 0.01) 100%);
    border: 2px dashed rgba(45, 80, 22, 0.2);
    border-radius: 12px;
}

.empty-content p {
    color: #999;
    font-style: italic;
    font-size: 16px;
}

/* Footer */
.footer {
    background-color: #2D5016;
    color: white;
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-left {
    flex: 1;
}

.footer-right {
    display: flex;
    gap: 60px;
}

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

.footer-brand-name {
    font-size: 18px;
    font-weight: 600;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-nav-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    text-decoration: underline;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .page-header p {
        font-size: 16px;
    }

    .content-section {
        padding: 60px 0;
    }

    .content-block {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .content-block h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
    }

    .footer-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .footer-nav-section {
        text-align: center;
    }

    .empty-content {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .logo-section {
        gap: 12px;
    }

    .brand-name {
        font-size: 20px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .content-block h2 {
        font-size: 22px;
    }

    .footer-nav {
        gap: 15px;
    }

    .footer-nav a {
        font-size: 14px;
    }

    .footer-right {
        flex-direction: column;
        gap: 20px;
    }
}