@charset "UTF-8";

/* ----------------------------------------------------------------

	-- poll_jba-front

---------------------------------------------------------------- */


/* フロント */

.poll_jba_front {
    position: relative;
    overflow: hidden;
}

.poll_jba_front h4 {
    margin-bottom: 20px;
    line-height: 20px;
}

.poll_jba_front ul {
    margin-bottom: 20px;
}

.poll_jba_front ul li {
    display: block;
    position: relative;
    margin: 10px 0;
    padding: 0 10px;
}

.poll_jba_front ul li .bar {
    background: #e2e2e2;
    width: 0%;
    height: 20px;
    position: absolute;
    left: 0;
    z-index: 0;
    opacity: 0.2;
    border-radius: 20px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.poll_jba_front li.input_text:before {
    content: "";
    width: 5px;
    height: 5px;
    display: inline-block;
    background-color: #ccc;
    border-radius: 106%;
    margin-right: 5px;
}

.poll_jba_front .answer {
    width: 80%;
    padding: 5px;
    float: right;
    border: 1px #e2e2e2 solid;
    border-radius: 20px;
    margin: 0 auto;
    float: left;
    cursor: pointer;
}

.poll_jba_front .answer:hover {
    opacity: 0.8;
    /* animation: fadeOut 1.5s ease 0.1s 1 normal; */
}

.poll_jba_front textarea {
    width: 100%;
    background: #e2e2e2;
    border: none;
    padding: 15px;
}


/*
@keyframes fadeOut {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0.7
    }
    100% {
        opacity: 1
    }
   
} */

.poll_jba_front .show {
    width: 40%;
    margin-left: 10px;
    float: right;
    color: #666;
    border: 1px #e2e2e2 solid;
    border-radius: 20px;
}

.poll_jba_front .loader,
.poll_jba_front .loader:after {
    border-radius: 50%;
    width: 10em;
    height: 10em;
}

.poll_jba_front .loader {
    margin: -30px auto;
    font-size: 10px;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(255, 255, 255, 0.2);
    border-right: 1.1em solid rgba(255, 255, 255, 0.2);
    border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
    border-left: 1.1em solid #aeaeae;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: poll_load 1.1s infinite linear;
    animation: poll_load 1.1s infinite linear;
    position: absolute;
    left: 30%;
    top: 30%;
}

@-webkit-keyframes poll_load {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes poll_load {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}