@charset "utf-8";
#contact_title {
	color: rgba(255,255,255,1.00);
	text-align: center;
	font-size: 50px;
}
#form {
	margin-top: 60px;
	margin-bottom: 30px;
	width: 70vw;
	margin-left: auto;
	margin-right: auto;
}
#form_layout {
	background: rgba(255,255,255,1.0);
	margin-top: 60px;
	filter: drop-shadow(10px 10px 10px rgba(0,0,0,0.1));
}
#form_inner {
	padding: 4%;
}
.form_text {
	font-weight: 700;
	margin-bottom: 20px;
	text-align: center;
}
.form_content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(200,200,200,1.0);
	padding-top: 40px;
	padding-bottom: 40px;
}
.form_label {
	color: rgba(255,255,255,1.00);
	text-align: center;
	padding: 6px 10px;
	font-size: 12px;
	font-weight: 700;
	background: rgba(192,0,0,1.00);
}
.form_name {
	font-weight: 700;
	text-align: right;
	width: 35%;
	margin-right: 10px;
	line-height: 1.2;
}
.form_name_small {
	display: block;
	font-family: 'Robot';
	font-weight: 900;
	font-size: 12px;
	color: rgba(29,112,179,1.00);
}
.form_input {
	width: 55%;
}
.form_input input {
	width: 96%;
	padding: 2%;
	border: 1px solid rgba(200,200,200,1.0);
}
.form_input textarea {
	width: 96%;
	padding: 2%;
	height: calc( 1.3em * 5 );
	line-height: 1.3;
	border: 1px solid rgba(200,200,200,1.0);
	font-family: 'Noto Sans JP';
	font-weight: 300;
}
.button {
	text-align: center;
}
.submit {
	margin-top: 40px;
	background: rgba(51,51,51,1.0);
	width: 400px;
	margin-left: auto;
	margin-right: auto;
	color: rgba(255,255,255,1.00);
	padding-top: 30px;
	padding-bottom: 30px;
	cursor: pointer;
	font-family: 'Noto Sans JP';
	font-size: 16px;
	letter-spacing: 0.1em;
	border: none;
}
.submit:hover {
	transition: 0.5s;
	opacity: 0.5;
}
#thanks {
	padding-top: 100px;
}
#thanks_text {
	color: rgba(255,255,255,1.00);
	text-align: center;
	margin-top: 60px;
}
#thanks_text a {
	color: rgba(255,255,255,1.00);
}
@media screen and (max-width:768px) {
#contact_title {
	font-size: 40px;	
}
#form {
	margin-top: 40px;
	margin-bottom: 20px;
	width: 90vw;
}
#form_layout {
	margin-top: 40px;
}
.form_text {
	margin-bottom: 10px;
}
.form_content {
	justify-content: flex-start;
	flex-wrap: wrap;
	padding-top: 30px;
	padding-bottom: 30px;
}
.form_label {
	padding: 2px 6px;
	font-size: 10px;
}
.form_name {
	text-align: left;
	margin-left :10px;
}
.form_name_small {
	font-size: 8px;
}
.form_input {
	width: 100%;
}
.form_input input {
	margin-top: 10px;
}
.form_input textarea {
	margin-top: 10px;
}
.submit {
	margin-top: 20px;
	width: 50vw;
	padding-top: 20px;
	padding-bottom: 20px;
	font-size: 12px;
}
#thanks {
	padding-top: 60px;
}
#thanks_text {
	margin-top: 30px;
}
}