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


.scroll-fade {
  opacity: 0;
  transform: translate(0, 80px); /* フェードインで動く高さを指定 */
  transition: all 1200ms; /* フェードインにかかる時間を指定 */
}
.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

/* パソコン*/
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォン*/
@media only screen and (max-width: 768px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}