.tx_anime {
    font-style: normal;
    opacity: 0;
    transition-property: opacity;
    transition-duration: .001s;
    transition-delay: 0s;
}

.show .tx_anime {
    opacity: 1;
    transition-property: opacity;
    transition-duration: .001s;
    transition-delay: 0s;
}

.chat_area {
    padding-bottom: 2rem;
    padding-top: 1rem;
    font-size: 15px;
    width: 90%;
    margin: 0 auto;
}

.chat_wrap {
    width: 520px;
    margin: 0 auto;
    background: #92baf9;
    border-radius: 10px;
    padding: 1em;
}

.q_area {
    margin-bottom: 2em;
}

.ques {
    display: flex;
    margin-bottom: 1em;
}

.ques .face {
    width: 80px;
    height: 80px;
    border-radius: 80px;
    overflow: hidden;
    background-color: #fff;
    background-image: url(../img/face_2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 83px;
    margin-right: .7em;
}

.ques .mess {
    max-width: calc(100% - 90px);
}

.ques .q_name {
    font-size: 14px;
    color: #fff;
    margin-bottom: .3em;
    text-align: left;
}

.ques .q_mess {
    color: #000;
    border-radius: 15px;
    padding: .7em;
    line-height: 1.4;
    background: #fff;
    text-align: left;
}

.ans_area {
    margin-bottom: 2em;
}

.sel_ans {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: .5em 1em;
    background: #fff;
    border-radius: 10px;
}

.sel_ans a {
    width: 50%;
    padding: .5em;
}

.sel_ans a span {
    display: block;
    text-align: center;
    background: #66f749;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    padding: 1em;
    border-radius: 15px;
    line-height: 1.3;
}

.ans {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.ans .ans_kidoku {
    font-size: 14px;
    color: #fff;
    margin-right: .7em;
}

.ans .a_mess {
    color: #000;
    border-radius: 10px;
    padding: .7em;
    line-height: 1.4;
    background: #66f749;
}

.ans_btn {
    padding: 0em;
}

.ans_btn a {
    display: block;
}

.q_area,
.ans_area,
.ans_btn {
    overflow: hidden;
    opacity: 0;
    max-height: 0;
    margin: 0;
}

.ans {
    pointer-events: none;
    height: 0;
    opacity: 0;
    transition: opacity .05s linear;
}

.sel_ans.hide {
    display: none;
}

.q_area.show,
.ans_area.show,
.ans_btn.show {
    opacity: 1;
    max-height: unset;
    margin-top: 20px;
}

.ans_btn.show {
    padding: 2em;
}

.ans.show {
    pointer-events: all;
    height: auto;
    opacity: 1;
    transition: opacity .05s linear;
}


.Form-c{
    background: #fff;
    border-radius: 10px;
    width: 90%;
    margin: 0 auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.Form-Item-c{
    margin: 1rem 0;
    margin-bottom: 2rem;
}

.Form-Item-Label-c{
    font-size: 1.1rem;
    text-align: left;
    margin-left: 1rem;
    margin-bottom: 0.5rem;
}

.Form-Item-Input-c{
    width:90%;
    border-radius: 15px;
    height: 2.8rem;
}

.Form-Btn-c{
    width: 80%;
    padding: 1rem;
    font-weight: bold;
    font-size: 1.2rem;
    color: #FFF;
    margin:1rem;
    border: 1px solid #1b7e40;
    border-radius: 2rem;
    background: #1b7e40;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #1b7e40), to(#20b958));
    background: -webkit-linear-gradient(bottom, #1b7e40 50%, #20b958 100%);
    background: linear-gradient(0deg, #1b7e40 50%, #20b958 100%);
    -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
}

.Form-Item-Label-Required-c{
    border-radius: 1.5rem;
    margin-left: 0.5rem;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    width: 4rem;
    display: inline-block;
    text-align: center;
    background: #F9782D;
    color: #fff;
    font-size: 1rem;
}

.line-btn{
    width: 80%;
    border-radius: 55px;
    box-shadow: 0 5px 0 #0c9d0b;
}

@media(max-width:540px) {
    .chat_wrap {
        width: 100%;
    }
    .sel_ans a {
        width: 100%;
    }
    .ans_btn.show {
        padding: 0;
    }
}