@charset "UTF-8";
/* ------part01 start-------*/
#main_slide {
  margin: 0 auto;
  position: relative;
  /* 로딩바 위치 조정 */
}
#main_slide img {
  width: 100%;
  height: auto;
}
#main_slide .all-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  width: 30%;
  height: 50px;
  left: 14%;
  bottom: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: calc(40% + 220px);
  z-index: 20;
}
#main_slide .all-box .progress-box {
  position: relative;
  width: 220px;
  z-index: 11;
}
#main_slide .all-box .arrow-box {
  position: relative;
  width: 125px;
  z-index: 20;
  margin-left: 1rem;
}
#main_slide .all-box .swiper-button-prev {
  width: 20px;
  height: 13px;
  top: 0;
  margin-top: 2px;
  z-index: 10;
}
#main_slide .all-box .swiper-button-next {
  width: 20px;
  height: 13px;
  top: 0;
  margin-top: 2px;
  z-index: 10;
}
#main_slide .all-box .btn_play, #main_slide .all-box .btn_pause {
  width: 20px;
  height: 25px;
  background: transparent no-repeat;
  background-size: 25px;
  background-position: center 1px;
  cursor: pointer;
  border: none;
  position: absolute;
  left: 53px;
  bottom: 30px;
}
#main_slide .all-box .btn_play {
  background-image: url("../img/btn_play_full.png");
  -webkit-filter: brightness(35%);
          filter: brightness(35%);
}
#main_slide .all-box .btn_pause {
  background-image: url("../img/btn_pause.png");
  -webkit-filter: brightness(35%);
          filter: brightness(35%);
}
#main_slide .all-box .autoplay-progress {
  position: absolute;
  left: 35px;
  top: 10px;
  z-index: 10;
  width: 150px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.1);
}
#main_slide .all-box .autoplay-progress svg {
  --progress: 0;
  position: absolute;
  z-index: 10;
  stroke-width: 4px;
  height: 10px;
  left: 0;
  stroke: #9b642e;
  fill: none;
  stroke-dashoffset: calc(150 * (1 - var(--progress)));
  stroke-dasharray: 150;
}
#main_slide .all-box .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #9b642e;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 500;
  position: static;
  text-align: left;
}

.swiper-button-next::after, .swiper-button-prev::after {
  display: none !important;
}

/* ------------------- moblie CSS -----------------------------------*/
@media all and (max-width: 768px) {
  #main_slide {
    margin: 0 auto;
    position: relative;
  }
  #main_slide img {
    width: 100%;
    height: auto;
  }
  #main_slide .all-box {
    left: 11%;
    top: 65%;
    z-index: 20;
    width: 35%;
  }
  #main_slide .all-box .autoplay-progress {
    position: absolute;
    left: 0;
    top: 5px;
    z-index: 10;
    width: 150px;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.1);
  }
  #main_slide .all-box .swiper-pagination {
    display: none !important;
  }
}
/* 
stroke-dashoffset은 선의 테두리가 얼마나 이동하는지 결정 progress라는 변수를 사용하여 계산되어진 값이 들어감 100은전체길이 
stroke-dasharray는 선의 테두리를 구성하는 선 조각의 길이를 설정 전체길이가 100
 */
/*------ Part1 end ------*/
@media (max-width: 1023px) {
  #main_slide {
    margin: 0 auto;
    position: relative;
  }
  #main_slide .swiper img {
    width: 100%;
  }
  #main_slide .swiper img.pc_view {
    display: none;
  }
  #main_slide .swiper img.mobile_view {
    display: block;
  }
  #main_slide .all-box {
    left: 11%;
    top: 65%;
    z-index: 20;
    width: 35%;
  }
  #main_slide .all-box .autoplay-progress {
    position: absolute;
    left: 0;
    top: 5px;
    z-index: 10;
    width: 150px;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.1);
  }
  #main_slide .all-box .swiper-pagination {
    display: none !important;
  }
}