/* -------------------------------------------
   BALLERS ブランドデザイン フォームCSS
------------------------------------------- */

/* 全体背景：黒ベース × 広めの余白 */
body {
    font-family: "Helvetica", "Arial", sans-serif;
    background: #0d0d0d;
    padding: 40px 20px;
    margin: 0;
    color: #fff;
}

/* タイトル */
.form-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: bold;
    color: #ff6b00;
    letter-spacing: 1px;
}

/* フォームカード */
.contact-form {
    max-width: 520px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.25);
    border: 1px solid #333;
}

/* ラベル部分 */
.contact-form label {
    display: block;
    margin-top: 18px;
    font-size: 15px;
    font-weight: bold;
    color: #f2f2f2;
}

/* 必須（赤） */
.required {
    color: #ff2e2e;
    font-weight: bold;
}

/* 入力欄 */
.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #262626;
    color: #fff;
    padding: 14px;
    border: 1px solid #444;
    border-radius: 8px;
    margin-top: 6px;
    font-size: 16px;
    transition: all .2s ease;
}

/* フォーカス時の光る演出 */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff6b00;
    box-shadow: 0 0 8px rgba(255, 107, 0, 0.4);
    outline: none;
}

/* 送信ボタン */
.form-button {
    width: 100%;
    margin-top: 28px;
    padding: 14px 0;
    background: linear-gradient(90deg, #ff6b00, #ff8c1a);
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: .2s;
    letter-spacing: 1px;
}

.form-button:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

/* 完了ページ（thanks.html） */
.thanks-box {
    max-width: 450px;
    margin: 120px auto;
    background: #1a1a1a;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    border: 1px solid #333;
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.25);
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: #ff6b00;
    font-weight: bold;
    text-decoration: none;
}

/* ---------------------------
   スマホ レスポンシブ対応
--------------------------- */
@media screen and (max-width: 600px) {
    body {
        padding: 25px 15px;
    }
    .contact-form {
        padding: 22px;
    }
    .form-title {
        font-size: 24px;
    }
    .form-button {
        font-size: 16px;
    }
}
