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

/*メインイメージ*/
#contact-main-image{
	background-image: url( "../images/contact/main.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding-bottom: calc(100%*150/1000);
	position: relative;
}
#contact-page-title01{
	position: absolute;
	color: white;
	font-size: 1.4rem;
	font-weight: bold;
	top:20%;
	left: 3%;
}
#contact-page-title02{
	position: absolute;
	color: white;
	font-size: 1rem;
	font-weight: 300;
	top:50%;
	left: 3%;
}
/* お問合せフォーム*/

.label01{
	letter-spacing: 0.01em;
}
.req{
	color: red;
	margin-left: 1rem;
}
.any{
	color: blue;
	margin-left: 1rem;
}
.form-control-lg{
	width: 100%;
	height: 8vh;
}
/* ラジオボタン・チェックボックスの大きさ位置*/
input[type=checkbox]{
	transform: scale(1.2);
	margin-left: 1.8rem;
}

input[type=radio]{
	transform: scale(1.5);
	margin-left: 1rem;
}
/* スマフォで拡大させない設定*/
input{
 font-size: 16px!important;
 transform: scale(0.9); 
} 
select{ 
 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: #00a0e9;
	color: #FFF;
	border-radius: 4px;
	box-shadow: 0px 0px 0px 5px #00a0e9;
	border: dashed 1px #FFF;
}
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) {
	#contact-page-title01{
		font-size: 2.6rem;
		top:25%;
	}
	#contact-page-title02{
		font-size: 1.4rem;
		top:55%;
	}
}
/*PC表示設定*/
@media (min-width: 1025px) {
	#contact-page-title01{
		font-size: 4rem;
	}
	#contact-page-title02{
		font-size: 2.4rem;
	}
	
}
