/* =========================
   tokuyou-tatemononaibu.css
   特養：建物内部
   ========================= */

/* h1 の緑（指定） */
.page-tokuyou-naibu .page-title{
  color: #009999;
}

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

/* 写真カード */
.page-tokuyou-naibu .photo{
  margin: 0;
  padding: 8px;
  border: 1px solid #000;
  background: #fff;
}

.page-tokuyou-naibu .photo img{
  display: block;
  width: 100%;
  height: clamp(160px, 18vw, 210px); /* 画像の見た目サイズを統一 */
  object-fit: cover;                 /* 余白を作らずトリミングして揃える */
  object-position: center;
  border: 1px solid #000;
}

.page-tokuyou-naibu .photo figcaption{
  margin-top: 8px;
  line-height: 1.6;
  font-weight: 700;
}

/* 説明ボックス（room51 の右側にあった文章） */
.page-tokuyou-naibu .info-box{
  border: 1px solid #000;
  background: #fff;
  padding: 12px;
  line-height: 1.8;
  font-weight: 800;
}

/* “・”など勝手なリスト装飾対策（カード内だけ） */
.page-tokuyou-naibu .center-col .card ul,
.page-tokuyou-naibu .center-col .card ol{
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

/* スマホ */
@media (max-width: 600px){
  .page-tokuyou-naibu .photo-grid{
    grid-template-columns: 1fr;
  }
}