@charset "utf-8";
/* CSS Document */
.h1-box{
	background-color: #F3981C;
	text-align: left;
	padding: 1em;
	margin-bottom: 2em;
}
h1{
	font-size:1.6rem;
	font-family:ＭＳ Ｐ明朝,ＭＳ 明朝;
	font-weight:bold;
	letter-spacing: 0.1em;
	color: white;
	padding-bottom: 2em;
}
h1:before{
	content: "CONTACT";
	font-size: 2.8rem;
	line-height: 2rem;
	display: block;
}
.form-group{
	font-size: 1.8rem;
	line-height: 4rem;
}
.req{
	color: red;
	margin-left: 1rem;
}
.any{
	color: blue;
	margin-left: 1rem;
}
.form-control-lg{
	width: 100%;
	height: 8vh;
}
/* ラジオボタンの大きさ位置*/
input[type=radio]{
	transform: scale(1.2);
	margin-left: 3rem;
}
/* スマフォで拡大させない設定*/
input{
 font-size: 16px!important;
 transform: scale(0.9); 
} 
 textarea{ 
 font-size: 16px!important;
 transform: scale(0.9); 
}
/* 必須を目立たせる*/
select:required,input:required{
	background-color: rgba(0,160,233,0.1);
}
select:valid,input:valid{
	background: transparent;
}
/* 確認・リセット*/
input[type="submit"]{
	display: inline-block;
	width: 80%;
	padding: 0.5em 1em;
	background: #F3981C;
	color: #FFF;
	border-radius: 4px;
	box-shadow: 0px 0px 0px 5px #F3981C;
	border: dashed 1px #FFF;
}
input[type="submit"]:hover,input[type="reset"]:hover{
	background: white;
	color: #601986;
	border: dashed 1px #601986;
}
input[type="reset"]{
	display: inline-block;
	width: 80%;
	padding: 0.5em 1em;
	background: #dcdddd;
	border-radius: 4px;
	box-shadow: 0px 0px 0px 5px #dcdddd;
	border: dashed 1px #FFF;
}
/*タブレット表示設定*/
@media (min-width: 600px){
	h1:before{
		font-size: 2.0rem;
	}
		
}
/*PC表示設定*/
@media (min-width: 1025px){
	h1:before{
		font-size: 2.8rem;
	}
	
}

