/*

 メールフォームのCSS
 長さなどはここではなく各sub.css等で指定すること。
 
*/

/*
レスポンシブに関係ない色の設定など。
*/

/*テキストボックス・テキストエリア・セレクトの色関係*/
input[type="text"],
textarea,
select{
	border:0;
	padding:5px;
	font-weight:normal;
	color:#666;
	border:solid 2px #000;
}



/*チェックボタン・ラジオボタン*/
label.btn span {
	/*ここを変えるとボタンと文字の高さがずれるから変更禁止*/
	font-size: 1.9em;
}

.checkbox {
	display: none;
}
label input[type="radio"] ~ i.fa.fa-circle-o {
	color: #c8c8c8;
	display: inline;
}
label input[type="radio"] ~ i.fa.fa-dot-circle-o {
	display: none;
}
label input[type="radio"]:checked ~ i.fa.fa-circle-o {
	display: none;
}
label input[type="radio"]:checked ~ i.fa.fa-dot-circle-o {
	color: #7AA3CC;
	display: inline;
}
label:hover input[type="radio"] ~ i.fa {
	color: #7AA3CC;
}
label input[type="checkbox"] ~ i.fa.fa-square-o {
	/*チェックされていない時のボックスの色*/
	color: #646464;
	display: inline;
}
label input[type="checkbox"] ~ i.fa.fa-check-square-o {
	display: none;
}
label input[type="checkbox"]:checked ~ i.fa.fa-square-o {
	display: none;
}
label input[type="checkbox"]:checked ~ i.fa.fa-check-square-o {
	/*チェック時のボックスの色*/
	color: #276DF1;
	display: inline;
}
label:hover input[type="checkbox"] ~ i.fa {
	/*ホバー時のボックスの色*/
	color: #276DF1;
}
div[data-toggle="buttons"] label.active {
	color: #7AA3CC;
}
div[data-toggle="buttons"] label {
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: normal;
	line-height: 2em;
	text-align: left;
	white-space: nowrap;
	vertical-align: top;
	cursor: pointer;
	background-color: none;
	border: 0px solid #646464;
	border-radius: 3px;
	/*チェックされて無い時の文字の色*/
	color: #646464;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}
div[data-toggle="buttons"] label:hover {
	/*ホバー時の文字の色*/
	color: #276DF1;
}
div[data-toggle="buttons"] label:active, div[data-toggle="buttons"] label.active {
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #276DF1;
}

/*ボタンデザイン*/
/*
サイズはレスポンシブ
各ページごとに変えるかもしれないのでsub.cssで設定
*/

.button {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	line-height: 60px;
	outline: none;
	font-size: 18px;
	letter-spacing: 0.3em;
}
.button::before, .button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.button, .button::before, .button::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.button {
	background-color: #fff;
	line-height: 60px;
}


/*色2色*/
/*送信・警告ボタン*/
.bot1{
  border: 2px solid #0CF;
  color: #292770;
}
.bot1:hover{
  background-color: #0CF;
  border-color: #0CF;
  color: #FFF;
	
}
/*送信・警告ボタン*/
.bot2{
  border: 2px solid #888;
  color: #666;
	
}
.bot2:hover{
  background-color: #999;
  border-color: #888;
  color: #FFF;
	
}


/*確認*/
.conf{
	text-align:center;
}