/*---------------------------------
お問い合わせページ
---------------------------------*/

/* ==============================
   セクション
   ============================== */

.section_content--contact {
    padding-bottom: 5px;
}

/* ==============================
   注意文
   ============================== */

.contact_notice {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact_notice__link {
    color: var(--accent-color);
    text-decoration: underline;
}

/* ==============================
   フォーム
   ============================== */

.contact_form__fields {
    margin-bottom: 40px;
}

.contact_form__group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #D2D2D2;
}

.contact_form__group:not(:last-child) {
    margin-bottom: 50px;
}

/* --- ラベル --- */

.contact_form__label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: bold;
    color: var(--text-color);
}

/* --- 必須バッジ --- */

.contact_form__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    background: #CE000E;
    border-radius: 2px;
    padding: 6px 8px;
    white-space: nowrap;
}

/* --- 入力フィールド共通 --- */

.contact_form__input,
.contact_form__textarea {
    width: 100%;
    font-size: 16px;
    color: var(--text-color);
    background: #D2D2D2;
    border-radius: 2px;
    border: none;
    padding: 11px 15px;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    transition: background 0.2s ease;
}

.contact_form__input:focus,
.contact_form__textarea:focus {
    background: #ddd;
}

.contact_form__input::placeholder,
.contact_form__textarea::placeholder {
    color: #fff;
}

/* --- テキストエリア --- */

.contact_form__textarea {
    min-height: 240px;
    resize: vertical;
}

/* --- プライバシー同意 --- */

.contact_form__privacy {
    margin-bottom: 40px;
}

.contact_form__checkbox-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    color: var(--text-color);
    cursor: pointer;
}

.contact_form__checkbox {
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
}

.contact_form__checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
}

.contact_form__privacy-link {
    color: var(--accent-color);
    text-decoration: underline;
}

/* --- 送信ボタン --- */

.contact_form__submit {
    text-align: center;
}

.ui_cp-btn {
    font-size: 16px;
}

.privacy_agree--note {
    text-align: center;
    margin-top: 10px;
}

/* ==============================
   PC
   ============================== */

@media (min-width: 768px) {

    /* --- セクション --- */

    .section_content--contact {
        padding: 0 20px 5px;
    }

    .section_content--contact .content_box {
        max-width: 786px;
        margin: 0 auto;
    }

}