@charset "UTF-8";

/*----------------------------------------
●タイムレース集計画面用css
----------------------------------------*/
/*----------------------------------------
●コンテンツ
----------------------------------------*/
/* コンテンツ */
.outbox_content {
  margin:40px auto 40px;
}
/* 集計ボタン */
.box_btn {
  margin:5px 5px 5px 0px;
}
/* テーブル タイムレース */
table.table_timerace {
  margin:0px 0px 0px;
}
/* 順位 */
table.table_timerace th:first-child {
  width:40px;
}
/* NO */
table.table_timerace th:nth-child(2) {
  width:50px;
}
/* チーム名 */
table.table_timerace th:nth-child(3) {
  width:120px;
}
/* 所属 */
table.table_timerace th:nth-child(4) {
  width:100px;
}
/* 記録 */
table.table_timerace th:nth-child(5) {
  width:80px;
}
table.table_timerace td:nth-child(5) {
  vertical-align: top;
  text-align:left;
}
/* コメント */
table.table_timerace th:nth-child(6) {
  width:80px;
}
/* 組 */
table.table_timerace th:nth-child(7) {
  width:40px;
}
/* レーン */
table.table_timerace th:nth-child(8) {
  width:40px;
}
/* 着順 */
table.table_timerace th:nth-child(9) {
  width:40px;
}
@media only screen and (min-width:481px) {
  /* 画面サイズが481pxより大きい場合はここを読み込む */
  /* 集計ボタン */
  .box_btn {
    margin:5px 5px 5px 5px;
  }
  /* テーブル タイムテーブル */
  table.table_timerace {
    width: 100%;
    max-width:1000px;
  }
}
