@charset "UTF-8";
.mvsubbox .mvbox-info {
    background-image: url("../img/property/mv_property.jpg");
}

.selectbtn {
	display: flex;
  	justify-content: flex-end;
  	align-items: center;
}
.selectwrap{
    position: relative;
	margin-bottom: 6rem;
	line-height: 1;
	padding: 0;
	border: 1px solid #D2323C;
	background-color: #FFF;
	border-radius: 0.5rem;
}
.selectwrap::before{
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    background-color: #FFF;
	border-radius: 0 0.5rem 0.5rem 0;
    height: 4rem;
    width: 4rem;
}
@media screen and (max-width: 767.98px) {
	.selectwrap::before{
    	width: 3rem;
    	height: 3rem;
	}
}
.selectwrap::after{
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 1rem;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.8rem 0.8rem 0 0.8rem;
    border-color: #D2323C transparent transparent transparent; 
}
@media screen and (max-width: 767.98px) {
	.selectwrap::after{
    	right: 10px;
    	border-width: 0.5rem 0.5rem 0 0.5rem;
	}
}
.selectwrap select {
    margin: 0;
    height: 4rem;
    position: relative;
    padding: 0 5rem 0 1rem;
}
@media screen and (max-width: 767.98px) {
	.selectwrap select{
    	height: 3rem;
    	padding: 0 3.5rem 0 1rem;
	}
}
.selectwrap select::-ms-expand {
    display: none;
}

.property-list{
    display: grid;
}
.property-item {
    border-bottom: 1px solid #CCC;
    margin-bottom: 8rem;
    padding-bottom: 8rem;
}

.property-item:last-of-type {
    margin-bottom: 0;
}

@media (min-width: 1200px){
    .property-item {
        display: grid;
        grid-template-columns: 44rem 61.5rem;
        column-gap: 2.5rem;
        align-items: start;
    }
}

@media (min-width: 768px) and (max-width: 1199px){
    .property-item{
        display: grid;
        grid-template-columns: 32rem 1fr;
        column-gap: 2rem;
        align-items: start;
    }
}

@media (max-width: 767.98px){
    .property-item{
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 3rem;
        align-items: start;
        margin-bottom: 4rem;
        padding-bottom: 4rem;
    }
}

.property-item__media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 2rem;
    background-color: #f5f5f5;
}
.property-item__media img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translate(-50%, -50%);
    display: block;
}

.property-item__body{ 
    min-width: 0;
}

@media (min-width: 768px){
    .property-item__specs{
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.2rem 2.4rem;
        margin-bottom: 1.6rem;
    }
    .property-item__specs dl{ 
        margin: 0; 
    }
}

.property-item__specs dl{
    display: grid;
    grid-template-columns: 12rem 1fr;
    column-gap: 1.2rem;
    row-gap: .6rem;
    margin: 0 0 1.2rem;
}
.property-item__specs dl.property-item__add {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 12rem 1fr;
    column-gap: 1.2rem;
    margin-bottom: 1.2rem;
}
.property-item__specs dt{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D2323C;
    color: #FFF;
}
.property-item__specs dd {
    display: flex;
    align-items: center;
}

.property-item__meta .lead{ 
    margin-top: 2rem; 
}

.property-item__actions {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 4rem;
    width: 100%;
    margin-top: 6rem;
}
@media screen and (max-width: 767.98px) {
    .property-item__actions {
        flex-direction: column;
        gap: 1.5rem; 
        margin-top: 3rem;
    }
}
.property-item__actions .btn,
.property-item__actions .btnmail {
    flex: 1;
    height: 5.2rem;
    font-size: 1.6rem;
    font-weight: 400;
    border-radius: 200rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
}
@media screen and (max-width: 767.98px) {
	.property-item__actions .btn,
	.property-item__actions .btnmail {
        width: 100%;
    	height: 4.2rem!important;
        font-size: 1.5rem;
    	padding: 0.5rem;
    }
}

.property-cont .pagination {
	padding-top: 10rem;
  	display: flex;
  	justify-content: center;
  	align-items: center;
}
@media screen and (max-width: 767.98px) {
	.property-cont .pagination {
    	padding-top: 4rem;
  	}
}
.property-cont .pagination > * {
	margin: 0 1rem;
}
@media screen and (max-width: 767.98px) {
	.property-cont .pagination > * {
    	margin: 0 0.4rem;
  	}
}
.property-cont .pagination .prev,
.property-cont .pagination .next{
	width: 4.5rem!important;
  	height: 4.5rem!important;
  	border-radius: 200rem;
  	border: 1px solid #D2323C;
  	position: relative;
  	display: flex;
  	justify-content: center;
  	align-items: center;
}
@media screen and (max-width: 767.98px) {
	.property-cont .pagination .prev,
  	.property-cont .pagination .next {
    	width: 2.4rem!important;
    	height: 2.4rem!important;
  	}
}
.property-cont .pagination .prev:before,
.property-cont .pagination .next:before {
	content: "";
  	display: block;
  	width: 2rem;
  	height: 1rem;
  	background: transparent url(../img/common/icon_arrow01.svg) no-repeat scroll center center/contain;
}
@media screen and (max-width: 767.98px) {
	.property-cont .pagination .prev:before,
  	.property-cont .pagination .next:before {
    	width: 1.4rem;
    	height: 0.7rem;
  	}
}
.property-cont .pagination .prev {
	transform: scaleX(-1);
}
.property-cont .pagination .page-numbers {
	width: 6rem;
  	height: 6rem;
  	border-radius: 200rem;
  	border: 1px solid #D2323C;
  	color: #D2323C;
  	display: inline-flex;
  	justify-content: center;
  	align-items: center;
  	font-size: 1.8rem;
  	line-height: 1;
}
@media screen and (max-width: 767.98px) {
	.property-cont .pagination .page-numbers {
    	width: 3rem;
    	height: 3rem;
    	font-size: 1.2rem;
  	}
}
.property-cont .pagination .page-numbers.current,
.property-cont .pagination .page-numbers:hover {
	background-color: #D2323C;
  	color: #FFF;
  	border-color: #D2323C;
}

.property-list .btnbox {
    margin-top: 4rem;
}
