/* 事業ページ固有のスタイル */

.company-overview,
.business-content {
    margin-bottom: 2rem;
}

.company-overview h2,
.business-content h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.company-overview p,
.business-content ul {
    color: var(--dark-gray);
    line-height: 1.6;
}

.business-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.business-content li {
    margin-bottom: 0.5rem;
}

.back-link {
    margin-top: 2rem;
    text-align: center;
}

.back-link a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.back-link a:hover {
    color: var(--secondary-blue);
    text-decoration: underline;
}

/* レスポンシブデザイン */
@media (max-width: 600px) {
    .company-overview h2,
    .business-content h2 {
        font-size: 1.3rem;
    }
}