  @charset "utf-8";

.js-slide {
  font-size: 0;
}

/*--------------------------------------------
slide ¥É¥Ã¥È
--------------------------------------------*/
.js-slide .slick-dots {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 15px;
  display: inline-block;
  list-style: none;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .js-slide .slick-dots {
    right: 27vw;
    bottom: 3.8vw;
  }
}

.js-slide .slick-dots li {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  width: 45px;
  height: 34px;
  margin: 0;
  padding: 0 14px;
}
@media screen and (max-width: 750px) {
  .js-slide .slick-dots li {
    width: 6.3vw;
    height: 6.3vw;
    padding: 0 3.733vw;
  }
}

.js-slide .slick-dots li button {
  position: absolute;
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 34px;
  height: 34px;
  cursor: pointer;
  text-align: center;
  text-indent: -9999px;
  border: none;
  border-radius: 50%;
  background: none;
  transform: rotate(45deg);
}
@media screen and (max-width: 750px) {
  .js-slide .slick-dots li button {
    width: 6.3vw;
    height: 6.3vw;
  }
}

.js-slide .slick-dots li button::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 4px;
  margin: auto;
  content: "";
  background: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 750px) {
  .js-slide .slick-dots li button::after {
    width: 0.8vw;
    height: 0.8vw;
  }
}

.js-slide .slick-dots li.slick-active button {
  position: relative;
  animation-name: stagger;
  animation-duration: 6s;
  animation-timing-function: ease-i-out;
  animation-iteration-count: infinite;
  border: solid 2px #666;
  outline: none;
}
@keyframes stagger {
  0% {
    border-color: rgba(255,255,255,0.5);
  }
  25% {
    border-color: #fff rgba(255,255,255,0.5) rgba(255,255,255,0.5) rgba(255,255,255,0.5);
  }
  50% {
    border-color: #fff #fff rgba(255,255,255,0.5) rgba(255,255,255,0.5);
  }
  75% {
    border-color: #fff #fff #fff rgba(255,255,255,0.5);
  }
  100% {
    border-color: #fff #fff #fff #fff;
  }
}

/* Ò»•rÍ£Ö¹¥Þ©`¥¯ */
.js-slide .slick-dots li.slick-active button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url(/freshers/assets/images/ic_slick_dots.svg) no-repeat;
  background-position: center;
  transform: rotate(-45deg);
}

/*--------------------------------------------
slide Ê¸Ó¡
--------------------------------------------*/
.js-slide .slick-prev,
.js-slide .slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  width: 80px;
  height: 80px;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
}
@media screen and (max-width: 750px) {
  .js-slide .slick-prev,
  .js-slide .slick-next {
    width: 11.111vw;
    height: 11.111vw;
  }
}

.js-slide .slick-prev {
  background: url(/freshers/assets/images/ic_arrow_slide.svg) no-repeat;
  background-size: 19px;
  background-position: center;
  transform: rotate(180deg);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .js-slide .slick-prev {
    background: url(/freshers/assets/images/ic_arrow_slide.svg) no-repeat;
    background-size: 2.638vw;
    background-position: center;
  }
}

.js-slide .slick-next {
  background: url(/freshers/assets/images/ic_arrow_slide.svg) no-repeat;
  background-size: 19px;
  background-position: center;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .js-slide .slick-next {
    background: url(/freshers/assets/images/ic_arrow_slide.svg) no-repeat;
    background-size: 2.638vw;
    background-position: center;
  }
}
