.project-gallery {
  margin-bottom: 10%;
}

.project-gallery__main {
  margin-bottom: 30px;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.project-gallery__main-image {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center; 
}

.project-gallery__thumbnails {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.project-gallery__thumbnail {
  width: calc(20% - 16px) !important; /* 5つのサムネイルを等間隔で配置 */
  aspect-ratio: 3 / 2;
  border-radius: 5px;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-right: 10px;
}

.project-gallery__thumbnail:hover {
  opacity: 0.8;
}

.project-gallery__thumbnails .slick-track{
  width: 100%!important;
  transform: translate3d(0px, 0px, 0px)!important;
}