/* Masonry（Pinterest風） */
.p-gallery-album-lists02 {
  column-count: 4;
  padding: 1rem;
  column-gap: .5rem;
}

/* Safari 対策（超重要） */
.p-gallery-album-lists02 li {
  break-inside: avoid;
  display: inline-block;
}

.p-gallery-album-lists02 li img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: .2rem;
}

/* フェードイン */
.p-gallery-album-lists02 li {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s ease, transform .4s ease;
}

.p-gallery-album-lists02 li.show {
  opacity: 1;
  transform: translateY(0);
}

/* スマホ */
@media (max-width: 767px) {
  .p-gallery-album-lists02 {
    column-count: 3;
  }
}

@media (max-width: 480px) {
  .p-gallery-album-lists02 {
    column-count: 2;
  }
}