/* CTAセクションを単色背景に変更 */
@media screen and (min-width: 768px) and (max-width: 1260px) {
	.cta {
		/* 写真を非表示にして単色背景に */
		background: linear-gradient(135deg, #1d3557 0%, #2e5984 100%) !important;
		padding: 60px 30px !important;
		min-height: auto !important;
	}
	
	/* 背景画像を非表示 */
	.cta__img {
		display: none !important;
	}
	
	/* テキストを通常配置に */
	.cta__txt {
		position: relative !important;
		left: auto !important;
		top: auto !important;
		transform: none !important;
		width: 100% !important;
		max-width: 800px !important;
		margin: 0 auto !important;
		padding: 0 !important;
	}
	
	/* イラスト画像の調整 */
	.cta__txt .illust {
		position: static !important;
		transform: none !important;
		margin-bottom: 20px !important;
	}
	
	.cta__txt .illust img {
		max-width: 250px !important;
	}
}

/* より狭いサイズ用 */
@media screen and (min-width: 768px) and (max-width: 900px) {
	.cta {
		padding: 40px 20px !important;
	}
	
	.cta__txt {
		max-width: 600px !important;
	}
}

/* 追加の調整が必要な場合はここに書く */