@charset "UTF-8";
/* contact.css */


/* ===== form ===== */
:focus {
	outline: none !important;
}
input::placeholder,
textarea::placeholder {
	color: #bbbbbb !important;
}

/* wrap flex */
.elementor-form-fields-wrapper {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
}
/* basic */
form {
	max-width: 1000px;
	margin-left:  auto;
	margin-right: auto;
}
form input,
form textarea {
	width: 100%;
	margin-top: .5em;
	margin-bottom: .25em;
	padding: .75em;
	border: 1px solid #69727d;
	border-radius: 3px;
	background-color: #fff;
}
form textarea {
	height: 150px;
	min-height: 150px;
	resize: vertical;
}


form dl {
	width: 100%;
	margin-bottom: 30px;
}
form .form_flex {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: flex-start;
}
form dl.form_halfwidth {
	width: 49%;
	display: inline-block;
}
form .form_flex > dl:first-of-type {
	margin-right: 2%;
}
/* 必須アイコン */
.required dt:after {
	content: "*";
	font-size: 1em;
	color: red;
	display: inline-block;
	margin-left: .5em;
}
/* エラーメッセージ */
.custom-error,
.wpcf7-not-valid-tip {
	font-size: 14px !important;
	font-size: clamp(12px,1.4vw,14px);
	line-height: 1.5;
	margin-top:    .75em;
	margin-bottom: 0;
	color: #dc3232 !important;
}
.wpcf7 form .wpcf7-response-output {
	width: fit-content;
	font-size: 14px !important;
	line-height: 1.5 !important;
	margin: 1.5em auto 0 !important;
	padding: 0 !important;
	border: none !important;
	color: #dc3232
}
.wpcf7 form.sent .wpcf7-response-output {
	color: #000;
}
.wpcf7-spinner {
	display: none !important;
}


/* 送信ボタン */
.btn_send input {
	text-align: center;
	color: #fff;
	border: none;
	background-color: #070a4a;
	margin-bottom: 0 !important;
}


/* ===== elementor使用時のみ動作 ===== */
/* input head */
.elementor-field-label {
	font-weight: 500;
	color: #070a4a;
}
/* input half-size */
.elementor-column.elementor-col-50,
.elementor-column[data-col="50"] {
	width: 49%;
}
/* input mail */
.elementor-field-type-email {
	width: 100%;
}
/* テキストエリア */
.elementor-field-type-textarea {
	width: 100%;
}
/* 送信するボタン */
.elementor-field-type-submit {
	width: 100%;
	text-align: center;
	display: block;
	margin-top: 2em;
	padding: .75em;
	color: #fff;
	background-color: #070a4a;
}
/* テキスト */
.elementor-field-type-html {
	font-size: 14px;
	text-align: justify;
	line-height: 1.7;
}








@media screen and (max-width:850px) {
	/* ===== form ===== */
	form .form_flex {
		display: inline;
	}
	form dl {
		margin-bottom: 20px;
	}
	form dl.form_halfwidth {
		width: 100%;
		margin-right: 0 !important;
	}
	/* エラー */
	.custom-error,
	.wpcf7-not-valid-tip {
		font-size: 12px !important;
		margin-top: .5em;
	}
	.wpcf7 form .wpcf7-response-output {
		font-size: 13px !important;
	}




	/* ===== elementor使用時のみ動作 ===== */
	.elementor-column.elementor-col-50,
	.elementor-column[data-col="50"]    {
		width: 100%;
	}
	/* テキスト */
	.elementor-field-type-html {
		font-size: 12px;
	}
}