@charset "utf-8";

/* エラーメッセージ */
#form table td div.Error {
	font-size: 1.6rem;
	color: #ff1f1f;
}

@media screen and (max-width: 768px) {
	#form table td div.Error {
		font-size: 1.1rem;
		line-height: 2;
	}
}


/* お問い合わせ種別 */
#form table td.kind .other {
	margin-left: 38px;
}

@media screen and (max-width: 768px) {
	#form table td.kind .other {
		margin-left: 0;
	}
}


/* 修正するボタン */
#form .gray-btn {
	display: block;
	width: 450px;
	height: 60px;
	line-height: 60px;
	position: relative;
	box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	background: #d6d6d6;
	margin: 48px auto 0;
}
#form .gray-btn::before{
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	background: url(../img/arrow1.png) no-repeat center center;
	background-size: contain;
	top: 50%;
	right: 17px;
	margin-top: -10px;
}
#form .gray-btn.back::before{
	right: auto;
	left: 17px;
	margin-top: -10px;
	transform: rotate(180deg);
}
#form .gray-btn:hover {
	color: #333;
	background: #fff;
}
#form .gray-btn:hover::before{
	background: url(../img/arrow3.png) no-repeat center center;
	background-size: contain;
}

@media screen and (max-width: 768px) {
	#form .gray-btn {
		width: 89.5%;
		font-size: 1.4rem;
		height: auto;
		line-height: 1;
		padding: 20px 0;
	}
}


/* 完了画面 */

#message .complete {
	margin: 48px 0 48px;
}
#message .complete .txt {
	text-align: center;
}
#btn_area {
	padding: 45px 0 55px;
}

@media screen and (max-width: 768px) {
	#message .complete {
		margin: 35px 0 35px;
	}
	#btn_area {
		padding: 35px 0 55px;
	}
}