.typing-ime {
    white-space: normal !important;
}

.ime-text {
    display: inline !important;
    color: #fff !important;
}

.ime-buffer {
    border-bottom: 2px dashed #fff !important;
    color: #fff !important;
}

/* 変換時のフラッシュエフェクト */
.ime-flash {
    animation: flash 0.3s ease-out;
}

/* カーソル（キャレット） */
.ime-cursor {
    display: inline-block;
    width: 2px;
    height: 1em !important;
    /* ← 修正 */
    background-color: #fff !important;
    vertical-align: baseline !important;
    /* ← 修正 */
    margin-left: 1px;
    animation: blink 1s step-end infinite;
}

@keyframes flash {
    0% {
        background-color: rgba(0, 255, 204, 0.5);
    }

    100% {
        background-color: transparent;
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}