/* --- Company Profile Styles --- */

/* 概要テーブルのスタイル */
.profile-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 60px;
}

.profile-table tr {
    border-bottom: 1px solid #ddd;
}

.profile-table th {
    width: 30%;
    text-align: left;
    padding: 20px 0;
    font-size: 14px;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.1em;
    vertical-align: top;
}

.profile-table td {
    padding: 20px 0;
    font-size: 15px;
    line-height: 1.8;
    color: #111;
}

/* 事業内容の詳細エリア */
.service-detail h3 {
    font-size: 18px;
    margin-top: 40px;
    color: #000;
    border-left: 3px solid #000;
    padding-left: 15px;
}

.service-detail p {
    margin-top: 10px;
    font-size: 14px;
    color: #444;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .profile-table th {
        width: 100%;
        display: block;
        padding-bottom: 5px;
    }
    .profile-table td {
        width: 100%;
        display: block;
        padding-top: 0;
        padding-bottom: 20px;
    }
}