body {
  background-color: #f0eef8;
}
.wrapper{
  max-width: 750px;
  margin: 0 auto;
  overflow: hidden;
}
.wrapper img{
  width: 100%;
  height: auto;
  display: block;
}
.cta_inner{
  position: relative;
}
.cta_hotpepper{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 92%;
}
.cta_line{
  position: absolute;
  top: 53%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 92%;
}
.cta_inner a img{
  transition: filter 0.4s ease;
}
.cta_inner a:hover img{
  filter: saturate(1.4);
}
.staff{
  background-color: #e9e9ff;
  padding-bottom: 8%;
}
.staff_inner{
  position: relative;
  padding: 0 8%;
}

.swiper-button-prev{
  background-image: url(../images/arrow_prev.png);
  background-repeat: no-repeat;
  background-size: 100%;
  cursor: pointer;
  width: 14px;
  height: 26px;
  position: absolute;
  top: 45%;
  left: 3%;
  z-index: 99;
}
.swiper-button-next{
  background-image: url(../images/arrow_next.png);
  background-repeat: no-repeat;
  background-size: 100%;
  cursor: pointer;
  width: 14px;
  height: 26px;
  position: absolute;
  top: 45%;
  right: 3%;
  z-index: 99;
}
@media screen and (min-width:768px) { 
  .swiper-button-prev{
    width: 28px;
    height: 52px;
  }
  .swiper-button-next{
    width: 28px;
    height: 52px;
  }
}

.fixed-offer {
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  position: fixed;
  transition: opacity .3s linear 0s;
  width: 750px;
  max-width: 100%;
  margin: auto;
  z-index: 99;
}
.fixed-offer__inner{
  display: flex;
}
.fixed-offer-is-invisible {
	opacity: 0;
}
.fixed-offer-is-invisible.fixed-offer-is-ended {
	left: 100%;
}
.fixed-offer-is-visible {
	opacity: 1 !important;
} 
.fixed-offer__btn img{
  transition: filter 0.4s ease;
}
.fixed-offer__btn:hover img{
  filter: saturate(1.4);
}