.list_item {
  width: calc(272 / 1160 * 100%);
}
.list_item .img {
  position: relative;
}
.list_item .property_tag {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--white);
  background-color: var(--dark);
  padding: .3rem 1.0rem;
  z-index: 1;
}
.list_item .head,
.list_item .address,
.list_item .access,
.list_item .floor,
.list_item .fee {
  color: var(--letter_dark);
}
.list_item .head {
  margin-top: 1.6rem;
  width: fit-content;
}
.list_item .address {
  margin-top: .4rem;
  border-bottom: 1px solid var(--border_color);
  padding-bottom: .9rem;
}
.list_item .address_icon {
  margin-right: .4rem;
}
.list_item .access {
  margin-top: .6rem;
}
.list_item .price {
  margin-top: 1.0rem;
  color: var(--red);
}

/* スマホ */
@media screen and (max-width: 480px) {
  .list_item {
    width: 48%;
  }
}