@charset "utf-8";

/*ギャラリー個別設定*/
.gallery {
	grid-template-columns: repeat(5, 1fr);
}

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

/* ネット用キャッチ */
.net_Catch {
	max-width: 1200px;
	width: 100%;
	padding: 20px;
	background-color: #e6fcff;
	box-sizing: border-box;
}

.net_Catch h3 {
	margin-bottom: 10px;
	font-size: min(4.5vw, 18px);
	font-weight: 600;
}

.net_Catch p {
	font-size: 14px;
	line-height: 1.5;
}

/* 間取り詳細 */
.detail_Block01 {
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 10px 30px;
	margin-bottom: 20px;
}

.plan_Img {
	width: 45%;
	height: 70vh;
}

.plan_Img .overlay {
	background-color: rgba(0, 0, 0, .2);
}

.plan_Img>img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
}

.rent_Block {
	width: calc(100% - (45% + 30px));
}

.rent_List>li {
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
	padding: 15px 0;
	border-bottom: 1px dotted #888;
}

.rent_List>li>dl {
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	gap: 0.5em;
	width: 100%;
	font-size: 16px;
}

.rent_List p {
	line-height: 1.8;
}

.rent_List dt {
	display: flex;
	position: relative;
	width: 8em;
	padding-right: 5px;
	box-sizing: border-box;
}

.rent_List dt::after {
	display: block;
	content: ':';
	position: absolute;
	right: 0;
	font-size: 16px;
}

.rent_List dd {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: baseline;
	gap: 5px;
	width: calc(100% - 8.5em);
}

.rent_List dd .rent_Price,
.rent_List dd .ldk_txt {
	color: #941D12;
	font-size: 2em;
	line-height: 1;
}

.rent_List dd .rent_Price span {
	font-size: 20px;
}

.rent_List .rent_Btn {
	display: block;
	padding: 16px 13px;
	color: #333;
	background-color: #FBF253;
	font-size: 14px;
	font-weight: 600;
	box-sizing: border-box;
}

.detail_Block02 {
	flex-wrap: wrap;
	gap: 50px;
	margin-top: 50px;
}

.detail_Block02>div {
	width: calc((100% - 50px) / 2);
}

.detail_Block02>div:last-child {
	width: 100%;
}

.detail_Block02 h4 {
	padding-bottom: 20px;
	color: #0055a2;
	border-bottom: 2px solid #0055a2;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-align: center;
}

.detail_Block02>div p {
	font-size: 14px;
	line-height: 1.8;
}

.acc_Block {
	margin-bottom: 2px;
}

.acc_Block:first-of-type {
	margin-top: 2px;
}

.acc_Block .acc_open {
	display: block;
	position: relative;
	padding: 20px 10px;
	color: #333;
	background-color: #d7eaf2;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 600;
	cursor: pointer;
	box-sizing: border-box;
}

.acc_Block .acc_open::after {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	width: 20px;
	height: 20px;
	background: url(/image/search/icon_plus_acc.svg) no-repeat center center;
	background-size: cover;
	transition: .3s;
	transform: translateY(-50%);
}

.acc_Block .acc_open.acc_active::after {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	width: 20px;
	height: 20px;
	background: url(/image/search/icon_close_acc.svg) no-repeat center center;
	background-size: cover;
	transform: translateY(-50%) rotate(180deg);
}

.acc_Block .view_Box {
	display: none;
	box-sizing: border-box;
}

.acc_Block .view_Box>p {
	margin-top: 15px;
}

.detail_Block03 {
	margin-top: 50px;
	font-size: 16px;
	line-height: 1.6;
}

.tag_List {
	flex-wrap: wrap;
	gap: 10px;
	margin: 10px 0;
}

.tag_List .tag {
	padding: 5px 16px;
	color: #333;
	background-color: #FBF253;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 600;
	box-sizing: border-box;
}

/* 
.tag_List .tag {
	width: calc((100% - 90px) / 10);
} */

@media only screen and (max-width: 900px) {

	.gallery {
		grid-template-columns: repeat(2, 1fr);
	}

	/* ネット用キャッチ */
	.net_Catch {
		padding: 20px;
		order: 2;
	}

	.net_Catch p {
		font-size: 12px;
	}

	/* 間取り詳細 */
	.detail_Block01 {
		flex-wrap: wrap;
		flex-direction: column;
	}

	.plan_Img {
		width: 100%;
		height: auto;
		aspect-ratio: 1.5/1;
	}

	.rent_Block {
		width: 96%;
		margin: 0 auto;
		order: 3;
	}

	.rent_List>li {
		flex-wrap: wrap;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		padding: 8px 0;
	}

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

	.rent_List .rent_Btn {
		display: block;
		width: 100%;
		text-align: center;
	}

	.detail_Block02 {
		flex-wrap: wrap;
		flex-direction: column;
		margin-top: 50px;
		gap: 50px;
	}

	.detail_Block02>div {
		width: 90%;
		margin: 0 auto;
	}

	.detail_Block02>div:nth-child(2) {
		order: 3;
	}

	.detail_Block02>div:nth-child(3) {
		width: 90%;
		order: 2;
	}

	.detail_Block02 h4 {
		padding-bottom: 10px;
		font-size: 18px;
	}

	.acc_Block .acc_open {
		font-size: 14px;
	}

	.acc_Block .view_Box>p {
		font-size: 14px;
	}

	.detail_Block03 {
		width: 90%;
		margin: 50px auto 0;
		font-size: 14px;
	}

	/* .tag_List .tag {
		width: calc((100% - 30px) / 4);
	} */

}

/* VR読み込み */
.vr_Area>div {
	max-width: 900px;
	width: 90%;
	margin: 50px auto;
}

.vr_Area>div iframe {
	width: 100%;
	height: 100%;
	aspect-ratio: 32/23;
}