@charset "UTF-8";
#single-gallery .__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
#single-gallery .category {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 1rem;
}
#single-gallery .category .tarm {
  font-size: 0.875rem;
  color: #4A4630;
  position: relative;
  line-height: 1;
}
#single-gallery .category .tarm::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -0.5rem;
  background: #4A4630;
  transform: rotate(30deg);
}
#single-gallery .category .member {
  font-size: 0.875rem;
  color: #4A4630;
  line-height: 1;
}
#single-gallery .__text_area {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 2rem;
  line-height: 40px;
  margin-bottom: 5rem;
}
@media (max-width: 480px) {
  #single-gallery .__text_area {
    padding: 0 1.6rem;
    line-height: 30px;
  }
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 3rem;
}
@media (max-width: 480px) {
  .gallery {
    padding: 0 1.6rem;
  }
}

/* メイン */
.gallery_main {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 8/4.5;
  overflow: hidden;
}
.gallery_main img {
  width: 100%;
  display: none;
  object-fit: cover;
  width: 100%;
  object-fit: cover;
}
.gallery_main img.is-active {
  display: block;
}

/* サムネ */
.gallery_thumb {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  /* スクロールバー消す */
  scrollbar-width: none;
}
.gallery_thumb::-webkit-scrollbar {
  display: none;
}
.gallery_thumb .gallery_thumb-item {
  flex: 0 0 auto;
  width: 100%;
  max-width: 160px;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media (max-width: 480px) {
  .gallery_thumb .gallery_thumb-item {
    max-width: 100px;
  }
}
.gallery_thumb .thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.2s;
}
.gallery_thumb .thumb.is-active {
  opacity: 1;
  outline: 2px solid #000;
}
.gallery_thumb .thumb:hover {
  opacity: 1;
}

.gallery_thumb-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.gallery_arrow {
  width: 25px;
  height: 25px;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 999px;
  cursor: pointer;
  flex-shrink: 0;
}

.gallery_button {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10rem;
}
@media (max-width: 480px) {
  .gallery_button {
    padding: 0 1.6rem;
  }
}

.video-thumb {
  position: relative;
  cursor: pointer;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.gallery_main-video {
  width: 100%;
  height: 100%;
}
.gallery_main-video > iframe {
  width: 100%;
  height: 100%;
}

.gallery_thumb {
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.gallery_thumb-item {
  scroll-snap-align: center;
}/*# sourceMappingURL=single-style.css.map */