@charset "utf-8";
/* CSS Document */
/*==================================================
ヒュッ
===================================*/

/* 縮小 */
.zoomOut{
  animation-name:zoomOutAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
}

@keyframes zoomOutAnime{
  from {
  transform: scale(1.2);
  }

  to {
      transform:scale(1);
  }
}

/*========= レイアウトのためのCSS ===============*/



p{
  margin:50px 0;
}


.box{
  width: 220px;
  padding: 20px;
  background: #666;
  color: #fff;
}


