@charset "utf-8";

.gallery-wrapper a,
.gallery-wrapper a:hover,
.gallery-wrapper a:active,
.gallery-wrapper a:focus,
.more-section-wrapper a,
.more-section-wrapper a:hover,
.more-section-wrapper a:active,
.more-section-wrapper a:focus {
  text-decoration: none;
}

/* ギャラリーエリア */
.gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  max-width: calc(1440px + 64px + 64px);
  margin: 60px auto 120px;
  padding: 0 64px;
}
.gallery-item-wrapper {
  position: relative;
}
.gallery-item {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100%;
  padding-bottom: 125%;
}
.gallery-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  background: rgba(0, 0, 0, 0.22);
}
.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  object-fit: cover;
  object-position: 50.0% 50.0%;
}
.gallery-text-wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  padding: 60px;
}
.gallery-text-wrapper .sub-head,
.gallery-text-wrapper .title,
.gallery-text-wrapper .text-body,
.gallery-text-wrapper .link {
  color: #fff;
}
.gallery-text-wrapper .sub-head {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4.8px;
  margin-bottom: 15px;
}
.gallery-text-wrapper .title {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 15px;
}
.gallery-text-wrapper .text-body {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 15px;
}
.gallery-text-wrapper .link {
  font-size: 13px;
  font-weight: 400;
  position: relative;
  z-index: 22;
}
.gallery-text-wrapper .link::before,
.gallery-text-wrapper .link::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 100%;
  height: 1px;
  pointer-events: none;
}
.gallery-text-wrapper .link::before {
  background: #fff3;
}
.gallery-text-wrapper .link::after {
  background: #fff;
  transition: all .25s cubic-bezier(.104,.204,.492,1);
  transform-origin: left center;
  transform: scaleX(0);
}
.gallery-text-wrapper .link:hover:after {
  transform: scaleX(1);
}
.gallery-inline-box {
  max-width: 90%;
}
.gallery-item-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 21;
}

/* MORE TO DISCOVER */
.more-section-wrapper {
  margin: 0 auto;
  padding: 0 30px;
}
.more-section-item-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.more-section-item {
  width: calc((100vw - 175px) / 4);
  height: 35.9vw;
}
.more-section-item .image-wrapper {
  width: 100%;
  height: calc(100% - 23px);
  margin-bottom: 10px;
}
.more-section-item .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50.0% 50.0%;
}
.more-section-item .title {
  font-size: 12px;
  font-weight: 600;
}
.more-section-title-wrapper {
  margin: 0 auto 25px;
  text-align: center;
}
.more-section-title-wrapper .title {
  font-size: 34px;
  font-weight: bold;
}

@media (max-width: 991px) {
  /* ギャラリーエリア */
  .gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
    margin: 50px 0 90px;
    padding: 0 20px;
  }
  .gallery-inline-box {
    max-width: 100%;
  }
  .gallery-text-wrapper {
    padding: 30px;
  }
  .gallery-text-wrapper .title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
  }
  .gallery-text-wrapper .text-body {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 15px;
  }

  /* MORE TO DISCOVER */
  .more-section-wrapper {
    margin: 0 auto;
    padding: 0 16px;
  }
  .more-section-item-wrapper {
    column-gap: 16px;
    row-gap: 20px;
  }
  .more-section-item {
    width: 43.4vw;
    height: 72.8vw;
    margin: 0;
  }
  .more-section-title-wrapper .title {
    font-size: 26px;
  }
}