/* 会社案内ページ: ACFテキスト→表組み表示用 (functions.php の hscc_info_table が出力) */
.c-info-caption {
  margin: 0 0 12px;
}

.c-info-table {
  border-collapse: collapse;
}

.c-info-table td {
  padding: 3px 0;
  vertical-align: top;
}

.c-info-table td + td {
  padding-left: 28px;
}

.c-info-table td:first-child {
  white-space: nowrap;
}

/* 有資格者: 点線区切り・人数は右寄せ */
.c-info-table--dotted td {
  border-bottom: 1px dotted #bbb;
  padding: 5px 0;
}

.c-info-table--dotted td:last-child {
  text-align: right;
  white-space: nowrap;
}

/* 空行区切りで2列表示 (有資格者) */
.c-info-cols {
  display: flex;
  gap: 56px;
}

.c-info-cols .c-info-col {
  flex: 1;
}

.c-info-cols .c-info-table {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .c-info-cols {
    display: block;
  }

  .c-info-cols .c-info-col + .c-info-col {
    margin-top: 10px;
  }

  .c-info-table td + td {
    padding-left: 14px;
  }
}
