/* KW Photo Gallery
=========================================================== */
.kw-photo-gallery {
  margin-block: 20px;
}

.kw-photo-gallery__heading {
  padding-inline: 12px;
  font-size: 20px;
  font-size: 2rem;
}
/* Photo Gallery
=========================================================== */
.photo-gallery {
  margin-top: 10px;
}

.photo-gallery__media {
  display: flex;
  flex-wrap: wrap;
}

.photo-gallery__media .photo-gallery__figure {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #000;
  text-align: center;

  &:not(:first-of-type) {
    width: calc(100% / 3);

    .photo-gallery__image {
      max-height: 100px;
      min-height: auto;
    }
  }
}

.photo-gallery__media .photo-gallery__figure .photo-gallery__image {
  width: 100%;
  height: 100%;
  max-height: 300px;
  min-height: 250px;

  img {
    height: 100%;
    object-fit: contain;
  }
}

.photo-gallery__media .photo-gallery__figure .photo-gallery__caption {
  width: 100%;
  padding: 10px 8px;
  font-size: 1.25rem;
  line-height: 1;
  background: #000;
  text-align: left;
  color: #fff;
  position: relative;
}

.photo-gallery__media .photo-gallery__media__text {
  grid-area: text;
  width: 100%;
  margin-bottom: 0;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.8;
}

.photo-gallery__link {
  display: flex;
  align-items: center;
  width: fit-content;
  column-gap: .2em;
  margin: .7em .7em 0 auto;
  font-size: 1.4rem;
  font-weight: bold;
  color: #2379ca;
  word-break: break-all;

  /* アイコン */
  &:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    margin-top: .4em;
    border-right: 1px solid #2379ca;
    border-bottom: 1px solid #2379ca;
    transform: translateY(-50%) rotate(-45deg);
  }
}
