@charset "UTF-8";
.gallery-top-wrap {
  padding: 0 10px;
}
.gallery-top-container {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.gallery-top-container .gallery-top-inner {}
.gallery-top-wrap .cards {
  display: flex;
  gap: 20px;
  transform-origin: center;
}
.gallery-top-wrap .card {
  display: flex;
  flex-shrink: 0;
  width: 20vw;
  min-width: 220px;
  aspect-ratio: 10 / 15;
  transition: transform 0.3s ease;
}
.gallery-top-wrap .card a {
  cursor: none;
}
.gallery-top-wrap .scrollbar-track {
  position: absolute;
  bottom: 2em;
  width: 100%;
  height: 12px;
  margin-top: 50px;
  background-image:
    repeating-linear-gradient(to right, #4a4a4a 0, #4a4a4a 1px, transparent 1px, transparent 50px), repeating-linear-gradient(to right, #4a4a4a 0, #4a4a4a 1px, transparent 1px, transparent 5px);
  background-size:
    50px 0, 5px 0;
  background-position:
    0 bottom, 0 bottom;
  background-repeat: repeat-x;
  animation: growLines 0.8s ease-out forwards;
}
@keyframes growLines {
  to {
    background-size:
      50px 12px, 5px 6px;
  }
}
.gallery-top-wrap .scroller {
  position: absolute;
  top: 50%;
  left: 0%;
  font-size: var(--font-size-xxxs);
  color: #fff;
  padding: 0 0.5em;
  background-color: #000;
  transform: translateY(-50%);
  z-index: 1;
  transition: left 0.2s ease-out;
  animation: textAnimationFadeIn 2s cubic-bezier(.43, .05, .27, 1.25) forwards;
}
.gallery-top-wrap .scroller {
  cursor: grab;
}
.gallery-top-wrap .scroller:active {
  cursor: grabbing;
}
@media(max-width: 1024px) {
  .gallery-top-wrap .card {
    width: 28vw;
  }
}
@media(max-width: 599px) {}
/*-------------------------------------

 =gallery-detail-wrap
 
-------------------------------------*/
#gallery-detail-wrap .hero-section {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}
#gallery-detail-wrap .hero-section .hero {
  height: 100vh;
  height: 100dvh;
}
#gallery-detail-wrap .hero-section .hero-copy {
  position: absolute;
  width: 90%;
  bottom: 3vw;
  left: 50%;
  font-family: var(--font-family-serif);
  transform: translateX(-50%);
  color: #fff;
  z-index: 2;
}
#gallery-detail-wrap .hero-section .hero-title {
  position: relative;
  height: 3.2em;
  margin-bottom: 0.25em;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
#gallery-detail-wrap .hero-section .hero-title h1 {
  position: absolute;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: var(--font-size-xxl);
  font-weight: 400;
  line-height: 1;
  transform: translateY(0);
  will-change: transform;
}
#gallery-detail-wrap .hero-section .hero-description {
  position: relative;
  height: 1em;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
#gallery-detail-wrap .hero-section .hero-description p {
  position: absolute;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: var(--font-size-sm);
  line-height: 1;
  transform: translateY(0);
  will-change: transform;
}
.slide-text-anim {
  opacity: 0;
  animation: fadeInUp 1s var(--easeInOutQuint) forwards;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(60%);
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#gallery-detail-wrap .hero-section .scroll-down {
  position: absolute;
  bottom: 3vw;
  right: 3vw;
  font-size: var(--font-size-xxs);
  font-weight: 200;
  animation: textAnimationFadeIn 2s cubic-bezier(.43, .05, .27, 1.25) forwards;
}
@media(max-width: 1024px) {
  #gallery-detail-wrap .hero-section .hero-copy {
    bottom: 14vw;
  }
  #gallery-detail-wrap .hero-section .scroll-down {
    font-size: var(--font-size-xxxs);
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
/* view-all */
#gallery-detail-wrap .view-all {
  position: fixed;
  bottom: 3vw;
  left: 3vw;
  font-family: var(--font-family-serif);
  font-size: var(--font-size-xxs);
  animation: textAnimationFadeIn 2s cubic-bezier(.43, .05, .27, 1.25) forwards;
  z-index: 3;
}
#gallery-detail-wrap .view-all a {
  display: block;
  line-height: 1;
}
@media(max-width: 1024px) {
  #gallery-detail-wrap .view-all {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
  }
}
/* section */
#gallery-detail-wrap .gallery-detail-section {
  font-size: var(--font-size-xxs);
  margin: 15vw 10vw 2vw;
}
#gallery-detail-wrap .gallery-detail-section .layout-2column {
  display: flex;
  justify-content: space-between;
}
#gallery-detail-wrap .gallery-detail-section .layout-2column .info {
  width: 40%;
  line-height: 2.2;
}
#gallery-detail-wrap .gallery-detail-section .layout-2column .visual {
  width: 40%;
}
#gallery-detail-wrap .gallery-detail-section .layout-2column .visual img {
  aspect-ratio: 10 / 15;
}
@media(max-width: 599px) {
  #gallery-detail-wrap .gallery-detail-section .layout-2column {
    display: block;
  }
  #gallery-detail-wrap .gallery-detail-section .layout-2column .info {
    width: 100%;
  }
  #gallery-detail-wrap .gallery-detail-section .layout-2column .visual {
    width: 100%;
    margin-top: 15vw;
  }
}