/*
 * 安全版IME修正CSS - 入力欄のみに適用
 * Chrome IME変換候補が見えない問題を解決
 * サイト全体には影響しません
 */

/* 入力欄とテキストエリアのIME変換候補色設定 */
input[type="text"]::selection,
input[type="email"]::selection,
input[type="search"]::selection,
input[type="url"]::selection,
input[type="tel"]::selection,
input[type="password"]::selection,
textarea::selection {
    background: #4A9EFF !important;
    color: #000000 !important;
    text-shadow: none !important;
}

input[type="text"]::-moz-selection,
input[type="email"]::-moz-selection,
input[type="search"]::-moz-selection,
input[type="url"]::-moz-selection,
input[type="tel"]::-moz-selection,
input[type="password"]::-moz-selection,
textarea::-moz-selection {
    background: #4A9EFF !important;
    color: #000000 !important;
    text-shadow: none !important;
}

/* フォーカス時の入力欄設定 */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus {
    background-color: #ffffff !important;
    color: #333333 !important;
}

/* Forminator専用設定 */
.forminator-input::selection,
.forminator-textarea::selection {
    background: #4A9EFF !important;
    color: #000000 !important;
    text-shadow: none !important;
}

.forminator-input::-moz-selection,
.forminator-textarea::-moz-selection {
    background: #4A9EFF !important;
    color: #000000 !important;
    text-shadow: none !important;
}