@charset "utf-8";

/* ---------------------------
details
------------------------------ */
#details {
	width: 100%;
	margin:0 auto;
	padding: 100px 0;
}
#details h2{	
	margin-bottom: 30px;
}
#details table {
	box-sizing: border-box;
	border-collapse: collapse;
	margin: 0 auto;
	padding-top: 25px;
	max-width:  950px;
	width: 90%;
	font-size: 1.6rem;
}
#details table th, #details table td {
	border-block-end: 1px solid #333;
	padding-inline-start: 8px;
	margin-block-start: 5px;
	vertical-align: middle;
	font-style: normal;
	height: 2.8em;
	text-align: left;
}
#details table th {
	width: 19%;
	font-weight:300;
}
@media (max-width: 767px) {
	#details {
		width: 100%;
		margin: 0 auto;
	}
	#details table {
		width: 90%;
	}
	#details table th, #details table td {
		display: block;
		height: auto;
		border-block-end: 0px;
	}
	#details table th {
		width: 100%;
		background-color: rgb(51 51 51 / 8%);
	}
}



