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

.property-list-wrap{
	width: 100%;
	padding: 60px 0 40px;
	background: #fff;/*#EBEBEC;*/
}

.property-list-wrap-inner{
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
}

.title-image{
	width: 140px;
	position: absolute;
	top: -30px;
	right: 0;
	z-index: 2;
}

.title-image img{
	width: 100%;
}

.property-list-wrap-inner h1{
	font-size: 3.2rem;
	width: 90%;
	color: #00A0E9;
	border-bottom: solid 1px #000;
	padding-bottom: 15px;
	margin-bottom: 40px;
}

.article-wrap{
	width: 100%;
	flex-wrap: wrap;
	justify-content: space-between;
}

.property-list{
	width: 31%;
	background: #fff;
	border-radius: 5px;
	margin-bottom: 25px;
	box-shadow: 0 0 5px gray;
	align-self: stretch;
}

.modal__trigger {
	cursor: pointer;
}

.property-image{
	width: 100%;
	position: relative;
}

.property-image img{
	width: 100%;
	border-radius: 5px 5px 0 0;
}

.sub-color{
	font-size: 1.5rem;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	display: inline-block;
	background: #00A0E9;
	padding: 5px 10px;
	border-radius: 5px;
	margin: 0;
	position: absolute;
	left: 16px;
	bottom: -12px;
}

.property-text{
	width: 100%;
	padding: 14px 18px;
	box-sizing: border-box;
}

.property-text ul{
	width: 100%;
}

.property-text ul li{
	font-size: 1.5rem;
	line-height: 2.5;
	border-bottom: solid 1px gray;
}

.property-text ul li:last-of-type{
	border-bottom: none;
}

.property-text ul li span{
	font-weight: bold;
}

.property-text ul li span:before{
	content:'●';
	color: #00A0E9;
	margin-right: 3px;
}

.property-list-title{
	font-size: 2rem;
	font-weight: bold;
	line-height: 2;
}

.property-list-title:before{
	display: none;
}

/*---------------------------------
	モーダルの内容部分
--------------------------------*/

/*-------------共通部分-------------*/
.mordal-trigers{
	display: block;
	cursor: pointer;
}

#modal-overlay{
	display: none;
	background: rgba(0, 0, 0, .6); 
	width: 100%;
	height: 100%;
	position: fixed; 
	top: 0;
	left: 0;
	z-index: 999;
}

.close-buttons-wrap{
	position: absolute;
	top: 0;
	right: 0;
}

.mordal-close-buttons{
	position: relative;
	width: 44px;
	height: 44px;
	background: rgba(50, 50, 50, 1);
	cursor: pointer;
	transition: opacity .6s;
	border: none;
	outline: none;
	padding: 0;
	appearance: none;
	top: 0;
	right: 0;
}

.mordal-close-buttons:before{
	position: absolute;
	top: 50%;
	left: 50%;
	color: #fff;
	content: '×';
	transform: translate(-50%, -50%);
	font-size: 3rem;
}

.modal-style{
	display: none;
	background: white;
	width: 60%;
	height: 90%;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
	overflow-y: scroll;
}

.modal-style-inner{
	height: 100%;
	position: relative;
}

.modal__content{
	width: 90%;
	/*height: 100%;*/
	margin: 0 auto;
	padding: 40px;
	box-sizing: border-box;
	background: #fff;
}

.modal__content p{
	margin: 0;
}

/*-------------各物件ごとの内容-------------*/
.modal-inner,
.modal-inner img{
	width: 100%;
}

.modal-sub-image{
	width: 100%;
	flex-wrap: wrap;
	justify-content: space-between;
}

.modal-sub-image li{
	width: 31%;
	margin-top: 20px;
}


.close-bottom{
	width: 100%;
	text-align: center;
}

.mordal-close-buttons2{
	cursor: pointer;
	width: 100%;
	font-size: 2rem;
	color: #00A0E9;
	padding: 8px;
	margin-top: 20px;
	border: solid 1px #00A0E9;
	outline: none;
	appearance: none;
	background: #fff;
	border-radius: 25px;
	transition: 0.5s;
}

.mordal-close-buttons2:hover{
	color: #fff;
	background: #00A0E9;
}

/*-------------物件詳細情報テキスト部分-------------*/
.property-info{
	width: 100%;
	margin: 20px auto;
	padding: 20px 0;
	border-top: solid 3px gray;
	border-bottom: solid 3px gray;
}

.property-info h3{
	font-size: 1.8rem;
	font-weight: bold;
}

.property-info table{
	width: 100%;
	font-size: 1.5rem;
}


/* ===========================================================================


メディアクエリ//タブレット表示用スタイル


=========================================================================== */
@media screen and (min-width:571px) and (max-width:859px){
	.property-list-wrap{
		padding: 40px 0 30px;
	}
	
	.property-list-wrap-inner{
		width: 90%;
	}
	
	.title-image{
		width: 120px;
		top: -20px;
	}
	
	.property-list{
		width: 48%;
	}

/*---------------------------------
	モーダルの内容部分
--------------------------------*/

/*-------------共通部分-------------*/

	.mordal-close-buttons{
		width: 40px;
		height: 40px;
	}

	.modal-style{
		width: 80%;
		height: 90%;
	}
}

/* ===========================================================================


メディアクエリ//スマホ表示用スタイル


=========================================================================== */
@media screen and (max-width:570px){
	.property-list-wrap{
		padding: 30px 0 20px;
	}

	.property-list-wrap-inner{
		width: 90%;
	}
	
	.title-image{
		width: 80px;
		top: -15px;
	}

	.property-list-wrap-inner h1{
		font-size: 2.8rem;
		padding-bottom: 10px;
		margin-bottom: 20px;
	}
	
	.article-wrap{
		width: 100%;
		flex-direction: column;
	}
	
	.property-list{
		width: 100%;
		margin-bottom: 20px;
	}

/*---------------------------------
	モーダルの内容部分
--------------------------------*/

/*-------------共通部分-------------*/
	.mordal-close-buttons{
		width: 30px;
		height: 30px;
	}
	
	.modal-style{
		width: 95%;
	}
	
	.modal__content{
		width: 95%;
		padding: 24px 16px;
	}

/*-------------各物件ごとの内容-------------*/
.modal-sub-image{
	flex-direction: column;
}

.modal-sub-image li{
	width: 100%;
	margin-top: 12px;
}

.mordal-close-buttons2{
	font-size: 1.6rem;
	border-radius: 16px;
}

}