/* リスト資産化AI 登録フォーム 基本スタイル */
.lsa-form-wrap {
	max-width: 480px;
	margin: 24px auto;
	font-family: inherit;
}
.lsa-form {
	background: #fff;
	border: 1px solid #e3e5e8;
	border-radius: 10px;
	padding: 24px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
}
.lsa-form .lsa-field {
	margin: 0 0 16px;
}
.lsa-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 14px;
}
.lsa-form .lsa-consent label,
.lsa-form .lsa-choice {
	font-weight: 400;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.lsa-form input[type="text"],
.lsa-form input[type="email"],
.lsa-form input[type="tel"],
.lsa-form select,
.lsa-form textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 11px 12px;
	border: 1px solid #c8ccd1;
	border-radius: 6px;
	font-size: 16px;
}
.lsa-form .lsa-required {
	color: #d63638;
	margin-left: 2px;
}
.lsa-form .lsa-submit button {
	width: 100%;
	padding: 13px 16px;
	background: #2271b1;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
}
.lsa-form .lsa-submit button:hover {
	background: #135e96;
}
.lsa-form-notice {
	padding: 12px 14px;
	border-radius: 6px;
	margin-bottom: 16px;
	font-size: 14px;
}
.lsa-form-notice.lsa-success {
	background: #edfaef;
	border: 1px solid #b7e4c0;
	color: #14642a;
}
.lsa-form-notice.lsa-error {
	background: #fcf0f1;
	border: 1px solid #f0c4c6;
	color: #8a1f24;
}
.lsa-form-error {
	padding: 10px;
	background: #fff8e5;
	border: 1px solid #f0d98a;
	color: #7a5b00;
	border-radius: 6px;
}
.lsa-count {
	font-weight: 700;
}
