@charset "UTF-8";
/* フォームエラーメッセージ関連 */

div.balloon {
    position: relative !important;
    width:100%;
    z-index:1005;
}

input.error, select.error, textarea.error {
    color: #000;
    background-color: #fcc;
    /* line-height: 1.5; */
}

div.balloon label.error {
    position: absolute;
    display: inline-block;
    padding:8px;
    background-color: #ff7e28;
    /*border-radius: 0.5em;*/
    color: white;
    opacity: 0.85;
    top: 0;
    width: auto;
    height: auto;
    line-height: 150%;
    font-size: 14px;
}

div.balloon label.error.all {
    position: static;
    display: block;
    width: 260px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
}

div.fixed_balloon {
    position: fixed !important;
    display: inline-block;
    margin: 0 auto;
    z-index:1015;
    top: 3em;
    background-color: #000;
    color: #fff;
    padding: 3px 10px;
    border-radius: 0.5em;
    font-size: 12px;
    text-align: center;
}

.fixed_balloon span {
    color: #faa;
}