.news-content {
  display: block;
  width: 75%;
  margin: 0 auto;
}
.news-content__title p {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  font-weight: 700;
}
.news-content__title p::before {
  content: "";
  display: block;
  width: 500px;
  height: 2px;
  background: #dedede;
  position: relative;
  top: 27px;
  right: 518px;
}
.news-content__title p::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #79ac78;
  position: relative;
  top: -19px;
  right: 18px;
  animation: slideBar 2s infinite;
}
@keyframes slideBar {
  0% {
    transform: translateX(-500px);
  }
  100% {
    transform: translateX(-24px);
  }
}
.news-content__title__ja {
  color: #2f2626;
  font-size: 30px;
  width: 90%;
  margin: 0 auto;
}

.pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 60px 0 40px;
  padding: 0;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #2f2626;
  background: #ffffff;
  border: 2px solid #DEDEDE;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}
.page-numbers:hover {
  background: #f8f8f8;
  border-color: #79ac78;
  color: #79ac78;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(121, 172, 120, 0.15);
}
.page-numbers.current {
  background: #79ac78;
  border-color: #79ac78;
  color: #ffffff;
  font-weight: 700;
  cursor: default;
}
.page-numbers.current:hover {
  background: #79ac78;
  border-color: #79ac78;
  color: #ffffff;
  transform: none;
  box-shadow: none;
}
.page-numbers.prev, .page-numbers.next {
  min-width: 44px;
  padding: 0 12px;
  font-size: 18px;
  background: #79ac78;
  border-color: #79ac78;
  color: #ffffff;
}
.page-numbers.prev:hover, .page-numbers.next:hover {
  background: #6a9a69;
  border-color: #6a9a69;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(121, 172, 120, 0.3);
}
.page-numbers.prev:active, .page-numbers.next:active {
  transform: translateY(0);
}
.page-numbers.dots {
  background: transparent;
  border: none;
  color: #ACACAC;
  cursor: default;
  min-width: auto;
  padding: 0 8px;
}
.page-numbers.dots:hover {
  background: transparent;
  border: none;
  color: #ACACAC;
  transform: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .news-content {
    display: block;
    width: 75%;
    margin: 0 auto;
  }
  .news-content__title p {
    display: block;
    width: 80vw;
    margin: 0;
    font-weight: 700;
  }
  .news-content__title p::before {
    content: "";
    display: block;
    width: 500px;
    height: 2px;
    background: #dedede;
    position: relative;
    top: 27px;
    right: 518px;
  }
  .news-content__title p::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: #79ac78;
    position: relative;
    top: -19px;
    right: 18px;
    animation: slideBar 2s infinite;
  }
  @keyframes slideBar {
    0% {
      transform: translateX(-500px);
    }
    100% {
      transform: translateX(-24px);
    }
  }
  .news-content__title__ja {
    color: #2f2626;
    font-size: 30px;
    width: 70%;
    margin: 0 auto;
  }
  .pagenation {
    gap: 6px;
    margin: 40px 0 30px;
  }
  .page-numbers {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }
  .page-numbers.prev, .page-numbers.next {
    min-width: 40px;
    padding: 0 10px;
    font-size: 16px;
  }
  .page-numbers.dots {
    padding: 0 6px;
  }
}/*# sourceMappingURL=news.css.map */