/* ======================
物件トップページ
====================== */

.estate-top{
margin-top:40px;
}

/* メニュー */

.estate-menu{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

/* カード */

.estate-card{
background:#fff;
padding:40px 20px;
text-align:center;
border-radius:10px;
text-decoration:none;
color:#333;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
transition:0.3s;
}

.estate-card h2{
font-size:22px;
margin-bottom:10px;
}

.estate-card p{
font-size:14px;
color:#666;
}

/* ホバー */

.estate-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

/* ======================
レスポンシブ
====================== */

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

.estate-menu{
grid-template-columns:1fr;
}

}