/*
-moz-[プロパティ名]:Firefox向け, -webkit-[プロパティ名]:Google Chrome、Safari向け
*/
.table-M001-01 {
  display: table;
  table-layout: fixed;
  text-align: center;
  border-collapse:separate;
  border-spacing:0px;
  border:1px solid black;
/*  word-break:break-all; */
	word-wrap: break-word;
	overflow-wrap: break-word;
/*  width:70%;*/
width:100%;
  overflow-y:scroll;

}
.table-M001-01 th{
	background-color:#538dd5;
	border-right:1px solid black;
	border-bottom:1px solid black;
}
.table-M001-01 th:last-child{
	border-right:none;
}
.table-M001-01 td{
  height:25px;
  border-bottom:dotted 1px black;
}
.table-M001-01 tr:last-child td{
  border-bottom:none;
}
/*
.table-M001-01 td:nth-child(-n+5){
  border-right:solid 1px black;
}
.table-M001-01 td:nth-child(n+6){
  border-right:dotted 1px black;
}
*/
.table-M001-01 td{
  border-right:solid 1px black;
}
.table-M001-01 td:last-child{
  text-align: left;
  border-right:none;
}
