@charset "utf-8";
/* CSS Document */
.table_box {
	clear: both;
	max-width: 1000px;
	margin: 2rem auto 0;
	width: 90%;
}
table.table01 tbody tr:first-child td{
	border-top: #e61673 solid 1px;
	border-right: #e61673 solid 1px;
}

table.table01 {
	width:100%;
	border-right:#e61673 solid 1px;
	border-collapse: collapse;
}
table.table01 thead th {
	background: #e61673;
	color: #FFF;
	padding: 1rem 0;
	border-right: #FFF solid 1px;
	border-bottom: #FFF solid 1px;
	width: 20%;
}
table.table01 thead th:last-child {
	border-right:#e61673 solid 1px;
}
table.table01 tbody th {
	background:#e61673;
	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: #e61673 solid 1px;
	border-bottom: #e61673 solid 1px;
	vertical-align:middle;
	color: #555;
}
table.table01 tbody td p {
	color: #b9442a;
	font-size: 0.95rem;
	line-height: 1.5rem;
}

table.table01 tbody td p:nth-child(2) {
	border-top: 1px solid #e61673;
}
/*--------------------------
レスポンシブ
-------------------------*/

@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);
		clear: both;
		font-weight: bold;
		display: block;
		border-bottom: 1px dashed;
		padding-bottom: 0.5rem;
		margin-bottom: 0.5rem;
	}
	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;
	}
}