.form_input {
    display:block;
}
.form_conf {
    display:none;
}
input:focus,
textarea:focus,
select:focus
{
  border: 2px solid #f29600;
  outline: 0;
}
.form_err,
.form_err ~ label.radio::before
{
  background-color: #fff0f5;
}

/* エラーメッセージ */
.err {
	display: block;
	color: #ff0012;
	font-size: 12px;
	margin-top: 10px;
}
/* 送信ボタン */
.btn_conf {
	display: inline-block;
	border: 2px #000 solid;
	border-radius: 0;
	background: #fff000;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 2px;
	line-height: 1;
	padding: 15px 30px;
	margin: auto;
	cursor: pointer;
}
/* 戻るボタン */
#btn_back.btn_conf {
	background: #fff;
	margin-right: 10px;
}

/* 確認ページ ラジオボタン削除 */
.radio.form_conf {
	display: none!important;
}

@media screen and (max-width : 980px) {
	.btn_conf {
		font-size: 16px;
		letter-spacing: 1px;
	}
}



