.line-up {
  display: block;
  max-width: 1250px;
  overflow-x: auto;

  scrollbar-width: none;
}

.chara-container {
  display: inline-flex;
  align-items: baseline;

  flex-wrap: nowrap;
  justify-self: center;
  margin-bottom: 10px;
}

.chara-container::-webkit-scrollbar {
  display: none;
}

.chara {
  transition: ease 0.75s;
  width: fit-content;
  margin: 0 10px;
  display: block;
}

.chara a h6 {
  margin: auto;
  display: block;
  text-align: center;
  font-size: 1em;
}

.chara a h6:hover {
  transform: scale(1.015);
}

.chara a img {
  transition: ease 0.75s;
  width: 100%;
  margin: 10px auto;
  display: block;
}

.chara a img:hover {
  transform: translateY(-5px);
  transform-origin: bottom;
}