@charset "UTF-8";
#rental .pageMv {
  padding-bottom: 0;
}
#rental .pageMv-heading .pageMv-title {
  padding-bottom: 80px;
}
#rental .pageMv-lead {
  padding-bottom: 40px;
}
#rental .section:not(.pageMv) + .section:not(.pageMv) {
  padding-top: 48px;
}
#rental .section:not(.pageMv):last-of-type {
  padding-bottom: 88px;
}

.rental-rentalBtn {
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 64px;
}
.rental-rentalBtn .globalBtn {
  min-height: 72px;
  padding: 27px 24px;
  font-size: 15px;
  letter-spacing: 0.04em;
}
@media (max-width: 799px) {
  .rental-rentalBtn .globalBtn {
    line-height: 1.25;
    padding: 27px 20px;
  }
}

.rental-rentalBtn-tx {
  padding-top: 8px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0;
  color: #231815;
  text-align: center;
}

/* ===== 賃貸中物件カード ===== */
.rentalCard {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  color: #231815;
}

.rentalCard-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.rentalCard-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.rentalCard-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #A64C4C;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 6px 8px;
}

.rentalCard-name {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
}

.rentalCard-info {
  position: relative;
  z-index: 0;
  padding: 12px 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  background: -webkit-gradient(linear, left top, right top, from(#A5D3B6), to(#7E9FD2));
  background: -webkit-linear-gradient(left, #A5D3B6 0%, #7E9FD2 100%);
  background: linear-gradient(90deg, #A5D3B6 0%, #7E9FD2 100%);
}
.rentalCard-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: -1;
  pointer-events: none;
}
.rentalCard-info .area {
  font-size: 14px;
  line-height: 1;
}
.rentalCard-info .station {
  font-size: 14px;
  line-height: 1.3;
  min-height: 36px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.rentalCard-info .units {
  font-size: 14px;
  line-height: 1.3;
}

/* ボタンは既存 .external-btn をそのまま使用。文字の中央寄せにしたい場合のみ↓ */
.rentalCard-btn .text {
  text-align: center;
}

.rental-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 800px) {
  .rental-list ul {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 3%;
  }
}
@media (max-width: 799px) {
  .rental-list ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 800px) {
  .rental-list ul li {
    width: 31.3333333333%;
  }
}
.rental-list ul li:nth-child(n+4) {
  margin-top: 48px;
}
@media (max-width: 799px) {
  .rental-list ul li:nth-child(n+2) {
    margin-top: 24px;
  }
}