/* お問い合わせページ（contact.html）専用のスタイル。
   ヘッダー・「戻る」ボタン・入力欄はcreate_spot.css等と同じ実装をそのまま複製している
   （タブバーに属さないサブ画面共通の構成。各画面が独立したCSSファイルを持つ既存方針を踏襲）。
   送信完了バナーは投稿完了ページの成功バッジと同じ意匠（削除リンクのような警告色にはしない）。 */

:root {
	--ink: #2F5233;
	--ink-soft: #6D8670;
	--bg: #F6F3E8;
	--bg-soft: #FDFEFD;
	--line: #DEE3DE;
	--accent: #8FBFA0;
	--badge-bg: #E6EAE7;
}

body {
	font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
	background: var(--bg);
	color: var(--ink);
	margin: 0;
	padding: 20px;
}
.container { max-width: 560px; margin: 0 auto; }

/* --- ヘッダー --- */
.header-area {
	background: var(--bg-soft);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	margin-left: -20px;
	margin-right: -20px;
	margin-bottom: 18px;
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 14px 18px;
	max-width: 560px;
	margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand .club-mark { width: 60px; height: auto; flex: none; }
.brand .title-block h1 { font-size: 16px; font-weight: 700; margin: 0; line-height: 1.3; color: var(--ink); }
.brand .title-block .en { font-size: 8.5px; letter-spacing: 0.1em; color: var(--ink-soft); margin: 2px 0 0; font-weight: 700; }

.btn-back {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	background: var(--badge-bg);
	color: var(--ink);
	border: none;
	font-size: 12.5px;
	font-weight: 700;
	padding: 8px 14px;
	border-radius: 999px;
	white-space: nowrap;
	cursor: pointer;
	font-family: inherit;
}
.btn-back svg { width: 13px; height: 13px; flex: none; }
.btn-back:hover { background: var(--accent); color: var(--bg-soft); }

/* --- 送信完了バナー --- */
.sent-banner {
	display: flex; align-items: center; gap: 10px;
	background: var(--badge-bg); border-radius: 14px; padding: 14px 16px; margin-bottom: 16px;
	font-size: 13px; color: var(--ink); font-weight: 700; line-height: 1.6;
}
.sent-banner .check {
	width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: var(--bg-soft);
	display: flex; align-items: center; justify-content: center; flex: none;
}
.sent-banner .check svg { width: 15px; height: 15px; }

/* --- 本文・フォーム --- */
.about-article { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; }
.about-article > p { font-size: 13px; color: var(--ink); line-height: 1.85; margin: 0 0 16px; }

.contact-form-group { margin-bottom: 18px; }
.contact-form-group label { display: block; font-size: 12.5px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.contact-form-group textarea, .contact-form-group input[type="email"] {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 10px;
	padding: 10px 12px;
	font-size: 13.5px;
	font-family: inherit;
	color: var(--ink);
	background: var(--bg-soft);
	box-sizing: border-box;
}
.contact-form-group textarea { height: 140px; resize: vertical; }
.contact-form-group input:focus, .contact-form-group textarea:focus {
	outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(143,191,160,0.25);
}
.contact-email-hint { font-size: 11px; color: var(--ink-soft); margin: 6px 0 0; line-height: 1.5; }
.char-count { font-size: 10.5px; color: var(--ink-soft); margin: 4px 0 0; text-align: right; }

.btn-submit {
	display: block; width: 100%;
	background: var(--ink); color: var(--bg-soft); border: none;
	padding: 14px; border-radius: 999px; font-size: 14px; font-weight: 700; cursor: pointer;
}
.btn-submit:hover { opacity: 0.88; }

@media (max-width: 600px) {
	body { padding: 12px; }
	.brand .club-mark { width: 48px; }
	.brand .title-block h1 { font-size: 14px; }
	.header-area { margin-bottom: 14px; margin-left: -12px; margin-right: -12px; }
	.about-article { padding: 16px; }
}
