@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%,
  100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}

.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(20% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 180px;
  height: 44px;
  border-radius: 5px;
  transition: opacity .3s;
  opacity: 0;
  background: rgba(0, 0, 0, .7);
  text-align: center;
  padding: 9px 16px 10px 45px;
}
@media screen and (max-width: 768px){
.scroll-hint-icon {
  width: 122px;
  height: 30px;
  padding: 5px 10px 5px 40px;
}	
}
.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 16px;
  color: #FFF;
}
@media screen and (max-width: 768px){
.scroll-hint-text {
  font-size: 12px;
}	
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 1;
}
.scroll-hint-icon:after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 0;
	bottom:0;
  left: 16px;
  margin: auto;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20.255" height="20.4" viewBox="0 0 20.255 20.4"><path d="M13.7,20.4V19.2H19.06V11.113L15.34,15.4l-.9-.791,3.3-3.8H2.011l3.351,4.025-.843.775-3.328-4v7.6H6.554v1.2H0V0H6.554V1.2H1.191V9.4l3.328-4,.843.776L2.509,9.6h15.24L14.443,5.8,15.34,5,19.06,9.285V1.2H13.7V0h6.553V1.2h0v18h0v1.2Z" fill="%233b4043"/></svg>');	
  opacity: 0;
  transition-delay: 2.4s;
}
@media screen and (max-width: 768px){
.scroll-hint-icon:after{
  left: 8px;
}	
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 2px 3px rgba(0, 0, 0, .4);
}
.scroll-hint-icon-white .scroll-hint-text {
  color: #3B4043;
}