.swiperWrap {
  position: relative;
  overflow: hidden;
  width: 100%; /*2022.11.15 추가완료*/
}
.swiperWrap::after {
  content: '';
  display: block;
  width: 3rem;
  height: 1rem;
  background: url('../images/wg_bg03.png');
  position: absolute;
  bottom: -0.5rem;
  right: 0;
  z-index: 20;
}
.swiperWrap::before {
  content: '';
  display: block;
  width: 3rem;
  height: 1rem;
  background: url('../images/wg_bg03.png');
  position: absolute;
  bottom: 0.5rem;
  left: -0.625px;
  z-index: 20;
  transform: rotate(0.5turn);
}

.swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
  margin-left: 0;
}

.swiper-slide {
  text-align: center;
  background: #fff;
  font-weight: 400;
  height: 4rem;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  /*추가*/
  border-bottom: 2px solid #ddd;
  position: relative;
  padding: 0 2rem;
  width: 33.333% !important; /*2022.11.15 오류확인 및 수정*/
}
.swiper-slide:first-of-type {
  margin-left: 0px;
}
/*11.09 추가부분*/
.swiper-slide:last-of-type {
  margin-right: 3rem;
}
.swiper-slide a {
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 3.5rem;
  font-size: 1.1rem;
  color: #666;
}
.swiper-slide.active {
  border-bottom: 2px solid #01954a;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  font-weight: 700;
  z-index: 20;
}

.swiper-slide.active a {
  color: #01954a;
}
.swiper-slide:hover {
  border-bottom: 2px solid #08b061;
  transition: all 0.3s;
}

.stickyBox {
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  left: 0;
  height: 4rem;
  z-index: 30;
  background: #fff;
  margin: 1.5rem 0;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

/*clearfix*/
.cf:after {
  clear: both;
  content: '';
  display: block;
}

.study-vis {
  overflow: visible !important;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0 !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: #b8dbc7;
}

.swiper-button-next {
  background: url('../images/arrow.png') no-repeat;
  background-size: 50% auto;
  background-position: center;
  opacity: 0.7;
  margin-right: 0.5rem;
}

.swiper-button-prev {
  background: url('../images/arrow.png') no-repeat;
  background-size: 50% auto;
  background-position: center;
  transform: rotate(0.5turn);
  opacity: 0.7;
  margin-left:0.5rem;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 0px;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 0;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

@media (max-width: 600px) {
  .stickyBox {
    height: 4rem;
    margin: 1rem 0;
    width: 100%;
    margin-left: -5%;
  }
  .r_box .stickyBox {
    height: 4rem;
    margin: 1rem 0;
    width: 105%;
    margin-left: -5%;
  }
  .swiper-slide {
    height: 4rem;
    padding: 0 2rem;
    min-width: 32%;
  }
  .r_box .swiper-slide:first-of-type {
    margin-left: 1rem;
  }
  .swiper-slide a {
    line-height: 4rem;
    font-size: 1rem;
  }
  .swiper-button-next {
    background-size: 30% auto;
    background-position: center;
  }

  .swiper-button-prev {
    background-size: 30% auto;
    background-position: center;
    transform: rotate(0.5turn);
  }
}
