@charset "UTF-8";
/*
    Template: swell
    Theme Name:クルマサイト1111
    Theme URI: https://swell-theme.com/
    Description:自動車関連に特化したサイト
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

.updown {
  animation-name: updown1; /* アニメーション名の指定 */
  animation-delay: 0s; /* アニメーションの開始時間指定 */
  animation-duration: 3s; /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
  animation-iteration-count: infinite;
}

@keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  65% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}


.wpcf7-form.sent> .btn_contact7.is-seminar{
 display: none;
}
.btn_contact7.is-seminar>input{
	@media screen and (max-width: 600px) {
		width:100%;
	}
}
