/* ============================================================
   VTuber申請ページ専用スタイル（manual.cssの上に読み込む）
   ============================================================ */

/* 体験パネルが無いページなので、本文の右余白は不要 */
@media (min-width: 761px) {
  .vtuber-page .hero,
  .vtuber-page main {
    padding-right: 24px;
  }
  .vtuber-page main { max-width: 760px; }
}

/* ---- 結果バナー ---- */
.banner {
  max-width: 760px;
  margin: 0 auto 24px;
  padding: 16px 22px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.8;
}
.banner-ok {
  background: #f0faf3;
  border: 2px solid #2fa44f;
  color: #1d7a37;
}
.banner-ng {
  background: #fdf3f3;
  border: 2px solid #d63638;
  color: #b32d2e;
}

/* ---- 英語話者向けの一言 ---- */
.en-note {
  font-size: 13px;
  color: var(--ink-soft);
  background: var(--code-bg);
  border-radius: 10px;
  padding: 10px 14px;
}

/* ---- 申請フォーム ---- */
.apply-form label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 22px;
}
.apply-form .required {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: 2px;
}
.apply-form input[type='text'],
.apply-form input[type='email'],
.apply-form input[type='url'],
.apply-form textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-top: 8px;
  padding: 14px 16px;
  font-size: 16px; /* iPhoneの自動ズーム防止のため16px以上 */
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.apply-form input:focus,
.apply-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(224, 36, 94, 0.12);
}
.apply-form textarea { min-height: 140px; resize: vertical; }
.apply-form .form-note {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin: -14px 0 22px;
}

/* ハニーポット（botだけが見る欄）：視覚的に完全に隠す */
.apply-form .hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.apply-form .agree-row {
  font-weight: 400;
  font-size: 14px;
}
.apply-form .agree-row input {
  accent-color: var(--accent);
  margin-right: 6px;
  transform: scale(1.2);
}

.apply-form .submit-row {
  text-align: center;
  margin: 28px 0 0;
}
.apply-form .btn-primary {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  padding: 16px 44px;
}
