/* 選択肢 */
.answer_button {
    width: 100%;
    height: 50px;
    display: inline-block;
    text-align: center;
    padding: 10px 8px 8px 8px;
    margin: 5px 0px 5px 0px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px!important;
    text-align: center!important;
}
.off.answer_button {
    background-image: url(/wp-content/themes/appmedia/lib/appli_quiz/img/onitan_off.png), url(/wp-content/themes/appmedia/lib/appli_quiz/img/answer_off.png);
    background-repeat: no-repeat, no-repeat;
    background-position: bottom 2px left 8px, center;
    background-size: contain, 100% 100%;
}
.right.answer_button {
    background-image: url(/wp-content/themes/appmedia/lib/appli_quiz/img/onitan_right.png), url(/wp-content/themes/appmedia/lib/appli_quiz/img/answer_right.png);
    background-repeat: no-repeat, no-repeat;
    background-position: bottom 2px left 8px, center;
    background-size: contain, 100% 100%;
    color: #fff;
    font-weight: bold;
}
.wrong.answer_button {
    background-image: url(/wp-content/themes/appmedia/lib/appli_quiz/img/onitan_wrong.png), url(/wp-content/themes/appmedia/lib/appli_quiz/img/answer_wrong.png);
    background-repeat: no-repeat, no-repeat;
    background-position: bottom 2px left 8px, center;
    background-size: contain, 100% 100%;
    color: #fff;
    font-weight: bold;
}
/* SP表示_ここから */
@media (max-width:414px) {
    .answer_button {
        width: 95%;
        height: 30px;
        display: inline-block;
        text-align: center;
        padding-top: 10px;
        margin: 5px 0px 5px 0px;
        font-weight: normal!important;
    }
    /* .off.answer_button {
        background-size: contain, contain;
    }
    .right.answer_button {
        background-size: contain, contain;
    }
    .wrong.answer_button {
        background-size: contain, contain;
    } */
}
/* SP表示_ここまで */


/* 選択肢(画像) */
.answer_img_button {
    width: 49%;
    height: 138px;
    display: inline-block;
    text-align: center;
    padding: 10px 8px 8px 8px;
    margin: 5px 0px 5px 0px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px!important;
    text-align: center!important;
}
.off.answer_img_button {
    background-image: url(/wp-content/themes/appmedia/lib/appli_quiz/img/onitan_off.png), url(/wp-content/themes/appmedia/lib/appli_quiz/img/answer_img_off.png);
    background-repeat: no-repeat, no-repeat;
    background-position: top 4px left 8px, center;
    background-size: 25% , 100% 100%;
}
.right.answer_img_button {
    background-image: url(/wp-content/themes/appmedia/lib/appli_quiz/img/onitan_right.png), url(/wp-content/themes/appmedia/lib/appli_quiz/img/answer_img_right.png);
    background-repeat: no-repeat, no-repeat;
    background-position: top 4px left 8px, center;
    background-size: 25% , 100% 100%;
}
.wrong.answer_img_button {
    background-image: url(/wp-content/themes/appmedia/lib/appli_quiz/img/onitan_wrong.png), url(/wp-content/themes/appmedia/lib/appli_quiz/img/answer_img_wrong.png);
    background-repeat: no-repeat, no-repeat;
    background-position: top 4px left 8px, center;
    background-size: 25% , 100% 100%;
}
.answer_img {
    width: 120px;
    height: 120px;
}
/* SP表示_ここから */
@media (max-width:414px) {
    .answer_img_button {
        width: 44%;
        height: 84px;
    }
    .answer_img {
        width: 80px;
        height: 80px;
    }
}
/* SP表示_ここまで */


/* 解説 */
.explanation {
    /* border: 1px solid #a9a9a9; */
    border-radius: 6px;
    background-color: #f5f5f5;
    margin-bottom: 15px;
    list-style: none;
    margin-top: 14px;
    padding: 15px;
}
/* 正解の文字 */
.right_message {
    font-size: 22px;
    color: #ff0000;
    font-weight: bold;
}
/* 不正解の文字 */
.wrong_message {
    font-size: 22px;
    color: #0000ff;
    font-weight: bold;
}

/* 結果のスコア */
.total_score {
    border-radius: 6px;
    background-color: #f5f5f5;
    margin-bottom: 15px;
    list-style: none;
    text-align: center;
    padding: 20px;
    font-size: 22px;
    font-weight: bold;
}

/* ボタンまとめ */
#quiz_button_wrapper {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}
/* リセットボタン */
#score_reset_button {
    width: 45%;
    display: inline-block;
    border: 1px solid #ccc;
    border-bottom: 3px solid #bbb;
    background: #fff;
    color: #000;
    padding: 5px;
    border-radius: 6px;
    font-size: 15px;
    margin-top: 10px;
    margin-right: 5px;
}
/* ツイート */
#twitter_button {
    width: 45%;
    display: inline-block;
    border: 1px solid #55acee;
    border-bottom: 3px solid #008FFE;
    background: #55acee;
    color: #fff;
    padding: 5px;
    border-radius: 6px;
    font-size: 15px;
    margin-top: 10px;
    margin-left: 5px;
}
.twitter_message {
    color: #fff;
}
