/* =========================
   realestate.css（不動産）
   ========================= */

/* 不動産ページ共通 */
.page-hero{
  padding:72px 0 40px;
}
.page-label{
  font-size:14px;
  letter-spacing:0.15em;
  color:#7b8695;
  margin-bottom:8px;
}
.page-title-lg{
  font-size:32px;
  margin:0 0 20px;
}
.page-lead{
  font-size:16px;
  color:#555;
  line-height:1.9;
}

/* 本文ブロック */
.realestate-section{
  display:flex;
  flex-direction:column;
  gap:24px;
  margin-bottom:40px;
}
.realestate-block{
  background:#fff;
  border-radius:18px;
  padding:24px 28px;
  box-shadow:0 16px 40px rgba(0,0,0,.05);
  border:1px solid #eef2fb;
}
.realestate-heading{
  font-size:20px;
  margin:0 0 8px;
  position:relative;
  padding-left:12px;
}
.realestate-heading::before{
  content:"";
  position:absolute;
  left:0;
  top:0.4em;
  width:4px;
  height:1.1em;
  border-radius:4px;
  background:#3b6ec6;
}
.realestate-text{
  margin:0;
  font-size:15px;
  line-height:1.9;
}

/* 物件情報ボタン */
.property-cta{
  margin:32px 0 40px;
}
.property-cta-inner{
  display:flex;
  justify-content:center;
}
.property-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:220px;
  padding:14px 40px;
  border-radius:999px;
  background:linear-gradient(135deg,#3b6ec6,#6ea6ff);
  color:#fff;
  font-size:18px;
  letter-spacing:0.18em;
  text-indent:0.18em;
  text-decoration:none;
  box-shadow:0 18px 45px rgba(0,0,0,.18);
  transition:transform .15s ease, box-shadow .15s ease;
}
.property-button:hover{
  transform:translateY(-1px);
  box-shadow:0 20px 50px rgba(0,0,0,.2);
}

/* 協会ロゴ・注意書き部分 */
.association-section{ margin-bottom:60px; }
.association-card{
  background:#fff;
  border-radius:18px;
  padding:24px 28px;
  box-shadow:0 12px 30px rgba(0,0,0,.04);
  border:1px solid #eef2fb;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:20px;
}
.association-logo{
  text-align:center;
  font-size:13px;
  color:#555;
}
.association-copy{
  margin:0;
  line-height:1.6;
}
.association-text p{
  margin:0 0 8px;
  font-size:13px;
  color:#666;
  line-height:1.8;
}

@media(max-width:900px){
  .association-card{ grid-template-columns:1fr; }
}