.lottery-text {
  width: fit-content;
  margin: 20px auto;
  color: #aa1d1d;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 768px) {
  .lottery-text {
    margin: 10px auto 15px;
    font-size: 1.6rem;
  }
}

.lottery-text::before,
.lottery-text::after {
  content: "";
  width: 2px;
  height: 18px;
  background: #aa1d1d;
  position: absolute;
  top: 4px;
}

.lottery-text::before {
  left: -12px;
  transform: rotate(-45deg) translate(0, 0);
}

.lottery-text::after {
  right: -12px;
  transform: rotate(45deg) translate(0, 0);
}

.lottery-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 16px;
  width: 576px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .lottery-links {
    gap: 6px;
    width: 100%;
  }
  .lottery-links img {
    width: 100%;
  }
}
