.move-btn-wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .move-btn-wrap {
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-bottom: 0;
  }
}
.move-btn-wrap .move-btn {
  margin: 0 10px;
  width: 310px;
  height: 70px;
  display: -webkit-flex;
  display: flex;
  white-space: nowrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: white;
  border: 2px solid #0096f4;
  color: #0096f4;
  font-size: 1.25em;
  border-radius: 10px;
}
@media screen and (max-width: 1000px) {
  .move-btn-wrap .move-btn {
      width: 100%;
      margin: 0 0 20px;
  }
  .move-btn-wrap .move-btn:last-child {
      margin-bottom: 0;
  }
}
.move-btn-wrap .move-btn .move-btn-img {
  width: 100px;
  height: 70px;
  background-color: #0096F4;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.move-btn-wrap .move-btn .move-btn-img-img {
  width: 50px;
  height: auto;
}
.move-btn-wrap .move-btn .move-btn-text {
  width: calc( 100% - 100px );
  height: 60px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: bold;
}
.move-btn-wrap--fv {
  margin-bottom: 0;
  padding: 20px 15px;
}
.move-btn-wrap .move-btn:hover {
  opacity: 0.6;
}
