/*
ヘッダー
--------------------------*/
h1 {
	display: none!important;
	}


/*
共通
--------------------------*/
.title {
	font-family: "Google Sans", sans-serif;
	font-weight: 700;
	font-size: 2em;
	}

@media screen and (max-width: 767px) {	
.title {
	font-size: 1.65em;
	}
}


/*
メッセージ
--------------------------*/
.message h2 span {
	font-size: 0.3em;
	}

@media screen and (max-width: 767px) {
.message h2 span {
	font-size: 0.18em;
	}	
}


/*
コンタクト
--------------------------*/
.contact {
	margin: 0;
	padding: 0;
	text-align: center;
	background-color: #e2e2e2;
	color: #000;
	}

.contact label {
	text-align: left;
	padding-left: 0.5em;
    }

.contact form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    }

.form-group {
	display: flex;
	flex-direction: column;
	margin-top: 2em;
    }

.half {
	width: 48%;
    }

.full {
	width: 100%;
    }

.contact input,
.contact textarea {
	padding: 1em;
	border: 1px solid #999;
	width: 100%;
	font-size: 1.1em;
	font-family: "Inter", "Noto Sans JP", sans-serif;
    }

.contact .h-captcha {
	margin: 0 auto;
	margin-top: 3em;
	width: 100%;
    }

.contact button {
	width: 75%;
	max-width: 400px;
	margin: 2em auto 0;
	padding: 1em 0;
	border: 3px solid #6F8F78;
	border-radius: 9999px;
	background-color: #2F4F3A;
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-size: 1.05em;
    }

.contact button:hover {
	text-decoration: underline;
    }

@media screen and (max-width: 767px) {
.contact form {
	flex-direction: column;
	}

.half,
.full {
	width: 100%;
	}
}