@charset "utf-8";

.point_Txt {
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
	margin-bottom: 50px;
}

.point_Txt>figure {
	width: 15em;
}

.point_Txt>p {
	color: #0055a2;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.8;
}

.detail {
	justify-content: center;
	align-items: flex-start;
	gap: 50px;
}

.list {
	width: fit-content;
	margin: 0 0 50px;
}

.list li:not(:first-child) {
	padding-top: 1em;
}

.list li>dl {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 1em;
	font-size: 18px;
	line-height: 1.5;
}

.list li dt {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 6em;
	color: #0055a2;
	font-weight: 600;
}

.list li dt:nth-child(2) {
	width: auto;
}

.icon_List {
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-end;
	gap: 40px 20px;
}

.icon_List span {
	position: relative;
	display: block;
	width: 80px;
	height: 80px;
	background-size: cover;
	background-repeat: no-repeat;
}

.icon_List span::before {
	display: block;
	position: absolute;
	top: -15px;
	left: 50%;
	width: 100%;
	font-size: 0.2em;
	font-weight: 600;
	text-align: center;
	transform: translateX(-50%);
}

.icon_List span.safe {
	background: url(/image/search/icon_safe.svg) no-repeat;
}

.icon_List span.safe::before {
	content: 'オートロック';
}

.icon_List span.pet {
	background: url(/image/search/icon_pet.svg) no-repeat;
}

.icon_List span.pet::before {
	content: 'ペット飼育可';
}

.icon_List span.net {
	background: url(/image/search/icon_net.svg) no-repeat;
}

.icon_List span.net::before {
	content: 'ネット無料';
}

.icon_List span.furniture {
	background: url(/image/search/icon_furniture.svg) no-repeat;
}

.icon_List span.furniture::before {
	content: '家具付き';
}

/* 建物リスト */
#results_Area {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	padding: 10px;
	background-color: #E5E8F3;
	box-sizing: border-box;
}

/* 満室のとき */
#results_Area .full_Box {
	color: #a20000;
}

#results_Area>div {
	padding: 10px;
	background-color: #fff;
	box-sizing: border-box;
}

/* .other_List:not(:first-child) {
	margin-top: 50px;
}

.floor_Ttl {
	display: block;
	margin-bottom: 20px;
	font-size: min(8vw, 22px);
	text-align: center;
	box-sizing: border-box;
}

.other_Block {
	justify-content: flex-start;
	align-items: stretch;
	position: relative;
	height: 100%;
	border-bottom: 1px solid #888;
}

.hidden {
	display: none;
}

.other_Block:first-of-type {
	border-top: 1px solid #888;
}

.other_Block::after {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 20px;
	height: 20px;
	border-top: 2px solid #941D12;
	border-right: 2px solid #941D12;
	transform: translateY(-50%) rotate(45deg);
	transition: .3s;
}

.other_Block:hover::after {
	right: -5px;
	opacity: .6;
}

.other_Block>a {
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
}

.other_Block>a figure {
	width: 40%;
}

.other_Block>a figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.check_Box {
	position: relative;
	width: 50px;
	padding: 10px;
	background-color: #ddd;
	box-sizing: border-box;
}

.check_Box>label {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.check_Box input {
	width: 20px;
	height: 20px;
	margin: 0 auto;
}

.detail_Box {
	width: calc(100% - (40% + 20px));
	height: fit-content;
	margin: auto 0;
	padding: 10px 0;
}

.detail_Box>p {
	font-size: 16px;
	line-height: 1.8;
}

.detail_Box>p.price {
	color: #941D12;
	font-size: 40px;
}

.detail_Box>p.price small {
	font-size: 15px;
} */

/* .search_List {
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px 10px;
}

.search_List>li {
	width: calc((100% - 10px) / 2);
}

.search_List>li a {
	position: relative;
	display: block;
	width: 100%;
	padding: 20px;
	background-color: #f6f6f6;
	border-bottom: 3px solid #0055a2;
	font-size: 18px;
	font-weight: 600;
	box-sizing: border-box;
}

.search_List>li a::after {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #0055a2;
	border-right: 2px solid #0055a2;
	transform: translateY(-50%) rotate(45deg);
} */

/* ロケーションの写真 */
.loc_gallery {
	grid-template-columns: repeat(5, 1fr);
}

.loc_gallery .gallery-item {
	aspect-ratio: 5/4;
}

@media only screen and (max-width: 900px) {
	.point_Txt {
		width: 90%;
		margin: 0 auto;
	}

	.point_Txt>figure {
		width: 30em;
	}

	.point_Txt>p {
		font-size: 16px;
	}

	.detail {
		flex-wrap: wrap;
		flex-direction: column;
		gap: 30px;
		margin-bottom: 50px;
	}

	.list {
		width: fit-content;
		margin: 20px auto;
	}

	.list li>dl {
		font-size: 14px;
	}

	.icon_List {
		gap: 10px;
		width: 90%;
		margin: 0 auto;
	}

	.icon_List>li {
		width: calc((100% - 30px) / 4);
	}

	.icon_List span {
		width: 100%;
		height: 80px;
		background-position: bottom bottom;
		aspect-ratio: 1/1;
	}

	.search_List {
		flex-direction: column;
		gap: 0;
	}

	.search_List>li {
		width: 100%;
	}

	.search_List>li a {
		font-size: 16px;
	}

	/* 建物リスト */
	/* #results_Area {
		width: 100%;
		padding: 10px;
	}

	.other_Block::after {
		right: -10px;
		width: 10px;
		height: 10px;
	}

	.other_Block:hover::after {
		right: -10px;
	}

	.other_Block>a {
		gap: 10px;
	}

	.check_Box {
		width: 30px;
		padding: 10px;
	}

	.check_Box input {
		width: 18px;
		height: 18px;
	} */

	/* ロケーションの写真 */
	.loc_gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}