/* ============================================================
   ホンネ調査 - 静的ページ用CSS
   ============================================================ */

/* ── 静的ヘッダー ── */
.static-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.static-header-inner {
  width: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.static-header .logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.static-header .logo span { color: var(--accent); }

.static-dark-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--sub);
  cursor: pointer;
  font-family: inherit;
  transition: color 0.15s, border-color 0.15s;
}
.static-dark-toggle:hover { color: var(--text); border-color: var(--text); }

/* ── ページ本体 ── */
.static-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.static-page-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.static-page-header h1 {
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
}
.static-page-header .updated {
  font-size: 13px;
  color: var(--sub);
}

/* ── コンテンツ ── */
.static-content section {
  margin-bottom: 40px;
}
.static-content h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 3px solid var(--accent);
}
.static-content p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 10px;
}
.static-content ul {
  padding-left: 1.4em;
  margin-bottom: 10px;
}
.static-content ul li {
  font-size: 15px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 4px;
}
.static-content a {
  color: var(--accent);
  text-decoration: none;
}
.static-content a:hover { text-decoration: underline; }

/* ── モバイル ── */
@media (max-width: 600px) {
  .static-page { padding: 32px 16px 60px; }
  .static-page-header h1 { font-size: 22px; }
}

/* ── お問い合わせ・性別変更申請フォーム ── */
.contact-error {
  background: rgba(232,54,74,0.08);
  border: 1px solid rgba(232,54,74,0.25);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 20px;
}

.contact-field { margin-bottom: 20px; }

.contact-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-required {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(232,54,74,0.08);
  padding: 1px 6px;
  border-radius: 6px;
  margin-left: 6px;
}
.contact-hint {
  font-size: 13px;
  color: var(--sub);
  margin-bottom: 8px;
}
.contact-textarea {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  resize: vertical;
  min-height: 120px;
  outline: none;
  transition: border-color 0.18s;
}
.contact-textarea:focus { border-color: var(--accent); }

.contact-check {
  margin-bottom: 24px;
}
.contact-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.6;
}
.contact-check-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
}

.contact-submit {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: opacity 0.2s;
}
.contact-submit:hover { opacity: 0.85; }

/* 送信完了 */
.contact-done {
  text-align: center;
  padding: 40px 20px;
}
.contact-done-icon {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 12px;
}
.contact-done-title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 12px;
}
