.property-page__hero {
  padding: 60px 0 40px;
  background: #F2F2F2;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
.property-page__hero h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: 500;
  margin-top: 30px;
  color: #333;
}
.property-page__hero p {
  font-family: "Noto Sans JP", sans-serif;
  color: #5f5f5f;
  font-size: 16px;
  margin-bottom: 0;
}

.property-list {
  background: #F2F2F2;
  padding-bottom: 40px;
}
.property-list .container {
  max-width: 1060px;
}
.property-list .property-card {
  background: #fff;
  padding: 30px 20px;
  margin-bottom: 40px;
}

.property-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.property-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  line-height: 1.3em;
  font-weight: 700;
  color: #333;
  margin: 0;
  position: relative;
  padding-left: 15px;
}
.property-card__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  margin: 0 auto;
  width: 5px;
  height: 100%;
  background: #AD814D;
}

.property-card__status {
  display: inline-block;
  padding: 3px 10px 2px 10px;
  background: #AD814D;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.property-card__body {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: stretch;
}

.property-card__info {
  flex: 0 0 487px;
  min-width: 487px;
}

.property-card__table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.property-card__table th,
.property-card__table td {
  padding: 6px 20px;
  border: 1px solid #efe9e1;
  vertical-align: top;
  font-size: 16px;
}

.property-card__table th {
  width: 120px;
  background: #f8f2ea;
  color: #AD814D;
  font-weight: 700;
  padding: 5px 10px;
  vertical-align: middle;
}

.property-card__table td {
  color: #333;
}

.property-card__image {
  flex: 1;
  min-width: 280px;
}
.property-card__image img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}

.property-card__footer {
  margin-top: 24px;
  text-align: center;
}
.property-card__footer .btn-contact {
  display: inline-block;
  background: #4DB4C8;
  color: #fff;
  padding: 12px 30px 10px 30px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease;
  min-width: 330px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.property-card__footer .btn-contact:hover {
  background: #3a9fb8;
}
.property-card__footer .btn-contact.disabled {
  background: #E0E0E0;
}
@media (max-width: 768px) {
  .property-card__footer .btn-contact {
    min-width: inherit;
    width: 100%;
  }
}

.property-card__note {
  margin-top: 12px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  text-align: justify;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .property-card__body {
    flex-direction: column;
  }
  .property-card__info,
  .property-card__image {
    min-width: 100%;
  }
  .property-card__status {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .property-page__hero h1 {
    font-size: 32px;
    margin-top: 40px;
  }
  .property-card {
    padding: 20px;
  }
  .property-card__head {
    gap: 12px;
  }
}
.pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding-bottom: 40px;
}

.pagination {
  display: inline-flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination li {
  display: inline-flex;
}
.pagination li a:hover {
  background: #ededed;
  color: #2d2d2d;
}
.pagination li a.active {
  background: #fff;
  border-color: #AD814D;
  color: #AD814D;
  pointer-events: none;
}
.pagination li a.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.inquiry-page {
  color: #333;
  margin-top: 60px;
  margin-bottom: 80px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.inquiry-page h2 {
  font-size: 36px;
  letter-spacing: 2px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.inquiry-page .form-label {
  font-weight: bold;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}
.inquiry-page .badge-required {
  background-color: #AD814D;
  color: #fff;
  padding: 4px 10px;
  font-weight: normal;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}
.inquiry-page .form-control {
  border-radius: 4px;
  border: 1px solid #828282;
  padding: 10px 15px;
}
.inquiry-page .form-control:focus {
  border-color: #AD814D;
  box-shadow: 0 0 0 0.2rem rgba(173, 129, 77, 0.25);
}
.inquiry-page .form-control::-moz-placeholder {
  color: #adb5bd;
  font-size: 0.9rem;
}
.inquiry-page .form-control::placeholder {
  color: #adb5bd;
  font-size: 0.9rem;
}
.inquiry-page .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #AD814D;
  border-color: #AD814D;
}
.inquiry-page .custom-control-label {
  cursor: pointer;
  font-weight: 400;
}
.inquiry-page .custom-control-label::before {
  border-radius: 2px;
  border: 1px solid #828282;
  background-color: #fff;
}
.inquiry-page .custom-checkbox-lg .custom-control-label {
  padding-left: 0.5rem;
}
.inquiry-page .custom-checkbox-lg .custom-control-label::before, .inquiry-page .custom-checkbox-lg .custom-control-label::after {
  top: 0.15rem;
  width: 1.25rem;
  height: 1.25rem;
}
.inquiry-page .dashed-line {
  border-top: 1px dashed #ccc;
}
.inquiry-page .privacy-link {
  color: #AD814D;
  text-decoration: underline;
  font-weight: 700;
}
.inquiry-page .privacy-link:hover {
  color: rgb(137.708, 102.684, 61.292);
}
.inquiry-page .btn-submit {
  background-color: #AD814D;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 30px 60px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  min-width: 442px;
}
.inquiry-page .btn-submit:hover, .inquiry-page .btn-submit:focus {
  background-color: rgb(144.7664, 107.9472, 64.4336);
  color: #fff;
  outline: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.inquiry-page .btn-submit svg {
  transition: transform 0.3s ease;
  margin-left: 20px;
}
.inquiry-page .btn-submit:hover svg {
  transform: translateX(5px);
}
@media (max-width: 768px) {
  .inquiry-page .btn-submit {
    min-width: auto;
    width: 100%;
  }
}/*# sourceMappingURL=fe.css.map */