@charset "UTF-8";
/* CSS Document */


/*==============================
メイン設定
==============================*/

/*------------------------------
コンタクト設定
------------------------------*/

/*コンタクト全体*/
#contact{
	padding: 85px 0 0;
	width: 100%;
}

/*コンタクト 日本語見出し*/
#contact h2::after{
	content: "- お問い合わせ -";
}

/*コンタクト 説明*/
#contact .desc{
	margin: 56px 0 0 0;
	color: #4D4D4D;
	font-size: 1.4rem;
	text-align: center;
}

/*formWrap*/
.formWrap{
	margin: 70px auto 0;
	padding: 50px;
	width: 814px;
	background: #FFF;
}

/*フォームテーブル*/
#form{
	width: 100%;
}

/*フォームテーブル 行*/
#form tr{
	display: block;
	margin: 0 0 56px 0;
}

/*フォームテーブル 行 4〜5つ目*/
#form tr:nth-child(4),
#form tr:last-child{
	margin: 0;
}


/*フォームテーブル 見出し*/
#form th{
	width: 180px;
	color: #231815;
	font-size: 1.4rem;
	font-weight: normal;
	text-align: left;
	font-family:"ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro",Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

/*フォームテーブル 見出し お問い合わせ内容*/
#form tr:nth-child(4) th{
	vertical-align: top;
}

/*フォームテーブル 見出し 必須*/
#form th span{
	display: inline-block;
	margin: 0 0 0 5px;
	padding: 2px 5px;
	color: #FFF;
	font-size: 1.2rem;
	font-family:"ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro",Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	background: #FB0000;
}

/*input共通*/
#form input{
	width: 480px;
	height: 34px;
	font-size: 1.4rem;
	border: 1px solid #1A1A1A;
	border-radius: 0px;
}

/*textarea*/
#form textarea{
	width: 480px;
	height: 200px;
	font-size: 1.4rem;
	font-weight: normal;
	border: 1px solid #1A1A1A;
	border-radius: 0px;
}

/*ボタン全体*/
#form .sendBtn{
	margin: 30px 0 0 0;
	width: 480px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

/*ボタン input*/
#form .sendBtn input{
	width: 230px;
	height: 50px;
	color: #4D4D4D;
	font-size: 1.4rem;
	line-break: 50px;
	text-align: center;
	background: #FFF;
	cursor: pointer;
	transition: 0.15s;
	border: 1px solid #4D4D4D;
	transition: 0.15s;
}

/*入力確認ボタン*/
#form .sendBtn li:first-child input{
	color: #FFF;
	background: #4D4D4D;
}

/*入力確認ボタン ホバー*/
#form .sendBtn li:first-child.active input{
	background: #FB0000;
	border: 1px solid #FB0000;
	transition: 0.3s;
}

/*リセットボタン*/
#form .sendBtn li:nth-child(2).active input{
	color: #FFF;
	background: #FB0000;
	border: 1px solid #FB0000;
	transition: 0.3s;
}



/*==============================
レスポンシブ設定
==============================*/

/*768px以下の場合*/
@media screen and (max-width:768px){

	/*==============================
	メイン設定
	==============================*/

	/*------------------------------
	コンタクト設定
	------------------------------*/

	/*コンタクト全体*/
	#contact{
		padding: 60px 0 0 0;
	}

	/*コンタクト 説明*/
	#contact .desc{
		margin: 40px 0 0 0;
	}

	/*formWrap*/
	.formWrap{
		margin: 50px auto 0;
		width: calc(100% - 80px);
	}

	/*フォームテーブル 行*/
	#form tr{
		margin: 0 0 30px 0;
	}

	/*フォームテーブル 見出し*/
	#form th{
		margin: 0 0 10px 0;
	}

	/*フォームテーブル 見出し&データ*/
	#form th,
	#form td{
		display: block;
		width: 100%;
	}

	/*input共通*/
	#form input{
		width: 100%;
	}

	/*textarea*/
	#form textarea{
		width: 100%;
	}




}

/*480px以下の場合*/
@media screen and (max-width:480px){

	/*==============================
	メイン設定
	==============================*/

	/*------------------------------
	コンタクト設定
	------------------------------*/

	/*コンタクト全体*/
	#contact{
		padding: 40px 0 0 0;
	}

	/*コンタクト 説明*/
	#contact .desc{
		margin: 30px 0 0 0;
	}

	/*formWrap*/
	.formWrap{
		margin: 30px auto 0;
		padding: 30px 20px;
		width: calc(100% - 40px);
	}

	/*input共通*/
	#form input{
		height: 30px;
	}

	/*ボタン全体*/
	#form .sendBtn{
		margin: 0 auto;
		width: 100%;
		flex-direction: column;
	}

	/*ボタン input*/
	#form .sendBtn input{
		width: 100%;
	}

	/*入力確認ボタン*/
	#form .sendBtn li:first-child input{
		margin: 0 0 15px 0;
	}



}












