@charset "utf-8";
@import url("reset.css");
/*base*/
@import url("common.css");
/*
@import url("frame.css");
*/


/* contact */

.contact-form {
	max-width: 500px;
	margin: 40px auto;
}
.contact-form h1 {
	font-size: 32px;
	margin: 30px auto;
	text-align: center;
}
.contact-form dd {
	margin-bottom: 10px;
}
.contact-form input {
	height: 22px;
	width: 476px;
	margin: 5px 0 5px 0;
	padding: 2px 10px;
	border: 2px solid #999;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	outline: none;
	font-size: 12px;
}
.contact-form textarea {
	height: 102px;
	width: 476px;
	padding: 7px 10px;
	margin: 5px 0 0 0;
	border: 2px solid #999;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	outline: none;
	font-size: 12px;
	resize: vertical;
	background: #ffffff;
	font-weight: normal;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border: 2px solid #4b618d;
}
.contact-form .btn {
	width: 200px;
	padding: 5px 0;
	border: 2px solid #4b618d;
	border-radius: 4px;
	background-color: transparent;
	text-align: center;
	text-decoration: none;
	display: block;
	opacity: 1;
	margin: 30px auto 20px;
	transition: 0.3s; 
}

.contact-form .btn:hover {
	background: #4b618d;
	color: white;
}

@media screen and (max-width: 720px) {
.contact-form {
	margin: 20px auto;
}
.contact-form h1 {
	font-size: 28px;
}
.contact-form dl {
	padding: 10px 20px;
}
.contact-form dd {
	text-align: left;
	margin-left: 0;
}
.contact-form input {
	width: 80%;
	height: 32px;
	font-size: 16px;
}

.contact-form textarea {
	width: 90%;
	font-size: 16px;
}
}


/* error */

.error-title {
	color: #666;
	font-size: 24px;
	text-align: center;
	margin-bottom: 20px;
}
.error-box {
	min-height: 35vh;
}
.error-message {
	color: red;
	line-height: 2.4;
}

/* thankx */

.thanks-message {
	color: #666;
	font-size: 24px;
	text-align: center;
	min-height: 20vh;
	display: flex;
	justify-content: center;
	align-items: center;
}