.p-news__section-title {
  padding: 0.5rem 1rem;
  background-color: var(--color_red01);
  color: var(--color_mono02);
  font-size: var(--f24);
}
.p-news__posts {
  margin-bottom: 4rem;
  order: 1;
}
.p-news__posts__lists {
  margin-bottom: clamp(1.5rem, 2.34375vw, 2.8125rem);
}
.p-news__posts__list {
  border-bottom: 1px solid var(--color_mono03);
}
.p-news__posts__list:nth-of-type(1) {
  border-top: 1px solid var(--color_mono03);
}
.p-news__posts__list__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: clamp(1rem, 1.5625vw, 1.875rem);
  padding-bottom: clamp(1rem, 1.71875vw, 2.0625rem);
  padding-left: clamp(1rem, 1.0416666667vw, 1.25rem);
  padding-right: calc(clamp(1rem, 0.5208333333vw, 0.625rem) + clamp(1rem, 1.7708333333vw, 2.125rem));
  position: relative;
}
.p-news__posts__list__item:before {
  content: "";
  width: 0.5rem;
  aspect-ratio: 1/1;
  clip-path: polygon(9px 50%, 0% 0%, 0% 9px);
  position: absolute;
  top: 45.5%;
  right: 1.4rem;
  background-color: var(--color_mono02);
  z-index: 2;
  transition: 0.1s;
}
.p-news__posts__list__item:after {
  content: "";
  width: 1.5rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  background-color: var(--color_red01);
  border-radius: 50%;
  transition: 0.1s;
}
.p-news__posts__list__item:hover {
  background-color: var(--color_bg01);
}
.p-news__posts__list__item:hover .p-news__list__title {
  color: var(--color_red01);
}
.p-news__posts__list__item:hover:before {
  right: 1.2rem;
}
.p-news__posts__list__item:hover:after {
  right: 0.8rem;
}
.p-news__posts__list__data {
  color: var(--color_mono03);
}
.p-news__posts__list__category {
  display: block;
  margin-left: 0.5rem;
  padding: 0 0.25rem;
  background-color: var(--color_red01);
  color: var(--color_mono02);
  font-size: 0.7rem;
}
.p-news__posts__list__title {
  width: 100%;
  font-weight: 700;
}
.p-news__posts__pagenation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 1rem;
  position: relative;
  background-color: var(--color_bg01);
}
.p-news__posts__pagenation .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(1.5rem, 1.5625vw, 1.875rem);
  aspect-ratio: 1/1;
  margin: 0 0.5rem;
  border-radius: 50%;
  line-height: clamp(1.5rem, 1.5625vw, 1.875rem);
}
.p-news__posts__pagenation a.page-numbers {
  background-color: var(--color_red01);
  color: var(--color_mono02);
}
.p-news__posts__pagenation a.prev,
.p-news__posts__pagenation a.next {
  width: 4rem;
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: auto;
  color: var(--color_mono01);
  background-color: transparent;
}
.p-news__posts__pagenation a.prev {
  left: 1rem;
}
.p-news__posts__pagenation a.next {
  right: 1rem;
}
.p-news__posts__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.p-news__posts__header .p-news__section-title {
  width: 100%;
  margin-bottom: 1rem;
}
.p-news__posts__content {
  padding: clamp(2rem, 2.1875vw, 2.625rem) 0;
}
.p-news__posts__content strong{
  font-weight: bold;
}
.p-news__posts__back {
  display: block;
  width: 100%;
  background-color: var(--color_bg02);
}
.p-news__posts__back__item {
  display: block;
  padding: clamp(1rem, 1.0416666667vw, 1.25rem) 0;
  text-align: center;
}
.p-news__sidebar {
  order: 0;
}
.p-news__sidebar__lists {
  background-color: var(--color_bg02);
}
.p-news__sidebar__list:not(:last-of-type) {
  border-bottom: 1px solid var(--color_mono04);
}
.p-news__sidebar__list__item {
  display: block;
  padding-top: clamp(1rem, 1.0416666667vw, 1.25rem);
  padding-bottom: clamp(1rem, 1.0416666667vw, 1.25rem);
  padding-left: clamp(1rem, 0.5208333333vw, 0.625rem);
  padding-right: clamp(1rem, 0.5208333333vw, 0.625rem);
}

@media screen and (min-width: 768px) {
  .p-news__wrapper {
    display: grid;
    justify-content: space-between;
    grid-template-columns: 287px 1fr;
    gap: clamp(1rem, 2.9166666667vw, 3.5rem);
  }
  .p-news__posts__list__category {
    font-size: 0.9rem;
  }
}/*# sourceMappingURL=news.css.map */