.main_before{
  height: 142px;
}
.main_station{
  width: 100%;
  max-height: calc(100vh - 142px);
  aspect-ratio: 16/9;
  /* background: #888; */
  overflow: hidden;
  position: relative;
}
.main_station video{
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50% , -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.main_station .pc {
  display: block;
}
.main_station .mo {
  display: none;
}

/* banner swiper */
.main_station .swiper-pagination {
  margin-bottom: 2rem;
}
.main_station .swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 10px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 10px)
  );
}
.main_station .swiper-pagination-bullet {
  background: #dadada;
}
.main_station .swiper-pagination-bullet-active {
  /* opacity: var(--swiper-pagination-bullet-opacity, 1); */
  background: var(--swiper-pagination-color, #222000);
}


/* tour1 */
.gallery-slider {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.gallery-flex{
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.gallery-single {
  position: relative;
}

.gallery-single .swiper-slide img {
  object-fit: cover;
  border-radius: 20px;
}

.gallery-single.swiper{
  max-width: 1400px;
  margin-left: initial;
  margin-right: initial;
  /* height: 545px; */
  border-radius: 20px;
}

/* tour2 */
/* tour */
.gallery-slider {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.gallery-flex{
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.gallery-single {
  position: relative;
}

.gallery-single .swiper-slide img {
  width: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.gallery-single.swiper{
  max-width: 1280px;
  margin-left: initial;
  margin-right: initial;
  height: 700px;
  border-radius: 20px;
}
/* 썸네일 */
.gallery-nav {
  display: flex;
  width: 100%;
}
.gallery-nav .swiper-wrapper {
  display: flex;
  justify-content: space-between;
}
.gallery-nav .swiper-slide {
  /* flex: 1 1 calc((100% - (5 * 1%)) / 6);
  max-width: calc((100% - (5 * 1%)) / 6); */
  margin-right: 1%;
}
.gallery-nav .swiper-slide img {
  width: 230px;
  height: 130px;
  object-fit: cover;
  border-radius: 20px;
  transition: opacity 0.3s ease;
  border: 3px solid transparent;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.gallery-arrow_img_wrap{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gallery-nav .swiper-slide-thumb-active img {
  border-color: #083781;
}
/* Swiper 전역 충돌 방지 (gallery 한정 범위 적용) */
.gallery-single .swiper-slide {
  opacity: 0;
  transition: opacity 1s ease;
}

.gallery-single .swiper-slide-active {
  opacity: 1;
  z-index: 2;
}

.gallery-single .swiper-slide-prev,
.gallery-single .swiper-slide-next {
  opacity: 0;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .main_before {
    height: 140px;
  }
}

/* below 1024 */
@media screen and (max-width: 900px) {
  .main_station .img_box .bn_pc {
    display: none;
  }
  .main_station .img_box .bn_m {
    display: block;
  }
  .main_station video.mo {
    display: none;
  }
  .main_station video.pc {
    display: block;
  }
  .main_station {
    aspect-ratio: 5/2.8;
    max-height: 800px;
    height: auto;
  }

}
@media screen and (max-width: 600px) {
    .main_before {
    height: 90px;
  }
}


