@charset "utf-8";

.table-scroll {
  position: relative;
  overflow-x: auto;
}

@media screen and (max-width: 767px) {
  .table-scroll::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: url(/common/images/scroll.svg) no-repeat;
    background-size: 100% 100%;
    transform: translate(-50%, 0);
    transition: all .3s ease-in-out;
  }
  .table-scroll.scroll::after {
    opacity: 0;
  }
}
