@charset "utf-8";
/* table */
#table{
	width: 100%;
	border-collapse: collapse;
	font-size: 80%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
#table td,
#table th{
	padding: 5px;

}
#table th{
	font-weight: bold;
}
.name{
}
#table thead th{
	background:#e6e6e6;
}
	@media only screen and (max-width:720px){
	#table{
		display: block;
	}
		#table thead{
			display: none;
		}
		#table tbody{
			display: block;
		}
			#table tbody tr{
				display: block;
				margin-bottom: 1.5em;
			}
			#table tbody th,
			#table tbody td{
				display: list-item;
				list-style:none; 
				border: none;
			}
			#table tbody th{
				margin-bottom: 5px;
				list-style-type: none;
				color: #fff;
				background: #000;
			}
			#table tbody td{
				margin-left: 5px;
				padding: 0;
			}
			
}
