@charset "UTF-8";
/* ==========================================================================//
//
// 物件情報 一覧
//
// ========================================================================== */
.lead_area {
  margin-bottom: 30px;
}
@media all and (min-width: 751px) {
  .lead_area {
    margin-bottom: 40px;
  }
}
.lead_area .copy {
  font-size: 20px;
  line-height: 1.9;
}
@media all and (min-width: 751px) {
  .lead_area .copy {
    font-size: 32px;
  }
}
.lead_area p {
  font-size: 13px;
  line-height: 2;
  margin-top: 10px;
}
@media all and (min-width: 751px) {
  .lead_area p {
    font-size: 17px;
  }
}

/* カテゴリー
---------------------------------------------------------- */
.category_container {
  background-color: #F2F6F7;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 60px;
}
@media all and (min-width: 751px) {
  .category_container {
    border-radius: 8px;
    padding: 30px 40px;
    margin-bottom: 100px;
  }
}
.category_container .heading {
  font-size: 15px;
  margin-bottom: 10px;
}
@media all and (min-width: 751px) {
  .category_container .heading {
    font-size: 20px;
  }
}
.category_container .category_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
}
@media all and (min-width: 751px) {
  .category_container .category_list {
    gap: 12px;
  }
}
.category_container .category_item a {
  display: block;
  border-radius: 4px;
  border: 1px solid #DCE2E2;
  line-height: 1;
  font-size: 12px;
  padding: 9px;
}
@media all and (min-width: 751px) {
  .category_container .category_item a {
    font-size: 16px;
    padding: 12px 20px;
  }
}
@media (hover: hover) {
  .category_container .category_item a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .category_container .category_item a:hover {
    border-color: #174556;
  }
}
.category_container .category_item.current a {
  background-color: #174556;
  border-color: #174556;
  color: #fff;
}

/* 記事一覧
---------------------------------------------------------- */
.property_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
@media all and (min-width: 751px) {
  .property_list {
    gap: 60px 30px;
  }
}

.property_item {
  width: 100%;
}
@media all and (min-width: 751px) {
  .property_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: calc((100% - 60px) / 3);
  }
}
@media (hover: hover) {
  .property_item a img {
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  }
  .property_item a:hover img {
    -webkit-transform: scale(1.07);
            transform: scale(1.07);
  }
}
@media all and (min-width: 751px) {
  .property_item a {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.property_item .thumb {
  overflow: hidden;
}
.property_item .thumb img {
  aspect-ratio: 38/25;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.property_item .property_cont {
  margin-top: 20px;
}
@media all and (min-width: 751px) {
  .property_item .property_cont {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
}
.property_item .property_ttl {
  font-size: 15px;
}
@media all and (min-width: 751px) {
  .property_item .property_ttl {
    font-size: 18px;
  }
}
.property_item .post_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5px;
}
.property_item .post_category span {
  color: #fff;
  background-color: #174556;
  border-radius: 2px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  font-size: 11px;
  padding: 5px 8px;
  margin-bottom: 4px;
}
@media all and (min-width: 751px) {
  .property_item .post_category span {
    font-size: 12px;
    padding: 5px 10px;
  }
}
.property_item .city {
  position: relative;
  color: #9EA7AD;
  font-size: 12px;
  padding-left: 20px;
  margin-top: 8px;
}
.property_item .city::before {
  position: absolute;
  content: "";
  background-image: url(../../images/common/icon/map_pin.svg);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 3/4;
  width: 13px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media all and (min-width: 751px) {
  .property_item .property_foot {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.property_item .price_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
@media all and (min-width: 751px) {
  .property_item .price_wrap {
    margin-top: 10px;
  }
}
.property_item .price_wrap .price {
  font-family: "Lato", sans-serif;
  letter-spacing: 0.025em;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 16px;
}
@media all and (min-width: 751px) {
  .property_item .price_wrap .price {
    font-size: 18px;
  }
}
.property_item .price_wrap .sale_mark {
  color: #fff;
  background-color: #65A2BF;
  border-radius: 2px;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.025em;
  font-weight: 400;
  line-height: 1;
  font-size: 11px;
  padding: 5px 8px;
  /* 販売予告 */
  /* 販売終了 */
}
@media all and (min-width: 751px) {
  .property_item .price_wrap .sale_mark {
    font-size: 12px;
    padding: 5px 10px;
  }
}
.property_item .price_wrap .sale_mark.notice {
  background: #81B0A2;
}
.property_item .price_wrap .sale_mark.sold {
  background: #aaa;
}