@charset "UTF-8";

/**************************************************
フォーム */
**************************************************/
/* 非表示：reCAPTCHAバッジ */
.grecaptcha-badge {
	visibility: hidden;
}

/* スペース */
main form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
main form p {
	margin: 0 !important;
}
main form p.btn {
	margin-top: 3rem !important;
}

/* 入力欄 */
input[type="text"] ,
input[type="url"] ,
input[type="email"] ,
textarea {
	width: 100%;
	margin: 0.5rem 0 0;
	padding: 1rem;
	border: 1px solid #ddd;
	font-size: 1.5rem;
}
textarea {
	line-height: 1.4;
}

/* 必須 */
form em {
	position: relative;
	bottom: 2px;
	display: inline-block;
	color: #93B4BE;
	background-color: #356472;
	margin-right: 1rem;
	padding: 0.25rem 1rem 0.4rem;
	font-size: 1rem !important;
	line-height: 1 !important;
}
form .optional {
	color: #356472;
	background: none;
	border: 1px solid #356472;
}

/* 送信ボタン */
form p.submit {
	text-align: center;
	position: relative;
}

/* 送信中に回るやつ */
span.wpcf7-spinner{
	position: absolute;
	right: 0;
	bottom: 0;
	margin: 0 !important;
}

/* 不備の警告（赤字） */
.wpcf7-not-valid-tip {
	margin-top: 0.75rem;
	font-size: 1.2rem !important;
}

/* 警告 */
.wpcf7-response-outputt {
	margin: 1rem 0 0 !important;
	padding: 0 !important;
	border: none !important;
}

/* 完了 */
.wpcf7-response-output {
	margin: 1rem 0 0 !important;
	padding: 0 !important;
	border: none !important;
}

/**************************************************
タブレットの時
**************************************************/

@media only screen and (min-width: 768px) {

	/* 入力欄 */
	main input[type="text"] ,
	main input[type="url"] ,
	main input[type="email"] {
		width: 50%;
	}
	main textarea {
		height: 30rem;
	}

}