
.instaCont {
  /* -----------------------
     Layout
  ----------------------- */
}
.instaCont section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.instaCont article {
  width: 50%;
}
.instaCont section > article:nth-of-type(n + 3) {
  margin: 40px 0 0;
}
.instaCont {
  /* -----------------------
     Card
  ----------------------- */
}
.instaCont .imgBx01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  text-decoration: none;
}
.instaCont .imgBx01:hover {
  opacity: 0.7;
}
.instaCont .imgBx01 {
  /* 画像枠 */
}
.instaCont .imgBx01 > span {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 16px;
}
.instaCont .imgBx01 > span img {
  object-fit: contain;
}
.instaCont .imgBx01 {
  /* 画像 */
}
.instaCont .imgBx01 img,
.instaCont .imgBx01 video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.instaCont .imgBx01 {
  /* 日付 */
}
.instaCont .imgBx01 p {
  margin: 8px 0 0;
  font-size: 0.85em;
  line-height: 1.4;
}
.instaCont {
  /* -----------------------
     SP調整（767以下）
     2列のまま小さく見せる
  ----------------------- */
}
@media screen and (max-width: 767px) {
  .instaCont article {
    width: 46%;
  }
  .instaCont .imgBx01 > span {
    aspect-ratio: 4/3;
  }
  .instaCont .imgBx01 p {
    font-size: 12px;
    margin-top: 6px;
  }
}
.instaCont {
  /* -----------------------
     SP調整（500以下）
     1列のまま小さく見せる
  ----------------------- */
}
@media screen and (max-width: 600px) {
  .instaCont article {
    width: 100%;
  }
  .instaCont section > article + article {
    margin-top: 40px;
  }
  .instaCont .imgBx01 > span {
    aspect-ratio: 4/3;
  }
  .instaCont .imgBx01 p {
    font-size: 12px;
    margin-top: 6px;
  }
}
.instaCont {
  /* -----------------------
     PC（768以上）
  ----------------------- */
}
@media screen and (min-width: 768px) {
  .instaCont article {
    width: 20%;
  }
  .instaCont section > article:nth-of-type(n + 2) {
    margin: 0;
  }
}
@media screen and (min-width: 1200px) {
  .instaCont article {
    width: 22.5%;
  }
  .instaCont section > article:nth-of-type(n + 3) {
    margin: 0;
  }
}
  /* -----------------------
     画像や動画が表示されている場合はサムネを非表示
  ----------------------- */
.instaCont .imgBx01 > img + span,
.instaCont .imgBx01 > video + span {
  display: none;
}