/* WPForms 全体のスタイル調整 */
.wpforms-container {
    margin-bottom: 24px !important;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* ラベル（項目名）の装飾 */
.wpforms-field-label {
    font-weight: bold !important;
    font-size: 16px !important;
    margin-bottom: 8px !important;
    display: block;
}

/* 必須マークの色 */
.wpforms-required-label {
    color: #e74c3c !important;
    margin-left: 4px;
}

/* 入力フィールド（テキスト・メール・企業名など） */
.wpforms-field input[type="text"],
.wpforms-field input[type="email"],
.wpforms-field textarea {
    background-color: #f9f9f9 !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important; /* 角を少し丸く */
    padding: 12px !important;
    font-size: 16px !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* 入力中の色（フォーカス時） */
.wpforms-field input:focus,
.wpforms-field textarea:focus {
    border-color: #3498db !important; /* フォーカス時に青く */
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.2) !important;
    background-color: #fff !important;
    outline: none;
}

/* チェックボックス・ラジオボタンの項目間隔 */
.wpforms-field-checkbox ul,
.wpforms-field-radio ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 5px 0 15px 0 !important;
}

.wpforms-field-checkbox li,
.wpforms-field-radio li {
    margin-bottom: 10px !important;
}

/* 送信ボタンのカスタマイズ */
.wpforms-submit-container {
    text-align: center; /* 中央寄せ */
}

.wpforms-submit {
    background-color: #2c3e50 !important; /* 濃いめの落ち着いた紺色 */
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: bold !important;
    padding: 15px 60px !important;
    border: none !important;
    border-radius: 50px !important; /* 丸いボタン */
    cursor: pointer;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* 送信ボタンのホバー（マウスを乗せた時） */
.wpforms-submit:hover {
    background-color: #34495e !important;
    transform: translateY(-2px); /* 少し浮き上がる */
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
