/*== グラデーションが流れる */

.gradient1{
    /*ボタンの形状*/
    display: inline-block;
    color:#fff;
    padding: 18px 60px;
    padding: 12px 45px;
    /*
    border-radius:30px;
    */
    text-decoration: none;
    outline: none;
    /*背景の色と形状*/
    background: linear-gradient(270deg, #3bade3 0%, #576fe6 25%, #9844b7 51%, #ff357f 100%);
    background: linear-gradient(
  270deg,
  #333f49 0%,   /* サブカラー */
  #1f4f6e 25%,   /* 中間の深みカラー */
  #3393d1 51%,   /* メインを少し明るくした色 */
  #0071bc 100%    /* メインカラー */
);
    background-position: 1% 50%;
    background-size: 200% auto;
    /*アニメーションの指定*/
    transition: all 0.3s ease-out;
}

/*hoverした際の、背景の場所とテキスト色の変更*/
.gradient1:hover {
    color: #fff;
    background-position: 99% 50%;
}