@charset "utf-8";
@media screen and (max-width: 9in) {
	.content {
		flex-wrap: wrap;
	}
	.contactinfo {
		width: 90%;
	}
	.sendmail {
		width: 90%;
	}
}
@media screen and (min-width: 9.1in) {
	.content {
		flex-wrap: nowrap;
	}
	.contactinfo {
		width: 50%;
	}
	.sendmail {
		width: 30%;
	}
}
.content {
	width: 94%;
	padding: 3%;
    display: flex;
	justify-content:space-between;
}
.contactinfo {
	margin: 2%;
	padding: 3%;
	background-color: #f0f0f0;
}
.contactinfo h3 {
	font-size: 1em;
	font-weight: bold;
	margin-top: 0.4em;
	margin-bottom: 0.4em;
	padding: 0;
}
.contactinfo p {
	margin-top: 0.2em;
	margin-bottom: 0.2em;
}
.sendmail {
	margin: 2%;
	padding: 3%;
	background-color: #dddddd;
}
.sendmail form {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.sendmail input {
	width: 100%;
	height: 1.5rem;
}
.sendmail textarea {
	width: 100%;
}
.sendmail h2 {
	text-align: center;
	margin-top: 0;
	margin-bottom: 0.5rem;
	padding: 0;
}
.sendmail p {
	margin-top: 0.1rem;
	margin-bottom: 0.1rem;
	padding: 0;
}
.sendmail .button {
	width: 100%;
	display: flex;
	justify-content: space-around;
}
.sendmail .button input {
	width: 35%;
	height: 2rem;
}