/* 幅とテーブル内の空白 */
#pub_table5 table{
  width: 70%;
  border-collapse:separate;
  border-spacing: 0;
	font-size:14px;
}

/* テーブルの丸み（左上） */
#pub_table5 table th:first-child{
  border-radius: 5px 0 0 0;
}
/* テーブルの丸み（右上） */
#pub_table5 table th:last-child{
  border-radius: 0 5px 0 0;
}
/* テーブルの丸み（右下） */
#pub_table5 table tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}
/* テーブルの丸み（左下） */
#pub_table5 table tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}
/* １行目（TH部）の色など */
#pub_table5 table th{
  font-weight:normal;
  border-left: 1px solid #a8b7c5;
  border-bottom: 1px solid #a8b7c5;
  border-top:1px solid #a8b7c5;
  box-shadow: 0px -3px 5px 1px #eee inset;
  padding: 3px 0 3px 15px;
  line-height:120%;
}

/* ２行目以降（TD部）の色など　左線と下線だけにしておく */
#pub_table5 table td{
  text-align: left;
  border-left: 1px solid #a8b7c5;
  border-bottom: 1px solid #a8b7c5;
  border-top:none;
  box-shadow: 0px -3px 5px 1px #eee inset;
  padding: 3px 0 3px 15px;
  line-height:120%;
}

/* ２行目以降（TD部）の最後の列の右線 */
#pub_table5 table th:last-child{
  border-right: 1px solid #a8b7c5;
}
/* ２行目以降（TD部）の最後の列の右線 */
#pub_table5 table td:last-child{
  border-right: 1px solid #a8b7c5;
}
