/**
 * About Usページ用のカスタムCSS
 */

/* ヒーローセクション */
.about-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.about-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

/* コンテンツスタイル */
.about-content {
    margin-bottom: 3rem;
    line-height: 1.8;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section .section-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.about-section .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

/* 会社概要テーブル */
.company-info-table {
    margin-bottom: 2rem;
}

.company-info-table table {
    width: 100%;
    border-collapse: collapse;
}

.company-info-table th,
.company-info-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.company-info-table th {
    width: 30%;
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
}

/* ミッションセクション */
.mission-content {
    margin-bottom: 2rem;
}

.mission-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mission-point {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mission-point h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* チームセクション */
.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.team-member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.team-member-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.team-member-position {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.team-member-bio {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* お問い合わせセクション */
.contact-us {
    text-align: center;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-description {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-button .btn {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .about-hero {
        height: 300px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .company-info-table th,
    .company-info-table td {
        display: block;
        width: 100%;
    }
    
    .company-info-table th {
        padding-bottom: 0.5rem;
    }
    
    .company-info-table td {
        padding-top: 0.5rem;
    }
    
    .mission-points,
    .team-members {
        grid-template-columns: 1fr;
    }
} 