@charset "UTF-8";

/**======================================
	TABLE
======================================**/

/*--------------------------------------
	index
---------------------------------------*/

/* table_contents */

.table_box > .heading02 {
  margin-bottom: 0.8em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #333;
}

.table_cont {
  overflow: auto; /*tableをスクロールさせる*/
  white-space: nowrap; /*tableのセル内にある文字の折り返しを禁止*/
}

.table_cont::-webkit-scrollbar {
  /*tableにスクロールバーを追加*/
  height: 5px;
}

.table_cont::-webkit-scrollbar-track {
  /*tableにスクロールバーを追加*/
  background: #f1f1f1;
}

.table_cont::-webkit-scrollbar-thumb {
  /*tableにスクロールバーを追加*/
  background: #bcbcbc;
}

#table_contents th {
  background: #f7f8f9;
  vertical-align: middle;
  text-align: left;
}

@media screen and (min-width: 600px) {
  #table_contents th {
    width: 300px;
  }

  #table_contents td {
    text-align: right;
  }
}
