/* =========================
   tokuyou-tatemono.css
   特養：建物
   ========================= */

/* 住所ブロック */
.page-tokuyou-building .building-address{
  margin: 0 0 14px;
  padding: 10px 12px;
  border: 1px solid #000;
  background: #fff;
  font-weight: 800;
  text-align: center;
}

/* 写真グリッド（PC=2列 / スマホ=1列） */
.page-tokuyou-building .building-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 16px;
}

.page-tokuyou-building .building-item{
  margin: 0;
  padding: 8px;
  border: 1px solid #000;
  background: #fff;
}

/* ★ここが修正：全画像の表示サイズを統一 */
.page-tokuyou-building .building-item img{
  display: block;
  width: 100%;
  height: clamp(150px, 18vw, 190px); /* 全画像の高さを統一 */
  object-fit: cover;                 /* 余白を作らずトリミングして揃える */
  object-position: center;
  border: 1px solid #000;
}

.page-tokuyou-building .building-item figcaption{
  margin-top: 8px;
  text-align: center;
  font-weight: 800;
}

/* VR案内ボックス */
.page-tokuyou-building .vr-box{
  border: 1px solid #000;
  background: #fff;
  padding: 14px;
}

.page-tokuyou-building .vr-title{
  margin: 0 0 10px;
  padding: 8px 10px;
  border: 1px solid #000;
  background: #f3f3f3;
  font-size: 1.05rem;
  text-align: center;
  font-weight: 900;
}

.page-tokuyou-building .vr-lead{
  margin: 0 0 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  line-height: 1.7;
}

.page-tokuyou-building .vr-icon{
  width: 25px;
  height: auto;
  flex: 0 0 auto;
}

.page-tokuyou-building .vr-link{
  margin: 0 0 12px;
  line-height: 1.8;
  font-weight: 700;
}

.page-tokuyou-building .vr-qr{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  align-items: center;
}

.page-tokuyou-building .vr-qr img{
  display: block;
  width: 140px;
  height: auto;
  border: 1px solid #000;
}

.page-tokuyou-building .vr-qr-text{
  margin: 0;
  font-weight: 800;
  line-height: 1.7;
}

/* 「・」が勝手に付く事故対策（中央カード内だけ） */
.page-tokuyou-building .center-col .card ul,
.page-tokuyou-building .center-col .card ol{
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

/* スマホ */
@media (max-width: 600px){
  .page-tokuyou-building .building-grid{
    grid-template-columns: 1fr;
  }
  .page-tokuyou-building .vr-qr{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .page-tokuyou-building .vr-qr img{
    margin: 0 auto;
  }
  .page-tokuyou-building .vr-lead{
    justify-content: center;
  }
}