/*
 Theme Name: Hello Elementor Child
 Theme URI: https://elementor.com/
 Description: Hello Elementor Child Theme
 Author: Custom
 Template: hello-elementor
 Version: 1.0.0
 Text Domain: hello-elementor-child
*/

/* WPForms 送信ボタンのセンタリング */
div.wpforms-container .wpforms-form .wpforms-submit-container {
    text-align: center !important;
}

/* WPForms 送信ボタンの背景を黒にする */
div.wpforms-container .wpforms-form button[type=submit].wpforms-submit,
div.wpforms-container .wpforms-form input[type=submit].wpforms-submit {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
    border-style: solid !important;
    border-width: 1px !important;
    padding: 10px 24px !important;
    font-size: 16px !important;
    transition: background-color 0.3s ease, border-color 0.3s ease !important;
}

/* WPForms 送信ボタン ホバー時のスタイル */
div.wpforms-container .wpforms-form button[type=submit].wpforms-submit:hover,
div.wpforms-container .wpforms-form input[type=submit].wpforms-submit:hover {
    background-color: #333333 !important;
    border-color: #333333 !important;
    color: #ffffff !important;
}

