.customCaption {
	position: absolute;
	top: 48%; /* 中央より少し上に */
	left: 0; /* x軸を左端に */
	transform: translateY(-5%); /* y軸について中心を基点に戻す */
	width: auto; /* 幅を自動調整に設定 */
	color: #ffffff; /* 文字色を白に設定 */
	text-align: left; /* テキストを左に揃える */
}

.customCaptionInner {
	display: block;
	padding: 10px 20px; /* パディングを調整 */
	background: none; /* 背景を透明に設定 */
}

.customCaption h1 {
	font-size: 45px;
	color: #ffffff; /* 文字色を白に設定 */
	text-transform: uppercase; /* 文字を大文字に */
	line-height: 1.4; /* 行間を1.4に設定 */
}



.introTextLeft {
	text-align: left; /* テキストを左に揃える */
}


.introTextLeft br {
	display: block;
	content: "";
	padding: 7px 0;
}


/* メールフィールドとセレクトボックスにテキストフィールドと同じスタイルを適用 */
.contactForm input[type="email"],
.contactForm select,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-select {
	background: #ffffff;
	border: 1px solid #efefef;
	color: #666666;
	font-family: inherit;
	font-size: 13px;
	margin: 0 0 14px;
	outline: 0 none;
	padding: 12px 10px;
	width: 95%;
}
@media (max-width: 768px) {
	.contactForm input[type="email"],
	.contactForm select,
	.wpcf7-form-control.wpcf7-email,
	.wpcf7-form-control.wpcf7-select {
		background: #ffffff !important;
		border: 1px solid #efefef !important;
		color: #666666 !important;
		font-family: inherit !important;
		font-size: 13px !important;
		margin: 0 0 14px !important;
		outline: 0 none !important;
		padding: 12px 10px !important;
		width: 95% !important;
	}
}