.table-wrapper {
    position: relative;
    display: inline-block;
    width: 100%; /* レスポンシブにするなら追加 */
}

.rebnyan-image {
    position: absolute;
    bottom: -10px;   /* テーブルのすぐ下に調整 */
    right: 70px;        /* テーブルの右端に合わせる */
    width: 190px;
    height: auto;
    z-index: 10;
    pointer-events: none;
}

/* モバイル対応（画像サイズ調整など） */
@media screen and (max-width: 768px) {
    .rebnyan-image {
        width: 120px;
        bottom: -8px;
        right: 0;
    }
}
