.newsList01 li {
  border-bottom: 1px dashed #a38f8f;
}
.newsList01 li a {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  line-height: 1.5;
  padding: 2rem 0;
}
.newsList01 li a .date {
  width: 10rem;
  background-color: #E83820;
  text-align: center;
  padding: 0.25rem 0;
  color: #fff;
  font-family: "Questrial", sans-serif;
  border-radius: 0.5rem;
  flex-shrink: 0;
}
.newsList01 li a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 1280px) {
  .newsList01 li a .date {
    width: 6.5rem;
  }
}
@media screen and (max-width: 768px) {
  .newsList01 li a {
    padding: 1.5rem 0;
  }
}

.linkBlock01 a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #E83820;
  color: #fff;
  width: 360px;
  margin: auto;
  padding: 1rem 2rem;
  border-radius: 10rem;
  gap: 1rem;
  text-decoration: none;
}
.linkBlock01 a:hover {
  opacity: 0.5;
}
.linkBlock01 a .icon {
  display: block;
  width: 1rem;
  height: 1rem;
  background-image: url("../images/icon_arrow01.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.linkBlock01 a[target=_blank] .icon {
  background-image: url("../images/icon_new-window01.svg");
}
.linkBlock01 a.reverse {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.linkBlock01 a.reverse .icon {
  transform: rotate(-180deg);
}
.linkBlock01 a.disable {
  pointer-events: none;
  background-color: #ccc;
  color: #fff;
}
.linkBlock01 a.disable .icon {
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .linkBlock01 a {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #lineupTable01 {
    overflow-x: scroll;
  }
  #lineupTable01 table {
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
  }
}

.js-slick-zoomUp {
  animation: zoomUp 10s linear 0s normal both;
}