@charset "UTF-8";

/* =========================
   Gallery
========================= */
.gallery {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  row-gap: 100px;
}

/* =========================
   Item
========================= */
.item img {
  width: 100%;
  display: block;
  background: #fff;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.item img:hover {
  transform: scale(1.02);
  opacity: 0.85;
}

/* =========================
   Caption/* 作品画像の見た目にキャプション位置を合わせる
========================= */

.gallery .caption {
  padding-left: 20%;
}

/* =========================
   Mobile
========================= */

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
.gallery .caption {
    padding-left: 0;
  }

}