/* 全体コンテナ */
.detailDescription .time_container {
  border: 1px solid #ddd;
  display: table;
  width: 100%;
}

/* 順位・チーム・記録 */
.detailDescription .time_box {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

/* 順位 */
.detailDescription .time_box.rank {
  width: 10%;
}

/* チーム */
.detailDescription .time_box.team {
  width: 40%;
}

/* 名前 */
.detailDescription .time_box.team .name {
  font-weight: bold;
}

/* 所属 */
.detailDescription .time_box.team .belong {
    font-size: 0.7rem;
}

/* 偶数背景色変更 */
.detailDescription .time_container:nth-child(even) {
  background: #F7F7F7;
}

/* ２個目以降ボーダー削除 */
.detailDescription .time_container .time_box ~ .time_box {
  border-left: 1px solid #DDD;
}

/* グループコンテナ */
.detailDescription .group_container {
    margin-bottom: 10px;
}

/* ２個目以降ボーダー削除 */
.detailDescription .group_container .time_container ~ .time_container {
    border-top: none;
}