@charset "utf-8";

button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
	font-family: '游ゴシック', 'Montserrat', sans-serif;
	font-weight: 600;
}

.line{
	display:flex;
	flex-wrap:wrap;
	justify-content: space-around;
}

.plr2{
	padding-left:2%;
	padding-right:2%;
}

.h1_title{
	height: 500px;
	background: url("../img/bg_top.svg") repeat;
	background-size: 500px 500px;
	flex-direction: column;
	justify-content: center;
	align-items:center;
	align-content: center;
}

.h1_title h1 img{
	height:300px;
}

.h1_title h2{
	line-height: 1.6em;
}

@media (max-width: 768px) {
	.h1_title{
		height: 350px;
		background-size: 300px 300px;
	}
	
	.h1_title h1 img{
		height:220px;
	}
	
	.h1_title h2{
		font-size: 1.6rem;
	}
}

#contesntsWrapper .tab {
  margin-top: 50px;
  margin-bottom:30px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
}

#contesntsWrapper .tab span {
  /*background-color: #ffe5df;*/
  font-size: 1.8rem;
  padding: 15px 20px;
  border-radius: 25px;
  border: solid 2px #3EB376;
  width: 43%;
  display: flex;
  justify-content:center;
  align-items: center;
  /*margin-right: 20px;*/
  cursor: pointer;
  font-weight: bold;
}

@media (max-width: 768px) {
  #contesntsWrapper .tab span {
    margin-right: 10px;
  }
}

#contesntsWrapper .tab span.active {
  background-color: #3EB376;
  color: white;
}

#contesntsWrapper .tab span:last-child {
  /*margin-right: 0;*/
}

#contesntsWrapper fieldset {
	border: none;
	padding:50px 0;
}

#contesntsWrapper fieldset button {
  background-color: white;
  border: solid 1px #333;
  border-radius: 15px;
  padding: 6px 10px;
  margin-right: 15px;
  min-width: 155px;
  margin-top: 15px;
  color: #333;
  cursor: pointer;
  font-size: 1.35rem;
  /*font-weight: 600;*/
}

@media (max-width: 768px) {
  #contesntsWrapper fieldset button {
    min-width: auto;
    margin-top: 10px;
  }
}

#contesntsWrapper .choice_t{
	border:none;
	background-color:#BBEBB0;
}

#contesntsWrapper .choice_t .flex{
	flex-wrap: wrap;
	/*justify-content: flex-start;*/
	flex-direction: row;
    padding-left: 0;
    padding-right: 0;
}

#map {
  display: none;
  position: relative;
}

#map:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
  height: 1px;
  background-color: white;
}

@media (max-width: 768px) {
  #map:after {
    top: 30px;
  }
}

#map:before {
  content: "";
  height: 500px;
  width: 1px;
  background-color: white;
  left: 0px;
  top: 50px;
  display: block;
  position: absolute;
  z-index: 1;
}

@media (max-width: 768px) {
  #map:before {
    top: 30px;
  }
}

#map iframe {
  max-width: 980px;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  height: 500px;
  margin-top: 50px;
}

@media (max-width: 768px) {
  #map iframe {
    margin-top: 30px;
  }
}

#propertyList>ul{
	display:grid;
	grid-template-columns:repeat(auto-fit, minmax(400px, 1fr));
	place-content: center;
	place-items:center;
}

#propertyList ul>li{
	width:100%;
	max-width: 420px;
	/*max-height: 280px;*/
	overflow:hidden;
	/*width: 50%;*/
	/*margin-top:50px;*/
}

@media (max-width: 768px) {
	#propertyList ul>li{
		width: 90%;
		min-width: 0;
	}
}

#propertyList li.card_case{
	margin-bottom:50px;
	background-color: #F7F7F7;
	border-radius: 12px;
}

#propertyList li .mainImage_card_case{
	position:relative;
}

#propertyList li .mainImage_card_case img{
	border-radius: 12px;
	width: 100%;
	height: 300px;
	object-fit:cover;
	object-position: center center;
}

#propertyList li .category{
	position:absolute;
	right:0;
	top:0;
	font-size:1.6rem;;
	font-weight: 600;
	width:160px;
	height:40px;
	line-height: 40px;
	border-radius: 0 12px 0 12px;
	background-color:hsla(0,0%,100%,0.63);
	text-align: center;
	color: #464646;
	z-index: 5;
}
#propertyList li li.openDate{
	position:absolute;
	left:20px;
	top:280px;
	background-color: #575757;
	color: white;
	padding:5px 20px;
	width: 180px;
}

#propertyList li li.nameDate{
	font-size: 1.8rem;
	margin-top:30px;
	margin-left:20px;
	margin-bottom:5px;
}

#propertyList li .lead_case{
	color: #464646;
	background-color: white;
	border-radius: 17px;
    border: solid 2px #3EB376;
	width: 120px;
	height: 35px;
	margin:0 20px 20px auto;
	display: block;
	text-align: center;
	
}

#propertyList li .lead_case:hover {
  background: #3EB376;
  color:white;
}

/* medium screen --------------------------------------------------------------------------------*/

@media (min-width: 640px) {

}

/* large screen --------------------------------------------------------------------------------*/

@media (min-width: 950px) {
	
}