/* arguments inittial */
/* font style */
/* site style */
/* [ opacity ]
-------------------------------------------------*/
/* [ display style ]
-------------------------------------------------*/
/* [ background-image ]
-------------------------------------------------*/
/* [ writing-mode ]
-------------------------------------------------*/
/* [ illustrator & photoshop letter spacing ]
-------------------------------------------------*/
/* [ easy breakpoint ]
-------------------------------------------------*/
/* [ easy transform ]
-------------------------------------------------*/
.fv-content {
  width: 100%;
  height: 100vh;
}
.fv-content-img {
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  background-image: url("../img/top/fv-img08.webp");
}
.fv-content-img .caption {
  position: absolute;
  right: 25px;
  bottom: 70px;
  font-size: 10px;
  z-index: 3;
}
.fv-content-img:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .fv-content-img {
    background-image: url("../img/top/fv-img08-pc.webp");
  }
}
.fv-content-img:after {
  background: rgba(0, 0, 0, 0.5);
}
.fv-content .bottomline {
  position: absolute;
  width: 100%;
  height: 15px;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.fv-content-title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .fv-content-title {
    font-size: 48px;
    line-height: 1.2;
  }
}
.fv-content-title-img {
  max-width: 60%;
}
@media (min-width: 768px) {
  .fv-content-title-img {
    max-width: 100%;
  }
}
.fv-content-text {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 15px;
  pointer-events: none;
  justify-content: center;
  height: 100%;
}
@media (min-width: 768px) {
  .fv-content-text {
    padding: 100px 50px;
    /*max-width: 1200px;*/
    margin: 0 auto;
    justify-content: flex-end;
  }
}
.fv-content .scroll {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 12px;
  height: 60px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .fv-content .scroll {
    bottom: 0;
  }
}
.fv-content .scroll:after {
  content: "";
  top: 0;
  left: 50%;
  width: 1px;
  height: 90px;
  position: absolute;
  background: #fff;
  animation: scrollanimation 1.3s infinite;
}

.gallery {
  padding: 30px 15px 70px;
  position: relative;
  background: #000;
}
@media (min-width: 768px) {
  .gallery {
    padding: 50px 15px 150px;
  }
}
.gallery-title {
  text-align: center;
}
.gallery-list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .gallery-list {
    gap: 50px;
  }
}
.gallery-year-header {
  padding: 15px;
  border-left: 5px solid #fff;
  display: flex;
  align-items: center;
}
.gallery-year-header-title {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .gallery-year-header-title {
    font-size: 38px;
  }
}
.gallery-items-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .gallery-items-container {
    margin-top: 30px;
    gap: 30px;
  }
}
.gallery-items__item {
  width: 100%;
  color: #fff;
  cursor: pointer;
}
@media (min-width: 768px) {
  .gallery-items__item {
    width: calc((100% - 30px) / 2);
  }
}
.gallery-items__item .img {
  overflow: hidden;
  position: relative;
}
.gallery-items__item .img img {
  transition: all 0.4s ease;
}
.gallery-items__item .img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  opacity: 0;
  transition: all 0.4s ease;
}
.gallery-items__item .img .caption {
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: #fff;
}
.gallery-items__item:hover .img img {
  transform: scale(1.2);
}
.gallery-items__item:hover .img::after {
  opacity: 0.5;
}
.gallery-items__item-body {
  display: flex;
  gap: 15px;
  flex-direction: column;
}
.gallery-items__item-body .details-name {
  font-weight: bold;
  font-size: 18px;
  padding-top: 15px;
}
@media (min-width: 768px) {
  .gallery-items__item-body .details-name {
    font-size: 22px;
  }
}
.gallery-items__item-body .details-items {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.gallery-items__item-body .details-items-text {
  font-size: 12px;
}

.swiper-area {
  position: fixed;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.85);
  top: 0;
  left: 0;
}

.swiper-popup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 30px 0 50px;
  margin-top: 100px;
}
@media (min-width: 768px) {
  .swiper-popup {
    top: 80px;
    margin-top: 0;
  }
}
.swiper-popup-content {
  position: relative;
  max-width: 90vw;
  width: 900px;
  /*max-height: 90vh;*/
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}
.swiper-popup-content .close-popup {
  position: absolute;
  top: -30px;
  right: 0px;
  font-size: 30px;
  color: #333;
  background: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  line-height: 30px;
  border: none;
  cursor: pointer;
  z-index: 300;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.swiper-popup-content .close-popup:hover {
  color: #000;
}
@media (min-width: 768px) {
  .swiper-popup-content .close-popup {
    right: -30px;
  }
}
.swiper-popup .popuptext {
  color: #fff;
  max-width: 90vw;
  width: 900px;
  margin: 0 auto;
  padding-top: 30px;
}
.swiper-popup .popuptext .popup-detail-section {
  padding-bottom: 30px;
}
.swiper-popup .popuptext .popup-detail-name {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .swiper-popup .popuptext .popup-detail-name {
    font-size: 22px;
  }
}
.swiper-popup .popuptext .popup-detail-items li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.swiper-popup .popuptext .popup-detail-items li .soldout {
  display: inline-block;
  padding: 3px 5px;
  background: #18b6cc;
  color: #000;
  font-size: 13px;
  border-radius: 5px;
}
.swiper-popup .popuptext .popup-detail-items li .small {
  font-size: 0.9em;
  display: inline-block;
}
.swiper-popup .popuptext .popup-caption {
  font-size: 10px;
  line-height: 1.5;
}

.swiper-wrapper {
  height: auto;
}

.swiper-container-main-popup {
  width: 100%;
  margin-bottom: 10px;
  overflow: hidden;
}
.swiper-container-main-popup .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2c2c2c;
  overflow: hidden;
  aspect-ratio: 5/3;
}
.swiper-container-main-popup .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .swiper-container-main-popup .swiper-button-prev-main-popup {
    left: -25px;
  }
}
@media (min-width: 768px) {
  .swiper-container-main-popup .swiper-button-next-main-popup {
    right: -25px;
  }
}
.swiper-container-main-popup .swiper-button-next-main-popup,
.swiper-container-main-popup .swiper-button-prev-main-popup {
  color: #fff;
  --swiper-navigation-size: 30px;
  top: calc(50% - 30px);
}
.swiper-container-main-popup .swiper-button-next-main-popup:after,
.swiper-container-main-popup .swiper-button-prev-main-popup:after {
  font-size: var(--swiper-navigation-size);
}
.swiper-container-main-popup .swiper-pagination-main-popup .swiper-pagination-bullet {
  background-color: #aaa;
  opacity: 0.7;
}
.swiper-container-main-popup .swiper-pagination-main-popup .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

.swiper-container-thumbs-popup {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
  --swiper-thumbs-spacing: 10px;
  overflow: hidden;
}
.swiper-container-thumbs-popup .swiper-slide {
  width: calc((100% - var(--swiper-thumbs-spacing) * 5) / 6);
  height: 100%;
  transition: opacity 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
}
.swiper-container-thumbs-popup .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-container-thumbs-popup .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #fff;
}

body .swiper-area {
  display: none;
  overflow: auto;
}

body.swiper-popup-active {
  overflow: hidden;
}

body.swiper-popup-active .swiper-area {
  display: block;
}

@keyframes scrollanimation {
  0% {
    top: 15px;
    height: 1px;
  }
  50% {
    top: 15px;
    height: 70px;
  }
  100% {
    top: 80px;
  }
}/*# sourceMappingURL=gallery.css.map */