.js-scrollhint {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* テーブルが親幅に収まってヒントが出ない問題の対策 */
.js-scrollhint table {
  width: max-content;
  max-width: none;
}
.wp-block-flexible-table-block-table.scroll-hint>table.has-fixed-layout {
    table-layout: auto;
}
.js-scrollhint {
    th,td {
        white-space: nowrap;
    }
}
