@charset "UTF-8";
/* CSS Document */

/*--------------------------------------
  　　スマホでの表示
--------------------------------------*/
.res-table{
	width:100%;
    margin:2em auto;
	border:#D3D0D0 1px solid;
}
.res-table th{
    padding:5px;
	display:block;
	background:#F6F4F4;
	font-weight:normal;
	text-align:center;
}


.res-table td{
	padding:5px;
	display:block;
	text-align:center;
}



/*--------------------------------------
  PCでの表示
--------------------------------------*/
@media(min-width:768px) {
.res-table{
	width:100%;
    margin:5px auto;
	font-size:90%;
	border:#D3D0D0 1px solid;　  
}
.res-table tr{
    border-bottom:#D3D0D0 1px solid;
}
.res-table tr:last-child{
	border:none
 }
.res-table th{
	width:40%;   
    padding:5px 10px;
	display:table-cell;
	border-right:#D3D0D0 1px solid;
	text-align: left;
}

.res-table td{
	width:60%;   
    padding:5px 10px;
	display:table-cell;
	text-align: left;
}
}

@media(min-width:992px) {
	
.res-table{
	width:100%;
    margin:5px auto;
	font-size:90%;
	border:#D3D0D0 1px solid;　  
}
.res-table tr{
    border-bottom:#D3D0D0 1px solid;
}
.res-table tr:last-child{
	border:none
 }
.res-table th{
	width:20%;   
    padding:5px 10px;
	display:table-cell;
	border-right:#D3D0D0 1px solid;
	text-align: left;
}

.res-table td{
	width:80%;   
    padding:5px 10px;
	display:table-cell;
	text-align: left;
}	
}
