@charset "utf-8";
/* CSS Document */
.table_box {
	clear: both;
	max-width: 800px;
	margin: 2rem auto 0;
}

/*table.table01 {
	width:100%;
	border-right:#6978c5 solid 1px;
	border-collapse: collapse;
}
table.table01 thead th {
	background:#6978c5;
	color:#FFF;
	padding:10px 15px;
	border-right:#FFF solid 1px;
	border-bottom:#FFF solid 1px;
}
table.table01 thead th:last-child {
	border-right:#6978c5 solid 1px;
}
table.table01 tbody th {
	background:#6978c5;
	color:#FFF;
	padding:10px 15px;
	border-bottom:#FFF solid 1px;
	vertical-align:top;
	width: 20%;
}

table.table01 thead th,
table .table01 tbody th,
table .table01 tbody td {
	padding: 1.5rem 0.5rem;
}

table.table01 tbody tr:last-child th {
	border-bottom:#6978c5 solid 1px;
}
table.table01 tbody td {
	background:#FFF;
	padding:10px 15px;
	border-left:#6978c5 solid 1px;
	border-bottom:#6978c5 solid 1px;
	vertical-align:top;
	text-align: center;
}*/
table.table01 tbody tr:first-child td{
	border-top: #6978c5 solid 1px;
	border-right: #6978c5 solid 1px;
}

table.table01 {
	width:100%;
	border-right:#6978c5 solid 1px;
	border-collapse: collapse;
}
table.table01 thead th {
	background:#6978c5;
	color:#FFF;
	padding: 1rem;
	border-right:#FFF solid 1px;
	border-bottom:#FFF solid 1px;
}
table.table01 thead th:last-child {
	border-right:#6978c5 solid 1px;
}
table.table01 tbody th {
	background:#6978c5;
	color:#FFF;
	padding: 1rem 0;
	border-bottom:#FFF solid 1px;
	vertical-align:middle;
}
table.table01 tbody tr:last-child th {
	border-bottom: solid 1px;
	width: 20%;
}
table.table01 tbody td {
	background:#FFF;
	padding: 0.7rem;
	border-left: #6978c5 solid 1px;
	border-bottom: #6978c5 solid 1px;
	vertical-align:middle;
	color: #555;
}
table.table01 tbody td p {
	color: #b9442a;
	font-size: 0.95rem;
	line-height: 1.5rem;
}

/*--------------------------
レスポンシブ
-------------------------*/

@media screen and (max-width: 767px) {
	table.table01 thead {
		display:none;
	}
	table.table01 tbody tr　{
		margin-bottom: 2rem
	}
	table.table01 tbody th {
		display:block;
	}
	table.table01 tbody td {
		display:block;
	}
	table.table01 tbody tr:last-child th {
		width: 100%;
	}
	table.table01 tbody td::before {
		content: attr(label);
		float: left;
		clear:both;
		font-weight:bold;
		width: 35%;
	}
	table.table01 tbody td p {
		padding-left:6em;
	}
	table.table01 tbody tr:nth-child(even) td:nth-child(odd) {
		background: #fff;
	}
		table.table01 tbody td:nth-child(even) {
		background: #eee;
	}

}

/*@media screen and (min-width:768px){
	table.table01 thead {
		display:none;
	}
	table.table01 tbody th {
		width: auto;
	}
	table.table01 tbody td {
		display:block;
	}
	table.table01 tbody td::before {
		content: attr(label);
		float: left;
		clear:both;
		font-weight:bold;
	}
	table.table01 tbody td p {
		padding-left:6em;
	}
}