.p-real-estate__inner {
  width: 100%;
  max-width: 1480px;
  padding: 0 20px 0 7vw;
  margin: 0 auto 160px auto;
}
.p-real-estate__intro {
  margin: 160px auto 60px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
}

.p-real-estate__intro h2 {
  margin-bottom: 24px;
  width: 24%;
  text-align: left;
}
.p-greeting__inner_r {
    width: 76%;
    text-align: left;
}

.p-real-estate__intro p {
  line-height: 2;
}

.p-property-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 520px));
  justify-content: center;
  gap: 40px;
}

.p-property-card {
  background: #fff;
  border: 1px solid #d8c19b;
}

.p-property-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.p-property-card__img {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.p-property-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.p-property-card__link:hover .p-property-card__img img {
  transform: scale(1.03);
}

.p-property-card__body {
  padding: 30px;
}

.p-property-card__area {
  display: inline-block;
  margin-bottom: 15px;
  padding: 6px 12px;
  border: 1px solid #d8c19b;
  font-size: 13px;
}

.p-property-card__ttl {
  margin-bottom: 15px;
  font-size: 24px;
}

.p-property-card__txt {
  margin-bottom: 20px;
  line-height: 1.8;
}

.p-property-card__more {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid #9b6d2d;
}

@media screen and (max-width: 767px) {

  .p-real-estate__intro {
    margin-bottom: 40px;
    text-align: left;
  }
  
  .p-real-estate__intro h2,
  .p-greeting__inner_r {
    width: 100%;
  }

  .p-property-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .p-property-card__body {
    padding: 22px;
  }

  .p-property-card__ttl {
    font-size: 20px;
  }

}




/* ========================================
   Property Detail
======================================== */

.p-property-detail {
  padding: 80px 0 100px;
}

.p-property-detail__lead {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.p-property-detail__lead h2 {
  font-family: "Hina Mincho", sans-serif;
  font-size: 2.8rem;
  letter-spacing: 0.18em;
  line-height: 1.5;
}

.p-property-detail__lead p {
  margin-top: 25px;
  line-height: 2;
}

.p-property-detail__ornament {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-top: 35px;
}

.p-property-detail__ornament::before,
.p-property-detail__ornament::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid #b28a50;
  transform: rotate(45deg);
}

.p-property-detail__visual-wrap {
  position: relative;
  margin-top: 55px;
}

.p-property-detail__visual {
  overflow: hidden;
}

.p-property-detail__visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.p-property-detail__body {
  padding: 30px 20px;
  border: 1px solid #d8c19b;
  border-top: 0;
  background: #fff;
  box-shadow: 0 20px 35px rgba(38, 38, 38, 0.1);
}

.p-property-detail__property-head {
  margin-bottom: 30px;
}

.p-property-detail__name {
  font-family: "Hina Mincho", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.p-property-detail__area {
  display: inline-block;
  margin-top: 15px;
  padding: 5px 12px;
  border: 1px solid #d8c19b;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
}

.p-property-detail__contents {
  display: grid;
  gap: 30px;
}

.p-property-detail__info {
  border-top: 1px solid #d8c19b;
}

.p-property-detail__info-row {
  display: grid;
  grid-template-columns: 75px minmax(0, 1fr);
  gap: 15px;
  padding: 14px 0;
  border-bottom: 1px solid #d8c19b;
}

.p-property-detail__info-row dt {
  letter-spacing: 0.12em;
}

.p-property-detail__info-row dd {
  line-height: 1.8;
}

.p-property-detail__tenant {
  padding: 25px;
  border: 1px solid #d8c19b;
}

.p-property-detail__tenant-label {
  margin-bottom: 10px;
  color: #8f1f00;
  font-family: "Cormorant Infant", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.25em;
}

.p-property-detail__tenant-name {
  font-family: "Hina Mincho", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.p-property-detail__tenant-txt {
  margin-top: 15px;
  font-size: 1.3rem;
  line-height: 1.9;
}

.p-property-detail__map {
  margin-top: 18px;
}

.p-property-detail__map a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 3px;
  border-bottom: 1px solid #8f1f00;
  transition: color 0.3s;
}


.p-property-detail__memo {
  grid-column: 1 / -1;
  border: none;
}


.p-property-detail__note {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #d8c19b;
  font-size: 1.2rem;
  line-height: 1.8;
}

.p-property-detail__note a {
  text-decoration: underline;
}

.p-property-detail__back {
  margin-top: 50px;
  text-align: center;
}

.p-property-detail__back a {
  display: inline-block;
  padding: 10px 35px;
  border: 1px solid #262626;
  transition: color 0.3s, border-color 0.3s;
}

@media (any-hover: hover) {

  .p-property-detail__map a:hover,
  .p-property-detail__note a:hover,
  .p-property-detail__back a:hover {
    color: #8f1f00;
  }

  .p-property-detail__back a:hover {
    border-color: #8f1f00;
  }

}

@media screen and (width >= 769px) {

  .p-property-detail__body {
    padding: 40px;
  }

  .p-property-detail__info-row {
    grid-template-columns: 100px minmax(0, 1fr);
  }

}

@media screen and (width >= 1025px) {

  .p-property-detail {
    padding: 120px 0 160px;
  }

  .p-property-detail__lead h2 {
    font-size: 4rem;
  }

  .p-property-detail__visual-wrap {
    margin-top: 80px;
  }

  .p-property-detail__body {
    padding: 50px 60px;
  }

  .p-property-detail__name {
    font-size: 3rem;
  }

  .p-property-detail__contents {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
    gap: 50px;
    align-items: start;
  }

  .p-property-detail__note {
    margin-top: 45px;
    padding-top: 25px;
  }

}