@charset "UTF-8";
.real-estate-single .real-estate-property {
  padding: 80px 0;
  background: #f4f4f4;
}
.real-estate-single .real-estate-property .real-estate-property__container {
  width: 100%;
  max-width: 1238px;
  margin: 0 auto;
  padding-top: 80px;
  display: grid;
  grid-template-columns: 478px minmax(0, 1fr);
  grid-column-gap: 40px;
}
.real-estate-single .real-estate-property .property__heading {
  grid-column: 1/2;
  position: sticky;
  top: 80px;
  align-self: start;
  z-index: 1;
}
.real-estate-single .real-estate-property .property__heading .property__title-left {
  font-size: 40px;
  font-weight: 300;
  margin: 0 0 24px;
  line-height: 120%;
}
.real-estate-single .real-estate-property .property__heading .property__subtitle-left {
  color: #A6A9AB;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #A6A9AB;
  text-align: justify;
  font-family: Oswald;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: normal;
}
.real-estate-single .real-estate-property .for-rent__card {
  height: 100%;
  max-width: 360px;
  width: 100%;
  min-height: auto;
}
.real-estate-single .real-estate-property .for-rent__card .for-rent__status {
  display: none;
}
.real-estate-single .real-estate-property .for-rent__card .for-rent__image {
  max-height: 190px;
  max-width: 190px;
}
.real-estate-single .real-estate-property .for-rent__card-content {
  padding: 16px;
}
.real-estate-single .real-estate-property .for-rent__card-tags {
  color: var(--393C41, #333);
  font-style: normal;
  font-weight: 400;
}
.real-estate-single .real-estate-property .for-rent__card-hashtags {
  font-weight: 400;
  font-weight: 400;
}
.real-estate-single .real-estate-property .for-rent__card-image {
  padding-top: 65px;
}
.real-estate-single .real-estate-property .property__grid {
  grid-column: 2/3;
  display: grid;
  grid-template-columns: 360px 360px;
  row-gap: 0;
  column-gap: 0;
}
.real-estate-single .real-estate-property .property__more {
  grid-column: 2/3;
  display: flex;
  justify-content: flex-end;
  margin-top: 48px;
}
.real-estate-single .real-estate-property .property__more .property__more-button {
  /* 余白はFrame 13に合わせ、基礎は.globalの.btnを使用 */
  height: 54px;
  padding: 11px 20px;
  border-radius: 36px;
  justify-content: space-between;
  font-size: 16px;
  max-width: 238px;
  width: 100%;
}

/* 右はみ出し防止（コンテナ幅以下で1カラム化）*/
@media (max-width: 1238px) {
  .real-estate-single .real-estate-property {
    padding: 56px 0;
  }
  .real-estate-single .real-estate-property .real-estate-property__container {
    grid-template-columns: minmax(0, 1fr);
    grid-column-gap: 0;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  .real-estate-single .real-estate-property .property__heading {
    grid-column: 1/-1;
    position: static;
    top: auto;
    margin-bottom: 40px;
  }
  .real-estate-single .real-estate-property .property__heading .property__title-left {
    font-size: 28px;
    margin: 0 0 16px;
  }
  .real-estate-single .real-estate-property .for-rent__card {
    max-width: 343px;
    min-height: 263px;
  }
  .real-estate-single .real-estate-property .for-rent__card .for-rent__image {
    max-height: 139.5px;
    max-width: 139.5px;
  }
  .real-estate-single .real-estate-property .for-rent__card-content {
    padding: 16px 16px 10px;
  }
  .real-estate-single .real-estate-property .for-rent__card-image {
    padding-top: 0;
  }
  .real-estate-single .real-estate-property .property__grid,
  .real-estate-single .real-estate-property .property__more {
    grid-column: 1/-1;
  }
  .real-estate-single .real-estate-property .property__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .real-estate-single .real-estate-property .property__more {
    justify-content: end;
    margin-top: 40px;
  }
}
@media (max-width: 960px) {
  .real-estate-single .real-estate-property .real-estate-property__container {
    padding: 0 16px;
  }
}