ameeeee
5/7/2020 - 1:57 AM

Contact Form 7 のデザインを変更

	.section {
    .ajax-loader.is-active {	// contact form 7 の送信ボタンクリック時のローダー非表示
			display: none !important;
			visibility: hidden !important;
		}
		div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {	// contact form 7 の入力ミス確認メッセージ
			border: 0;
			background-color: rgba( $color-red, 0.2 );
			text-align: center;
		}
		div.wpcf7-response-output {	// 送信ボタン下メッセージ
			padding: 0.5em 1em;
		}
		div.wpcf7-mail-sent-ok { // cpmtact form 7 送信完了(送信中)メッセージ
			border: 0;
			background-color: rgba( $color-main, 0.2 );
			text-align: center;
		}
	}
	
	
	// 確認画面追加プラグイン(Contact Form 7 add confirm)のデザイン変更
	
.wpcf7c-elm-step2-message {
	text-align: center;
	font-weight: bold;
	padding: 1em;
	font-size: 120%;
}
input.wpcf7c-conf{
	background-color:#fff !important;
	border:none !important;
	box-shadow:none !important;
	border-radius:0 !important;
	color:$color-red !important;
	&:focus {
		outline: none;
	}
}
textarea.wpcf7c-conf{
	background-color:#fff !important;
	border-radius:0 !important;
	border:none !important;
	box-shadow:none !important;
	color:$color-red !important;
	min-height: 2em !important;
	&:focus {
		outline: none;
	}
}