/*------------------------
  slider
------------------------*/
.slider {
  aspect-ratio: 144/81;
  overflow: hidden;
}
@media screen and (max-width:767px) {
  .slider {
    aspect-ratio: 3/2;
  }
}
.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider .slick-list,
.slider .slick-track {
  height: 100%;
}

.add-animation {
  animation: zoomIn 10s linear 0s normal both;
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.04);
  }
}
/*------------------------
  gallery
------------------------*/
.gallery {
  padding: 5rem 0 0;
}
.gallery__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4.375rem;
}
.gallery__ttl {
  font-size: 1.625rem;
  font-weight: 300;
  letter-spacing: 0.15em;
}
@media screen and (max-width:767px) {
  .gallery__ttl {
    font-size: 2.5rem;
  }
}
.gallery__list {
  border-bottom: 1px solid #D8D8D8;
}
.gallery__item {
  border-top: 1px solid #D8D8D8;
}
.gallery__item a {
  display: grid;
  grid-template-columns: 32.6% 67.4%;
  padding: 4.375rem 0;
}
@media print, screen and (min-width:768px) {
  .gallery__item a:hover img {
    transform: scale(1.1);
  }
}
@media screen and (max-width:767px) {
  .gallery__item a {
    grid-template-columns: 1fr;
  }
}
.gallery__item .link-more {
  margin-top: auto;
  max-width: 9.375rem;
}
@media screen and (max-width:767px) {
  .gallery__item .link-more {
    font-size: 1.25rem;
    margin-top: 2.5rem;
  }
}
.gallery__txt {
  padding-right: 1.25rem;
  display: flex;
  flex-direction: column;
}
.gallery__txt .year {
  color: #C4C4C4;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
@media screen and (max-width:767px) {
  .gallery__txt .year {
    font-size: 1.5rem;
  }
}
.gallery__txt .name_en {
  font-family: "Inter", sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin: 0 0 0.9375rem;
}
@media screen and (max-width:767px) {
  .gallery__txt .name_en {
    font-size: 2rem;
    margin: 0 0 0.625rem;
  }
}
.gallery__txt .name_ja {
  letter-spacing: 0.12em;
  margin-bottom: 6.25rem;
}
@media screen and (max-width:767px) {
  .gallery__txt .name_ja {
    margin-bottom: 3.125rem;
    font-size: 1.375rem;
  }
}
.gallery__img {
  display: grid;
  gap: 0.9375rem;
  justify-content: space-between;
}
.gallery__img figure {
  overflow: hidden;
}
.gallery__img figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 3s;
}
.gallery__item:nth-child(1) .gallery__img {
  grid-template-columns: 40.86% 19.35% 36.55%;
}
.gallery__item:nth-child(1) .gallery__img figure:nth-child(1) {
  aspect-ratio: 38/27;
}
.gallery__item:nth-child(1) .gallery__img figure:nth-child(2) {
  aspect-ratio: 18/27;
}
.gallery__item:nth-child(1) .gallery__img figure:nth-child(3) {
  aspect-ratio: 34/27;
}
.gallery__item:nth-child(2) .gallery__img {
  grid-template-columns: 19.35% 36.55% 40.86%;
}
.gallery__item:nth-child(2) .gallery__img figure:nth-child(1) {
  aspect-ratio: 18/27;
}
.gallery__item:nth-child(2) .gallery__img figure:nth-child(2) {
  aspect-ratio: 34/27;
}
.gallery__item:nth-child(2) .gallery__img figure:nth-child(3) {
  aspect-ratio: 38/27;
}
.gallery__item:nth-child(3) .gallery__img {
  grid-template-columns: 36.55% 19.35% 40.86%;
}
.gallery__item:nth-child(3) .gallery__img figure:nth-child(1) {
  aspect-ratio: 34/27;
}
.gallery__item:nth-child(3) .gallery__img figure:nth-child(2) {
  aspect-ratio: 18/27;
}
.gallery__item:nth-child(3) .gallery__img figure:nth-child(3) {
  aspect-ratio: 38/27;
}