/* Fine Brochure フロントエンドスタイル */

.fine-brochure-form-wrap {
	width: 100%;
	margin: 2em auto;
	box-sizing: border-box;
}

@media (max-width: 600px) {
	.fine-brochure-form-wrap {
		max-width: 100% !important;
	}
}

.fine-brochure-form {
	padding: 0;
}

/* フィールド共通 */
.fine-brochure-field {
	margin-bottom: 20px;
}

.fine-brochure-field label {
	display: block;
	margin-bottom: .5rem;
	font-weight: 600;
	font-size: .875rem;
}

.fine-brochure-field--wants_info {
    margin-bottom: 5px;
}

/* テキスト・メール入力 */
.fine-brochure-input {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #c3c4c7;
	border-radius: 4px;
	font-size: 1rem;
	line-height: 1.5;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	-webkit-appearance: none;
	appearance: none;
}

.fine-brochure-input:focus {
	outline: none;
	border-color: #2271b1;
	box-shadow: 0 0 0 2px rgba( 34, 113, 177, 0.2 );
}

.fine-brochure-input.is-error {
	border-color: #d63638;
	box-shadow: 0 0 0 2px rgba( 214, 54, 56, 0.15 );
}

/* 必須マーク */
.fine-brochure-required {
	color: #d63638;
	margin-left: 4px;
}

/* チェックボックス */
.fine-brochure-checkbox-label {
	display: flex;
	align-items: center;
	gap: 1rem;
	cursor: pointer;
	font-size: .875rem;
	line-height: 1.5;
	font-weight: normal !important;
}

.fine-brochure-checkbox {
	width: 18px;
	height: 18px;
	min-width: 18px;
	margin-right: 2px;
	cursor: pointer;
	accent-color: #2271b1;
}

/* フィールドエラー */
.fine-brochure-field-error {
	margin-top: .875rem;
	font-size: .875rem;
	color: #d63638;
	min-height: 0;
}

/* 送信エリア */
.fine-brochure-submit-wrap {
	margin-top: 24px;
	text-align: center;
}

/* 送信ボタン */
.fine-brochure-submit {
	display: inline-block;
	padding: 12px 32px;
	background: #2271b1;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.1s ease;
	-webkit-appearance: none;
	appearance: none;
}

.fine-brochure-submit:hover {
	background: #135e96;
}

.fine-brochure-submit:active {
	transform: scale( 0.98 );
}

.fine-brochure-submit:disabled {
	background: #a7aaad;
	cursor: not-allowed;
	transform: none;
}

/* メッセージエリア */
.fine-brochure-messages {
	padding: 0;
	margin-bottom: 0;
}

.fine-brochure-messages:not(:empty) {
	padding: 12px 16px;
	margin-bottom: 20px;
	border-radius: 4px;
	font-size: .875rem;
	line-height: 1.6;
}

.fine-brochure-messages.is-success {
	background: #edfaef;
	border: 1px solid #1e8234;
	color: #1e4620;
}

.fine-brochure-messages.is-error {
	background: #fde8e8;
	border: 1px solid #d63638;
	color: #8a1f1f;
}

/* 送信完了エリア */
.fine-brochure-success-area {
	text-align: center;
	padding: 32px 0;
}

.fine-brochure-success-icon {
	font-size: 48px;
	margin-bottom: 16px;
}

.fine-brochure-download-btn {
	display: inline-block;
	margin-top: 16px;
	padding: 12px 28px;
	background: #1e8234;
	color: #fff;
	border-radius: 4px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: background 0.15s ease;
}

.fine-brochure-download-btn:hover {
	background: #155724;
	color: #fff;
}

/* エラー表示（ショートコード不正時など） */
.fine-brochure-error {
	color: #d63638;
	font-size: 14px;
}

/* オプトアウトページ */
.fine-brochure-optout-result h2 {
	margin-bottom: 12px;
}
