@charset "UTF-8";
/* CSS Document */


/*basic*/

body{
  background: #fff;
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: #000;
  text-align: center;
  font-feature-settings: "palt";
  letter-spacing: .025em;
}
a{
  transition: .3s all ease;
  text-decoration: none;
  color: inherit;
}
a img,
input[type="submit"]
input[type="reset"],
input[type="button"]{
  transition: .4s all ease;
}
a:hover img,
input[type="submit"]:hover
input[type="reset"]:hover,
input[type="button"]:hover{
  transform: translateY(-5px);
}

#container{
  overflow-x: hidden;
}
.wrap{
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding-bottom: 120px;
}
.sticky{
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;
}
.target {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
.slick-next {
  right: 10px;
}
.slick-prev {
  left: 10px;
}
.slick-prev, .slick-next {
  z-index: 10;
  width: 50px;
  height: 50px;
}
.slick-dots li button {
  background: #eee;
  border-radius: 10px;
  width: 15px;
  height: 15px;
}
.slick-dots li.slick-active button {
  background: #ddd;
}
.slick-prev:before, .slick-next:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: #F49E13;
  transition: .4s all ease;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.slick-next:after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  position: absolute;
  transform: rotate(45deg);
  top: 0;
  left: 0;
  right: 5px;
  bottom: 0;
  margin: auto;
}
.slick-prev:after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  position: absolute;
  transform: rotate(-45deg);
  top: 0;
  left: 5px;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 750px){
  .wrap{
    padding-bottom: 16vw;
  }
  .sticky{
    width: 90vw;
  }
}