@media (min-width: 800px) {
/* limit too long posts */
.status__content__text {
    max-height: 12em;
    overflow-y: auto;
}
.status__content__text:hover {
    max-height: unset;
    overflow-y: auto;
}
}
/* カスタム絵文字（横長比率を維持） */
.custom-emoji {
    height: 2.2rem !important;
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    vertical-align: middle !important;
    display: inline-block !important;
}

/* 通常の絵文字（スタンプではなく通常の顔文字や記号など） */
.emojione,
img.emojione,
.status__content img[src*="emoji"],
.reply-indicator__content img[src*="emoji"] {
    height: 2.2rem !important;   /* カスタム絵文字と同じ縦幅に揃えてデカくします */
    width: 2.5rem !important;    /* 通常絵文字は正方形なので横幅も固定 */
    max-width: none !important;
    max-height: none !important;
    vertical-align: middle !important;
    display: inline-block !important;
    margin: 0 2px !important;    /* 隣の文字とくっつきすぎないようにほんの少し隙間を空けます */
}

