@charset "UTF-8";


#instaGallery {
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width:100%;
}

#instaGallery li {
  height: auto;
   margin: 2vw;
  position: relative;
    width:5vw;
}

#instaGallery li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* PC/TB -------------------------------*/
@media screen and (min-width: 768px) {
  #instaGallery li {
    width: 25%;
    padding: 25% 0 0 0;
  }
}

/* SP -------------------------------*/
@media screen and (max-width: 767px) {
  #instaGallery li {
    width: 25%;
    padding: 25% 0 0 0;
  }
}
