.next-button{
  margin-top: 50px;
  text-align: center;
}
.next-button a{
  width: 90%;
  margin: 0 auto;
  border-radius: 5px;
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  background: linear-gradient(to right, #7CC4FF, #9681FF);
  border: none;
  line-height: 2.8;
  transition: .2s;
}
.next-button a svg{
  margin: 15px auto;
  transition: all 0.5s ease 0s;
}

@media screen and (min-width:1025px) {
/*　画面サイズが1025px以上はここを読み込む　*/
  .next-button{
    width: 400px;
    margin: 75px auto;
  }
  .next-button a:hover {
    transform: translateY(-0.1875em);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
    background: linear-gradient(to right, #7CC4FF, #7F66FF);
  }
  .next-button a svg:hover {
    transform: scale(1.3, 1.3);
  }
}
