.property_section{
  background: #FAFAF0;
  padding: 130px 0 60px;
}

.property_item_wrapper{
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.property_item{
  width: 32%;
  margin-right: 2%;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,.2);
  padding: 25px 30px 30px;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.property_item:nth-child(3n){
  margin-right: 0;
}

.property_item:nth-last-child(1),
.property_item:nth-last-child(2),
.property_item:nth-last-child(3){
  margin-bottom: 0;
}

.property_item_tab{
  margin: 0;
  font-size: 12px;
  font-family: "yug_b";
  padding: 5px 10px;
  box-sizing: border-box;
  display: inline-block;
}

.property_item_img_wrapper{
  width: 85%;
  margin: 15px auto 0;
}

.property_item_img_wrapper img{
  width: 100%;
}

.property_item_contents_wrapper{
  margin-top: 15px;
}

.property_item_midashi{
  margin: 0;
  font-family: "yug_b";
  font-size: 16px;
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
  text-align: center;
}

.property_item_inner{
  margin-top: 15px;
}

.property_item_inner_item{
  display: flex;
  align-items: stretch;
  margin-bottom: 5px;
}

.property_item_inner_item_label{
  margin: 0 2.5% 0 0;
  font-size: 12px;
  background: #EDEDED;
  width: 36%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.property_item_inner_item:first-child .property_item_inner_item_label{
  font-family: "yug_b";
}

.property_item_inner_item_val{
  width: 61.5%;
  display: flex;
  align-items: center;
  font-family: "yug_b";
  font-size: 12px;
  padding: 5px 0;
}

.property_item_inner_item_price{
  font-size: 24px;
  font-family: "yug_b";
  line-height: 1;
}

.property_item_inner_item_unit{
  font-size: 15px;
  font-family: "yug_b";
  line-height: 1;
  margin-left: 5px;
}


.property_item_scaleimg_wrapper{
  display: none;
}

.property_item_scaleimg_wrapper.scale_img{
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 10;
  background: rgba(0,0,0,.4);
  width: 100%;
  height: 100vh;
}

.property_item_scaleimg_wrapper.scale_img img{
  display: block;
  width: 100%;
}

.property_item_scaleimg_inner{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 11;
  max-width: 45%;
  max-height: 90%;
}

.property_item_scaleimg_close{
  color: #fff;
  text-align: right;
  display: block;
  font-size: 50px;
  line-height: 1;
}

.property_item_img_wrapper:hover,
.property_item_scaleimg_close:hover{
  cursor: pointer;
}


@media(max-width: 670px){

  .property_section{
    padding: 30px 0 50px;
  }

  .property_item_wrapper{
    display: block;
  }

  .property_item{
    width: 100%;
    margin-right: 0;
    padding: 16px;
    margin-bottom: 20px;
  }

  .property_item:nth-last-child(2),
  .property_item:nth-last-child(3){
    margin-bottom: 20px;
  }

  .property_item_scaleimg_inner{
    width: 90%;
  }

}