@charset "UTF-8";

.contact-form-page {
    margin: 0;
    background: #f4f7fb;
}

.contact-form-main {
    padding: 32px 16px;
}

#besports-form * {
    box-sizing: border-box;
}

#besports-form {
    max-width: 640px;
    margin: 0 auto;
    color: #1f2a3c;
    font-family:
        -apple-system,
        "Hiragino Kaku Gothic ProN",
        "Noto Sans JP",
        sans-serif;
}

#besports-form .bs-field {
    margin-bottom: 18px;
}

#besports-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.95rem;
    font-weight: 700;
}

#besports-form .bs-req {
    margin-left: 6px;
    color: #c0392b;
    font-size: 0.8rem;
}

#besports-form input,
#besports-form select,
#besports-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cfd6df;
    border-radius: 6px;
    color: #1f2a3c;
    background: #fbfdff;
    font: inherit;
}

#besports-form textarea {
    min-height: 130px;
    resize: vertical;
}

#besports-form [hidden] {
    display: none !important;
}

#besports-form select:disabled {
    color: #6b7280;
    background: #eef0f2;
    cursor: not-allowed;
    -webkit-text-fill-color: #6b7280;
}

#besports-form .bs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

#besports-form .bs-visit-panel {
    margin: 4px 0 22px;
    padding: 20px;
    border: 1px solid #cfe3ff;
    border-radius: 10px;
    background: #f2f8ff;
}

#besports-form .bs-visit-title {
    margin: 0 0 18px;
    color: #174f9f;
    font-size: 1.05rem;
}

#besports-form .bs-choice-field {
    min-width: 0;
    margin: 0 0 18px;
    padding: 0;
    border: 0;
}

#besports-form .bs-choice-field:last-child {
    margin-bottom: 0;
}

#besports-form .bs-choice-field legend {
    width: 100%;
    margin-bottom: 8px;
    padding: 0;
    font-size: 0.95rem;
    font-weight: 700;
}

#besports-form .bs-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}

#besports-form .bs-option {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
}

#besports-form .bs-option input[type="radio"],
#besports-form .bs-option input[type="checkbox"] {
    flex: none;
    width: auto;
    margin: 0;
}

#besports-form button {
    width: 100%;
    padding: 16px;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    background: #1f66d8;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

#besports-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#besports-form .bs-note {
    color: #5b6675;
    font-size: 0.85rem;
    line-height: 1.7;
}

#besports-form .bs-note a {
    color: #1f66d8;
}

#besports-form .bs-msg {
    margin-top: 14px;
    text-align: center;
    font-weight: 700;
}

#besports-form #besports-msg {
    display: none;
}

#besports-form .bs-msg.err {
    color: #c0392b;
}

#besports-form .bs-done {
    padding: 32px 20px;
    border: 1px solid #cfe3ff;
    border-radius: 10px;
    background: #f2f8ff;
    text-align: center;
    line-height: 1.9;
}

#besports-form .bs-privacy-title {
    margin: 0 0 8px;
    font-size: 0.95rem;
    font-weight: 700;
}

#besports-form .bs-privacy-box {
    max-height: 220px;
    padding: 14px;
    overflow: auto;
    border: 1px solid #cfd6df;
    border-radius: 6px;
    color: #3a4655;
    background: #ffffff;
    font-size: 0.82rem;
    line-height: 1.75;
}

#besports-form .bs-privacy-box p {
    margin: 0 0 12px;
}

#besports-form .bs-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 14px 0 4px;
    font-size: 0.9rem;
    font-weight: 400;
}

#besports-form .bs-check input[type="checkbox"] {
    flex: none;
    width: auto;
    margin-top: 3px;
}

#besports-form .bs-honeypot {
    position: absolute;
    top: -9999px;
    left: -9999px;
    width: 0;
    height: 0;
    overflow: hidden;
}