.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* 写真カード */
figure {
  margin: 0;
  text-align: center;
}

/* 写真の箱を固定比率にする */
figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5; /* ← 縦長寄りで安定 */
  object-fit: contain; /* 縦横を壊さない */
  background: #f0f0f0; /* 余白が出た時の背景 */
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}


