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

/*お問い合わせフォームのエラー表示*/
/*index.html*/

.formErr {
	background-color: #f9ebeb !important;
	box-shadow: none !important;
}

.redAlerts {
	line-height: 140%;
	font-size:100%;
	background: #f9ebeb none repeat scroll 0 0;
	border: 2px solid #f0d1d1;
	border-radius: 9px;
	box-sizing: border-box;
	color: #b20000;
	margin: 0 auto 24px;
	padding: 20px;
	text-align: left;
	width: 100%;
}

/*confirm.htmlで、戻るボタンと送信ボタンをそれぞれ<form></form>で
囲ったのでそのレイアウト調整*/
/*confirm.html*/

.btn_box_jpc {
	max-width: 470px;
	margin:0 auto;'
}

.left_btn_jpc {
	float: left;
}


.width195 {
	width: 340px;
	font-size:90%;
}

@media screen and (max-width:768px){
	.left_btn_jpc {
		float: none;
	}

	.right_btn_jpc {
		float: none;
	}
}


/*お問い合わせフォームで国のselectboxの幅の調整と*/
/*デバイスの縦向き、横向きで変える*/
/*index.html*/
@media screen and (max-width:668px) {
	.redAlerts
	{
		
		line-height: 140%;
		font-size:80%;
		padding:20px;
		/*padding-bottom:60px;*/
		color:#B20000;
		background:#F9EBEB;
		border:solid 2px #F0D1D1;
		border-radius:9px;
		width:100%;
		margin:0px auto;
		margin-bottom:30px;
		text-align:left;
		box-sizing:border-box;
	}
}

@media screen and (orientation:portrait) {
	.width195 {
		width: 195px;
		font-size:80%;
	}
}
