@charset "utf-8";
/* CSS Document */
/* Special Gravure の一覧 */
#gallery-1 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

#gallery-1 a {
  display: block;
  width: 100%;
  text-decoration: none;
}

#gallery-1 p {
  margin: 0;
}

#gallery-1 img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

#gallery-1 .caption {
  display: block;
  text-align: center;
  margin-top: 10px;
}

/* スマホ */
@media screen and (max-width: 768px) {
  #gallery-1 {
    grid-template-columns: 1fr;
  }
}