.GalleryGroup{
  margin-bottom: 30px;
}
.GalleryGroup__noImgText{
  margin-bottom: 20px;
  text-align: center;
  color: #444;
  font-size: 14px;
}
.GalleryGroup__Content{
  display: flex;
  flex-wrap: wrap;
}
.GalleryGroup__ImgBox{
  position: relative;
  margin-bottom: 4px;
  margin-left: 0;
  width: calc((100% - 4px * 3) / 4);
  cursor: pointer;
}
.GalleryGroup__ImgBox:not(:nth-child(4n-3)){
  margin-left: 4px;
}
.GalleryGroup__Img{
  padding-top: 100%;
  width: 100%;
}
.GalleryGroupForm{
  position: absolute;
  top: 10px;
  right: 10px;
}
.fa-times-circle{
  cursor: pointer;
  color: #666;
  font-size: 20px;
}
/* もっとみるボタン inputタグに擬似要素は使えない */
.GalleryGroup__MoreBtn{
  position: relative;
  line-height: 40px;
  width: 240px;
}
.GalleryGroup__MoreBtn::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  display: block;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-top: 1px solid #FF4E50;
  border-right: 1px solid #FF4E50;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .GalleryGroup{
    margin-bottom: 20px;
  }
  .GalleryGroup__ImgBox{
    width: calc((100% - 4px * 2) / 2);
  }
  .GalleryGroup__ImgBox:not(:nth-child(4n-3)){
    margin-left: 0;
  }
  .GalleryGroup__ImgBox:not(:nth-child(2n-1)){
    margin-left: 4px;
  }
}
/* ---------------------------- */
/* --- photoswipe.js --- */
/* ---------------------------- */
.my-gallery{
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .my-gallery{
    margin-bottom: 20px;
  }
}
