/* ===============================
   共通
=============================== */

.property-page {
  padding: 60px 20px;
  background: #ffffff;
}

.property-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===============================
   タイトル
=============================== */

.property-header {
  margin-bottom: 32px;
}

.property-title {
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 1.35;
  font-weight: 700;
}

.property-date {
  margin: 0 0 18px;
  color: #999;
  font-size: 14px;
}

.property-price {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
}

/* ===============================
   スライダー
=============================== */

.property-gallery {
  max-width: 980px;
  margin: 0 auto 40px;
  padding: 8px;
  border: 2px solid #63bee2;
  border-radius: 14px;
}

.property-main-slider {
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
}

.property-main-slider img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ===============================
   物件詳細 2列
=============================== */

.property-summary {
  max-width: 900px;
  margin: 0 auto 44px;
}

.property-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #63bee2;
  border-left: 1px solid #63bee2;
}

.property-detail-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  border-right: 1px solid #63bee2;
  border-bottom: 1px solid #63bee2;
  min-height: 58px;
}

.property-detail-label {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background: #f2fbff;
  font-weight: 700;
  border-right: 1px solid #63bee2;
}

.property-detail-value {
  display: flex;
  align-items: center;
  padding: 14px 16px;
}

/* ===============================
   コメント（吹き出し）
=============================== */

.property-comment-box {
  max-width: 900px;
  margin: 40px auto;
}

.property-comment-title {
  position: relative;
  padding-left: 40px;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.property-comment-title::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f075";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #63bee2;
}

.property-comment-text {
  padding: 20px;
  border: 1px solid #63bee2;
  border-radius: 10px;
  line-height: 1.9;
}

/* ===============================
   問い合わせ（ドット）
=============================== */

.property-contact {
  max-width: 900px;
  margin: 70px auto 30px;
  padding: 38px 28px;
  text-align: center;
  background: #ffffff;
  position: relative;
}

.property-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#63bee2 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.18;
}

.property-contact > * {
  position: relative;
  z-index: 1;
}

.property-contact-title {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
}

.property-contact-sub {
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}

/* ボタン */

.property-contact-button {
  display: inline-block;
  padding: 18px 48px;
  background: #ffd800;
  color: #111;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.property-contact-button:hover {
  background: #888;
  color: #fff;
}

/* ===============================
   スマホ固定ボタン
=============================== */

.fixed-contact {
  display: none;
}

@media (max-width: 767px) {

  .property-main-slider,
  .property-main-slider img {
    height: 250px;
  }

  .property-detail-grid {
    grid-template-columns: 1fr;
  }

  .fixed-contact {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
  }

  .fixed-contact a {
    display: block;
    padding: 16px;
    text-align: center;
    background: #ffd800;
    font-weight: 700;
    text-decoration: none;
    color: #111;
  }

  body {
    padding-bottom: 70px;
  }
}