@charset "UTF-8";
.page-title {
  background: url("../img/backimg/gallery.jpg") center center/cover no-repeat;
}

/*------------------------------------------------------------------------------*/
/* ↓ ギャラリー
/*------------------------------------------------------------------------------*/
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* スマホ：2列 */
  gap: clamp(8px, 1.5vw, 12px);
  padding: 50px 10px 20px;
  /* サムネの見た目（任意） */
}
.gallery a {
  display: block;
  aspect-ratio: 4/3;
  /* 画像比率を揃える */
  overflow: hidden;
  border-radius: 10px;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.gallery a:hover img {
  transform: scale(1.03);
}

/* iPad（768–1024px）：4列 */
@media (min-width: 768px) and (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* PC（1025px〜）：6列 */
@media (min-width: 1025px) {
  .gallery {
    grid-template-columns: repeat(6, 1fr);
  }
}
/*------------------------------------------------------------------------------*/
/* ↑ ギャラリー
/*------------------------------------------------------------------------------*/