@charset 'UTF-8';
/* Slider */


.slick-prev,
.slick-next{
  font-size: 0;
  top:0;
  bottom:0;
  margin:auto;
  line-height: 0;
  position: absolute;
  width:16px;
  height:32px;
  padding: 0;
  z-index: 9;
  cursor: pointer;
  color: transparent;
  border:none;
  outline: none;
  transition: all .25s;
  background:none;
  box-sizing: border-box;
  display:flex;
  justify-content:center;
  align-items: center;
}

.slick-next {
  right:-2.4rem;
}

.slick-prev {
  left:-2.4rem;
}

@media screen and (min-width:769px) {
   .slick-next {
    right:-28px;
  }

  .slick-prev {
    left:-28px;
  }
  
}

@media screen and (min-width:1000px) {
 .slick-next {
    right:0;
  } 
}

@media screen and (min-width:1140px) {
  .slick-next {
    right:-28px;
  }
}


.slick-prev:before {
  background:url("../images/top/icon_slider.svg")no-repeat;
  background-size: contain;
  background-position: center;
  width:1rem;
  height:2.1rem;
  content:"";
  position: absolute;
  right: 0;
  left:0;
  top:0;
  bottom:0;
  margin:auto;
  transform: rotate(180deg);
}

.slick-next:before {
  background:url("../images/top/icon_slider.svg")no-repeat;
  background-size: contain;
  background-position: center;
  width:1rem;
  height:2.1rem;
  content:"";
  position: absolute;
  right: 0;
  left:0;
  top:0;
  bottom:0;
  margin:auto; 
}

@media screen and (min-width:769px) {
  .slick-prev:before {
    width:16px;
    height:32px;
  }

  .slick-next:before {
    width:16px;
    height:32px;
  }
}





[dir='rtl'] .slick-prev {
    right: 90px;
}

.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}




[dir='rtl'] .slick-next
{
    bottom:0;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */


.slick-dots {
  position: absolute;
  bottom: -3rem;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  z-index: 3;
  right:0;
  left:0;
}



.slick-dots li {
    position: relative;
    display: block;
    width: 1rem;
    height: 1rem;
    border-radius: 1rem;
    margin: 0 .7rem;
    padding: 0;
    cursor: pointer;
}

@media screen and (min-width:769px) {
  .slick-dots {
    bottom: -28px;
  }
  
  .slick-dots li {
      margin: 0 8px;
  }
  
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 1rem;
    height: 1rem;
    border-radius: 1rem;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #D9D9D9;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 1rem;
  content: '';
  text-align: center;
  opacity: 1;
  background: #D9D9D9;
}

.slick-dots li.slick-active button:before {
    content: '';
    opacity: 1;
    background: #B199C4;
}

