  @charset "utf-8";

/* フェードイン */
@keyframes fade-in{
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}