div.form-top-left{
display:none;
}



/* ▼▼ ヘッダー画像を普通に挿入するCSS ここから ▼▼ */
.form-top { 
  background-position: center center; 
  width: 100%; 
  height: 255px;  /* スマホでのヘッダー画像の高さはここの数値を変更 */
}

.form-top .form-top-right {
  display: none;
}

@media (min-width: 768px) {
  .form-top {
    height: 255px; /* パソコンでのヘッダー画像の高さはここの数値を変更 */
  }
}
/* ▲▲ ヘッダー画像を普通に挿入するCSS ここまで ▲▲ */

/* 送信ボタンをキラっと光らせるアニメーション */
.btn {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
margin:0 auto 40px !important;
}

.btn::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 50px;
    height: 50px;
    background-image: linear-gradient(100deg,  rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%);
    animation-name: shiny;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}


@keyframes shiny {
    0% {
        transform: scale(0) rotate(25deg);
        opacity: 0;
    }

    50% {
        transform: scale(1) rotate(25deg);
        opacity: 1;
    }

    100% {
        transform: scale(50) rotate(25deg);
        opacity: 0;
    }
}