@charset "UTF-8";

@media screen and (min-width:481px) {
body{
	width: 500px;
  margin:0 auto;
}

.button{
  text-align: center;
  margin:0 auto;
  margin-top: 30px;
}
.button a img{
width:80%;
}
.animated {
  animation: move-y .5s infinite alternate ease-in-out;
  display: inline-block;
  color: red;
}
@keyframes move-y {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10px);
  }
}
}
@media screen and (max-width:480px) {
.mv img{
	width:100%;
}
.button{
	text-align: center;
	margin:0 auto;
	margin-top: 30px;
}
.button a img{
width:90%;
}
.animated {
  animation: move-y .5s infinite alternate ease-in-out;
  display: inline-block;
  color: red;
}
@keyframes move-y {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10px);
  }
}
}