@charset "UTF-8";
/* スクロール用のcss */

.sa {
  opacity: 0;
  transition: all .9s ease;
}

.sa.show {
  opacity: 1;
  transform: none;
}

.sa--up {
  transform: translate(0, 100px);
}

/*500px以下でふわっと上がるスピードを調整 */
@media screen and (max-width:500px) {
	.sa--up{
		transform: translate(0, 30px);
}
}
