@charset "utf-8";

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
管理物件
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.management-article {
	--content-width: 1340px
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- メイン
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.property-post-li:not(:last-child) {
	margin-bottom: var(--padding-block);
}

.property-header {
	margin-bottom: 20px;
}

.property-post-li:hover .wp-post-image {
	transform: none;
	filter: none;
}

.property-detail {
	width: min(100%, var(--content-width_small));
	margin-top: 60px;
	padding: 30px var(--padding-inline);
	background: var(--color_main_light);
}

.property-detail .heading_medium {
	border-bottom: 1px solid var(--color_sub);
}

.property-detail-text,
.property-detail-caption,
.property-detail-image,
.property-detail-images {
	margin-bottom: 50px;
}

.property-detail .post-image {
	position: relative;
	aspect-ratio: 4 / 3;
}

.property-detail .wp-post-image {
	opacity: 0.5;
	margin-bottom: 0;
	transform: scale(1.1) !important;
	filter: blur(2px) !important;
}

.property-detail .img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	object-fit: contain;
}
.property-post-li .property-image {
	aspect-ratio: 4 / 3;
}
@media (min-width: 768px) {
.property-post-li {
	display: grid;
	grid-template-rows: auto auto 1fr;
	column-gap: 7%;
}

.property-post-li:nth-child(2n+1) {
	grid-template-columns: minmax(auto, 410px) 54%;
	justify-content: end;
}

.property-post-li:nth-child(2n) {
	grid-template-columns: 54% minmax(auto, 410px);
	justify-content: start;
}

.property-header {
	margin-bottom: 30px;
	padding-top: 30px;
}

.property-post-li .property-image {
	/* height: 530px; */
	grid-row: 1 / 4;
}

.property-post-li:nth-child(2n+1) .property-image {
	margin-right: var(--padding-inline_negative);
	grid-column: 2;
}

.property-post-li:nth-child(2n) .property-image {
	margin-left: var(--padding-inline_negative);
}

.property-detail {
	padding: 50px 4%;
	grid-column: 1 / 3;
}

.property-post-li:nth-child(2n+1) .property-detail {
	justify-self: start;
}

.property-post-li:nth-child(2n) .property-detail {
	justify-self: end;
}

.property-detail-caption,
.property-detail-images {
	display: grid;
	grid-template-columns: 48% 48%;
	justify-content: space-between;
}
}

@media (max-width: 767.9px) {
.property-post-li .property-image {
	margin-bottom: 30px;
}
}
@media (max-width: 767.9px) {
	.post-li .wp-post-image {
			max-height: none;
	}
}