/* 問診の「前回の回答」 */

/* 「前回」ボタン */
.ShowHistoryButton.Displayed {
    color: rgb(223, 145, 0);
}

/* 「前回の回答」を入れる箱 */
.CounselingHistoryArea {
    display: none;
}

/* テキストボックス */
div.CounselingHistory {
    border: 1px solid #ccc;
    border-radius: 5px;
    color: rgb(223, 145, 0);
    font-size: 0.9em;
    padding: 10px;
}
.SetHistoryMode div.CounselingHistory {
    display: block;
}

/* 選択ボタン */
label.CounselingHistory {
    transition: all 0.5s;
}
.SetHistoryMode label.CounselingHistory {
    border-radius: 5px;
    background-color: rgb(255, 197, 88);
}