@charset "utf-8";

.photo-library__wrap {
  margin-bottom: 104px;
}

.photo-library__list {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 51px 3%;
  position: relative;
  z-index: 1;
}
.photo-library__item {
  width: calc(94% / 3);
}
.photo-library__imgWrap {
  /* overflow: hidden;
	transition:  0.2s ease; */
  position: relative;
}
.photo-library__imgWrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 46px;
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.photo-library__imgWrap .back-img {
  width: 100%;
  padding-top: 66.7%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* transition: transform 0.2s ease;
	transform: scale(1) translateY(0); */
}
.photo-library__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
  letter-spacing: 0.12em;
}
.photo-library__date {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  padding-top: 13px;
  line-height: 1.3;
  letter-spacing: 0.14em;
}
.photo-library__download,
.photo-library__iconModal {
  position: absolute;
  bottom: 11px;
  z-index: 2;
  cursor: pointer;
  display: block;
}
.photo-library__download {
  right: 16px;
  width: 19px;
  height: 20px;
}
.photo-library__iconModal {
  right: 45px;
  width: 22px;
  height: 22px;
}

/* モーダル↓ */
.remodal {
  width: 100%;
  max-width: 1150px;
  padding: 30px 4%;
  background: transparent;
}
.remodal-wrapper {
  padding: 0;
}
.modal-click {
  display: block;
  cursor: pointer;
}
.remodal .back-img {
  width: 100%;
  height: 85vh;
  padding-top: 0; /* 正方形固定をやめる */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.remodal-close {
  color: #fff;
  left: auto;
  right: 0;
}
.remodal-close:before {
  font-size: 35px;
}
/* モーダル↑ */

.photo-library .deco1 {
  width: 11.94vw;
  top: 0;
}
.photo-library .deco2 {
  width: 9.17vw;
  top: 22%;
}
.photo-library .deco3 {
  width: 5.9vw;
  top: 37%;
}
.photo-library .deco4 {
  width: 5.42vw;
  bottom: 9.6%;
}

@media screen and (max-width: 1010px) {
  .remodal .back-img {
    height: 64.356vw;
  }
}
@media screen and (max-width: 880px) {
  .photo-library__item {
    width: calc(97% / 2);
  }
}
@media screen and (max-width: 750px) {
  .photo-library__list {
    gap: 40px 3%;
  }
  .photo-library__title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .photo-library__date {
    font-size: 13px;
    padding-top: 10px;
  }
  .photo-library__iconModal {
    right: 39px;
    width: 19px;
    height: 19px;
  }
  .photo-library__download {
    right: 13px;
    width: 16px;
    height: 17px;
  }
}
