@media screen and (max-width: 768px) { /* SP */
	.m_m table{
		margin: 0;
	}
	table.target1 tr , table.target2 tr{
		display: contents;
	}
	table.target2{
		width: 66%;
	}
	table.target1 tbody{
		display: grid;
		border-top: 1px solid #ccc;
	}
	table.target2 tbody{
		display: grid;
		border-top: 1px solid #ccc;
	}
	.target1 td:nth-child(2n+1), .target2 td:nth-child(2n+1){
		background: #F0FFFF;
	}
	table.target1 th, table.target1 td ,table.target2 th, table.target2 td{
		display: block;
		padding: 5px 0;
		box-sizing: border-box;
		border-bottom: 1px solid #ccc;
		border-right: 1px solid #ccc;
		width: 100%;
	}
	.target2{
		margin-bottom: 20px;
	}
}