/* Contact Form 7 — マイレージテクノ カスタムスタイル */

/* ── フォーム全体 ── */
.wpcf7 {
	width: 100%;
}

/* ── ラベル ── */
.wpcf7 label {
	display: block;
	font-weight: 600;
	font-size: 0.875rem;
	color: #1a2a3a;
	margin-bottom: 0.375rem;
	cursor: default;
}

/* 必須マーク */
.wpcf7 label .required-mark,
.wpcf7 abbr[title] {
	color: #f97316;
	font-style: normal;
	margin-left: 0.2rem;
}

/* ── 入力フィールド共通 ── */
.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 textarea,
.wpcf7 select {
	display: block;
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1.5px solid #bae6fd;
	border-radius: 8px;
	font-size: 1rem;
	font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
	color: #1a2a3a;
	background: #ffffff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	outline: none;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
	line-height: 1.5;
}

/* フォーカス */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 input[type="date"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
	border-color: #0ea5e9;
	box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

/* プレースホルダー */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
	color: #94a3b8;
	font-size: 0.9rem;
}

/* テキストエリア */
.wpcf7 textarea {
	resize: vertical;
	min-height: 160px;
}

/* セレクト */
.wpcf7 select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
}

/* ── コントロールラップ ── */
.wpcf7-form-control-wrap {
	display: block;
}

/* ── 段落（フィールドのグループ） ── */
.wpcf7 p,
.wpcf7 .wpcf7-form-row {
	margin-top: 0;
	margin-bottom: 1.25rem;
}

.wpcf7 p:last-of-type {
	margin-bottom: 0;
}

/* ── 送信ボタン ── */
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
	display: block;
	width: 100%;
	padding: 0.9rem 2rem;
	background: #f97316;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	font-family: "Noto Sans JP", system-ui, sans-serif;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
	letter-spacing: 0.03em;
	margin-top: 0.5rem;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover {
	background: #ea580c;
	box-shadow: 0 4px 16px rgba(249, 115, 22, 0.35);
}

.wpcf7 input[type="submit"]:active,
.wpcf7 .wpcf7-submit:active {
	transform: scale(0.98);
}

/* 送信中（disabled） */
.wpcf7 input[type="submit"]:disabled,
.wpcf7 .wpcf7-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* スピナー */
.wpcf7-spinner {
	display: inline-block;
	margin-left: 0.5rem;
	vertical-align: middle;
}

/* ── バリデーションエラー ── */
.wpcf7-not-valid,
.wpcf7 input.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid,
.wpcf7 select.wpcf7-not-valid {
	border-color: #ef4444 !important;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.wpcf7-not-valid-tip {
	display: block;
	margin-top: 0.3rem;
	font-size: 0.8rem;
	color: #ef4444;
	font-weight: 500;
}

/* ── レスポンスメッセージ ── */
.wpcf7-response-output {
	padding: 1rem 1.25rem;
	border-radius: 8px;
	font-size: 0.9rem;
	margin-top: 1.25rem;
	border: none !important;
	font-weight: 500;
}

/* 送信成功 */
.wpcf7-form.sent .wpcf7-response-output {
	background: #dcfce7;
	color: #14532d;
	border-left: 4px solid #22c55e !important;
}

/* エラー・不正・スパム */
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.spam .wpcf7-response-output,
.wpcf7-form.aborted .wpcf7-response-output {
	background: #fef2f2;
	color: #991b1b;
	border-left: 4px solid #ef4444 !important;
}

/* ── チェックボックス・ラジオ ── */
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
	width: auto;
	accent-color: #0ea5e9;
	margin-right: 0.4rem;
	vertical-align: middle;
	cursor: pointer;
}

.wpcf7 .wpcf7-list-item {
	display: inline-flex;
	align-items: center;
	margin-right: 1rem;
	margin-bottom: 0.4rem;
}

.wpcf7 .wpcf7-list-item label {
	font-weight: 400;
	cursor: pointer;
	margin-bottom: 0;
}

/* ── 同意チェックボックス ── */
.wpcf7-acceptance .wpcf7-list-item {
	margin-bottom: 0;
}

/* ── レスポンシブ ── */
@media (max-width: 640px) {
	.wpcf7 input[type="text"],
	.wpcf7 input[type="email"],
	.wpcf7 input[type="tel"],
	.wpcf7 textarea {
		font-size: 16px; /* iOS ズーム防止 */
	}
}
