@charset "UTF-8";

/* outline
----------------------------------------*/

.inner{
	max-width: 1000px;
	margin: 0 auto;
	padding: 75px 0 40px;
}

h3{
	font-size: 1.7rem;
}
table {
	width: 100%;
	border-spacing: 0;
	border-collapse: separate;
	font-size: 1.4rem;
	margin-bottom: 80px;
	
}
table th {
	padding: 14px 15px 13px 30px;
	word-break: break-all;
	text-align: left;
	font-weight: bold;
	width: 30%;
}
table td {	
	padding: 14px 15px 13px 10px;
	margin-bottom: 1px;    
	word-break: break-all;
}
table td dl {	
	display: flex;
	justify-content: flex-start;
}
table td dl dd {	
	flex: 1;
}
table tr:nth-child(odd) {
  background-color: #EBEBEB;
}

@media only screen and (max-width: 768px) {
	.inner{
		padding: calc(40 / 375 * 100vw) calc(25 / 375 * 100vw) calc(60 / 375 * 100vw);
	}
	h3{		
		font-size: 1.4rem;
	}
	table {
		font-size: 1.3rem;
	}
	table tr{
		display: block;
		width: 100%;
	}
	table td {	
		padding: 16px 15px 15px 10px;
		margin-bottom: 1px;    
		word-break: break-all;
	}
	table tr:nth-child(odd) {
		background-color: transparent;
	}
	table th {
		background-color: rgba(28,12,0,0.08);
	}
	table th,
	table td {
		display: block;
		width: 100%;
		padding: 10px;	
	}
}
