@charset "utf-8";


/* -------------------------------------------------
	テーブル
-------------------------------------------------*/
table{
	font-size: 1.4rem;
	width: auto;
	border: 1px solid #000;
	border-spacing: 0;
	border-collapse: collapse;
    margin: 30px auto 0 auto;
}

table tr{
	background: #fff;
}
table tr:nth-child(2n+1){
	background: #EAF5FC;
}

table tr th{
	color: #000;
	background: #D4C79F;
	border: 1px solid #000;
	padding: 1em;
}

table th:nth-child(4),
table th:nth-child(5){
	text-align: left;
}


table tr td{
	text-align: center;
	border: 1px solid #000;
	padding: 1.5em 1em;

}

table td:nth-child(4),
table td:nth-child(5){
	text-align: left;
}



/* IE */
table td:nth-child(5){ padding-bottom: 7px\9!important; }

/*ie11*/
@media all and (-ms-high-contrast:none) {
	*::-ms-backdrop, table td:nth-child(5) {padding-bottom: 6px!important;}
}
/*edge*/
@supports (-ms-accelerator:true) {
	table td:nth-child(5) {padding-bottom: 7px!important;}
}


tr{ border: 1px solid #000;}




/* ==================================================== */
/*					スマートフォン対応						*/
/* ==================================================== */
@media only screen and (max-width: 768px) {

	table{
		font-size: 98%;
		width: 700px;
		border: 1px solid #000;
		border-spacing: 0;
		border-collapse: collapse;
	    margin: 0;
	}

	.container{
		width: 90%!important;
		min-width: 90%!important;
	}



}