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

.main{
    background-color:#F8F8EE;
    padding-bottom: 4rem;
}

.title{
	height: 310px;
	background-image: url("../images/access/bg-main.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-shadow: 1px 1px 10px #4b2c14;
}
.title h1{
	font-family: 'Montserrat', sans-serif;
	font-size: 32px;
	font-weight: bold;
}
.title p{
	font-size: 14px;
	margin-top: 15px;
}
.main h2{
	font-size: 2rem;
	font-weight: bold;
	line-height: 30px;
    text-align: center;
}
.contactfolm{
	width: 930px;
	max-width: 90%;
	padding-top: 75px;
	margin-left: auto;
	margin-right: auto;
}
.form-area{
    margin-top: 3rem;
	background-color: #f8f8f8;
	border: 1px solid #aaaaaa;
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
}
.form-area dt{
	width: 200px;
	padding: 15px 0;
	font-size: 15px;
	font-weight: bold;
	line-height: 24px;
	
}
.form-area dd{
	width: calc(100% - 200px);
	padding: 15px 0;
}
.form-area dt .required::after{
	content: '必須';
	font-size: 11px;
	color: #eb4f32;
	margin-left: 10px;
}

select,input,textarea{
	background-color: #fff;
	border: solid 1px #505050;
	border-radius: 2px;
}

select{
	-webkit-appearance: radio;
}
.input-text{
	width: 100%;
	max-width: 280px;
	height: 40px;
	padding-left: 10px;
	padding-right: 10px;
}
.select-box{
	height: 30px;
}
.radio-button{
	display: block;
	margin-top: 20px;
}
.radio-button:first-child{
	margin-top: 0;
}
.radio-button input{
	margin-right: 8px;
}
.message{
	width: 100%;
	height: 260px;
	padding: 10px;
	line-height: 1.5;
}
.submit{
    text-align: center;
}
.confirm-text{
	font-size: 14px;
	line-height: 22px;
	/*margin-top: 30px;*/
     margin: 30px auto 0;
}
.submit-button{
	color: #fff;
	background-color: #767171;
	display: inline-block;
	min-width: 180px;
	line-height: 48px;
	border-radius: 16px;
	font-size:1rem;
	transition: .3s;/*独自の指定*/
	text-align: center;
	margin-top: 20px;
	cursor: pointer;
	border: none;
}
.submit-button:hover{
	background-color: #504D4D;
}
.warning{
	padding-top: 1rem;
	text-align: center;
}
@media (max-width: 800px){
	.select-box{
		width: 60%;
	}
	#page-top a {
		display: none;
	}
	.contactfolm{
		width: 500px;
		padding-top: 45px;
	}
	.form-area dt,.form-area dd{
		width: 100%;
	}
	.form-area{
		padding-bottom: 0;
	}
	.submit-button{
		width: 50%;
	}
}