 /* ページ固有のスタイル */
 .page-header.company-header {
    background-image: url('../images/company_header_bg.jpg');
}

.company-section {
    padding: 80px 0;
}

.company-philosophy {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.company-philosophy h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #0056b3;
}

.company-philosophy p {
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 16px;
}

.company-info-container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.company-info {
    flex: 1;
    min-width: 300px;
    margin-right: 30px;
}

.company-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.company-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.company-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.company-table th, .company-table td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.company-table th {
    width: 25%;
    text-align: left;
    font-weight: bold;
    color: #0056b3;
}

.company-history {
    margin-bottom: 60px;
}

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

.history-table th, .history-table td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.history-table th {
    width: 20%;
    text-align: left;
    font-weight: bold;
    color: #0056b3;
}

.company-access {
    margin-bottom: 60px;
}

.access-info {
    display: flex;
    flex-wrap: wrap;
}

.access-text {
    flex: 1;
    min-width: 300px;
    margin-right: 30px;
}

.access-map {
    flex: 1;
    min-width: 300px;
    height: 600px;
}

.access-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 5px;
}

.access-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.access-table th, .access-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.access-table th {
    width: 30%;
    text-align: left;
    font-weight: bold;
    color: #0056b3;
}

.company-license {
    margin-bottom: 60px;
}

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

.license-table th, .license-table td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.license-table th {
    width: 30%;
    text-align: left;
    font-weight: bold;
    color: #0056b3;
}

/* タブ切り替え */
.company-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.company-tab {
    padding: 15px 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.company-tab.active {
    color: #0056b3;
    border-bottom: 3px solid #0056b3;
}

.company-tab-content {
    display: none;
}

.company-tab-content.active {
    display: block;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .company-info-container {
        flex-direction: column;
    }
    
    .company-info, .company-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .access-info {
        flex-direction: column;
    }
    
    .access-text {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .access-map {
        width: 100%;
        height: 300px;
    }
    
    .company-tabs {
        flex-wrap: wrap;
    }
    
    .company-tab {
        padding: 10px 15px;
        font-size: 14px;
    }
}