/* ==========================================================================
   誰でもブログ - Contact Form 7 用の調整スタイル
   CF7 が有効なときだけ読み込まれる（inc/enqueue.php）。
   テーマに同梱はせず、依存もしない。CF7 が無ければこのCSSも読み込まれない。
   ========================================================================== */

.wpcf7 {
	max-width: var(--content-width, 720px);
}

.wpcf7 form .wpcf7-response-output {
	margin: var(--space-3, 24px) 0 0;
	padding: 0.8em 1.1em;
	border-radius: var(--radius-sm, 4px);
	border-width: 1px;
	border-style: solid;
	font-size: 0.9rem;
}

/* 入力欄 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
	width: 100%;
	padding: 0.7em 1em;
	border: 1px solid var(--theme-border, #e5e7eb);
	border-radius: var(--radius-sm, 4px);
	background: #fff;
	font-family: inherit;
	font-size: 1rem;
	line-height: 1.6;
}

.wpcf7 textarea {
	min-height: 160px;
	resize: vertical;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
	outline: 2px solid var(--theme-primary-strong, #2c7ba3);
	outline-offset: 1px;
	border-color: var(--theme-primary-strong, #2c7ba3);
}

/* ラベル・段落間隔 */
.wpcf7 p {
	margin-bottom: var(--space-3, 24px);
}

.wpcf7 label {
	display: block;
	font-weight: 700;
	line-height: 2;
}

/* チェックボックス・ラジオ */
.wpcf7 .wpcf7-checkbox .wpcf7-list-item,
.wpcf7 .wpcf7-radio .wpcf7-list-item,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item {
	display: block;
	margin: 0.3em 0 0 0;
}

.wpcf7 .wpcf7-list-item-label {
	font-weight: 400;
}

.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
	margin-right: 0.4em;
	accent-color: var(--theme-primary-strong, #2c7ba3);
}

/* 送信ボタン */
.wpcf7 .wpcf7-submit {
	display: inline-block;
	padding: 0.8em 2em;
	border: 1px solid var(--theme-primary-strong, #2c7ba3);
	border-radius: var(--radius-sm, 4px);
	background: var(--theme-primary-strong, #2c7ba3);
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.wpcf7 .wpcf7-submit:hover {
	background: var(--theme-primary-dark, #246588);
	border-color: var(--theme-primary-dark, #246588);
}

.wpcf7 .wpcf7-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* バリデーションメッセージ */
.wpcf7 .wpcf7-not-valid-tip {
	margin-top: 0.3em;
	color: #c0392b;
	font-size: 0.85rem;
}

.wpcf7 .wpcf7-not-valid {
	border-color: #c0392b;
}

.wpcf7-spinner {
	margin-left: 0.6em;
}
