@charset "utf-8";

/* 
 * main setting CSS Document
 */

/***********************************************************************************
공통
************************************************************************************/
/* 영역 */



#main {
    height: calc(var(--vh, 1vh) * 100);
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding-top: 0;
}
.main-wrap {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

#main_bn {
    width: 100%;
    height: 100%;
}
#main_bn .inner {width: 100%;height: 100%;}
.main-swiper {background-color: #000000;width: 100%;height: 100%;position: relative;}
.main-swiper-button-prev,
.main-swiper-button-next {
    background-image: url(/img/img-slide-arr.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 1;
    cursor: pointer;
}
.main-swiper-button-prev {
    top: 50%;
    left: -25px;
    transform: translateY(-50%) rotate(180deg);
}
.main-swiper-button-next {
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
}
.main-swiper .swiper-slide {width: 100% !important;height: 100%;position: relative;filter: grayscale(1);pointer-events: auto !important;}
.main-swiper .swiper-slide.swiper-slide-active{
    z-index: 1;
    transition: 5s;
}
.main-swiper .swiper-slide.swiper-slide-active img{
    transform: scale(1.04);
}
.main-swiper .swiper-slide a {display: flex;width: 100%;height: 100%;}
.main-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 35s;
      -webkit-user-select: none;  /* 텍스트/이미지 선택 방지 */
  -webkit-user-drag: none;    /* 드래그 방지 */
  user-select: none;          /* 표준 속성 */
  pointer-events: auto;       /* 클릭/터치는 정상 동작 */
  touch-action: none;         /* 제스처(드래그, 확대 등) 막기 */
}
.main-swiper .swiper-slide a.read-more{
    /* display: none; */
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
    position: relative;
} 
.main-swiper .swiper-slide.active-slide a.read-more{
    display: flex;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30px;
    justify-content: center;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 400;
    color: #000000;
    z-index: 1;
    gap: 3px;
    opacity: 1;
} 
.main-swiper .swiper-slide.active-slide a.read-more:after{content:'';background: linear-gradient(to bottom,  transparent 0%,#ffffff 80%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */position: absolute;left: 0;bottom: 0;width: 100%;height: 90px;z-index: -1;}
section.sect-main-banner {width: 100%;height: 100%;}
/* .main-swiper .swiper-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  animation-name: main_slider_fade;
  animation-duration: 35s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  opacity: 0;
  transform: scale(1);
  filter: grayscale(1);
}
.main-swiper .swiper-slide:nth-child(1) {
  animation-delay: 0s;
}
.main-swiper .swiper-slide:nth-child(2) {
  animation-delay: 5s;
}
.main-swiper .swiper-slide:nth-child(3) {
  animation-delay: 10s;
}
.main-swiper .swiper-slide:nth-child(4) {
  animation-delay: 15s;
}
.main-swiper .swiper-slide:nth-child(5) {
  animation-delay: 20s;
}
.main-swiper .swiper-slide:nth-child(6) {
  animation-delay: 25s;
}
.main-swiper .swiper-slide:nth-child(7) {
  animation-delay: 30s;
} */
@keyframes main_slider_fade {
  10% {
    opacity: 1;
  }
  18% {
    opacity: 1;
  }
  25% {
    opacity: 0;
    transform: scale(1.04);
  }
  100% {
    opacity: 0;
  }
}

/***********************************************************************************
main visual
************************************************************************************/

/***********************************************************************************
mediaquery
************************************************************************************/
@media screen and ( max-width:1760px ){
}


@media screen and (max-width: 1280px){

}

@media screen and (max-width: 768px) {

}

@media screen and ( max-width : 600px ) {
  
}