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

/* details　物件概要
---------------------------------------------------------------*/
section#details_in {}
#details_in table {
	box-sizing: border-box;
	border-collapse: collapse;
	width: 100%;
}
#details_in table th,
#details_in table td {
	border-block-end: 1px solid #212A2D;
	vertical-align: middle;
	font-style: normal;
	text-align: justify;
	line-height: 3;
}
#details_in table th {
	width: 16%;
	font-weight: bold;
}
#details_in table a {
	padding: 0 .5em;
	text-decoration: underline;
	color: var(--accent-color);
	transition: .5s all;
}
#details_in table a:hover {
	opacity: .5;
}

@media screen and (max-width: 767px) {
	#details_in table {
		width: 100%;
	}
	#details_in table th,
	#details_in table td {
		display: block;
		width: 100%;
		padding-left: 1em;
		border-block-end: 0px;
	}
	#details_in table th {
		background-color: #d8d1c3;
		mix-blend-mode: multiply;
	}
}