input.parsley-error,
select.parsley-error,
textarea.parsley-error {
    border: 1px solid #EF7F6B !important;
    background-color: rgba(239, 127, 107, 0.20) !important;
}

.parsley-errors-list-container:empty {
    display: none;
}

.parsley-errors-list-container .parsley-errors-list.filled:first-child ~ .parsley-errors-list.filled {
    display: none;
}

.parsley-errors-list {
    list-style-type: none;
    transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;

    word-wrap: break-word;
    display: flex;
    padding: 0;
    margin-left: 0px;
    margin-bottom: 0px;

    color: #EF7F6B;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.parsley-errors-list li {
    display: flex;
    align-items: center;
}

.parsley-errors-list:not(.filled) {
    display: none;
}

.error-group .filled ~ .filled {
    display: none;
}

.error-group .filled .parsley-server-side-error ~ .parsley-server-side-error {
    display: none !important;
}