/** 会社概要ページの .company-table のみ */

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

.company-table th,
.company-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--chl-line);
    vertical-align: top;
}

.company-table th {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    color: var(--chl-navy);
    text-align: left;
    width: 30%;
}

.company-table td {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    color: var(--chl-slate-600);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
    }

    .company-table th {
        padding-bottom: 0.5rem;
        border-bottom: none;
    }
}
