@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
.news__list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 4rem;
}
.news__list .news__item {
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .news__list .news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news__list .news__item .item-date {
  display: block;
  min-width: 13rem;
}
.news__list .news__item .item-ttl {
  display: block;
}
.news__list .news__item .item-ttl a {
  color: #333;
}
.news__list .news__item .item-ttl a:hover {
  color: #3455FC;
  text-decoration: underline;
}

.pagenation__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagenation__item a {
  display: block;
  padding: 0 1rem;
  color: #333;
  position: relative;
}
.pagenation__item a:hover {
  color: #3455FC;
}
.pagenation .current a {
  background-color: #F1F1F1;
  pointer-events: none;
}

.goindex {
  text-align: center;
  margin-top: 4rem;
}
.goindex a {
  display: inline-block;
  line-height: 1;
  position: relative;
  padding-right: 3rem;
  color: #333;
}
.goindex a::before, .goindex a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  border-bottom: 1px solid #666;
}
.goindex a::before {
  width: 1.6rem;
  height: 0;
  -webkit-transform: translateY(0.2rem);
          transform: translateY(0.2rem);
}
.goindex a::after {
  width: 0.8rem;
  height: 0;
  -webkit-transform: rotate(45deg) translateY(-0.1rem);
          transform: rotate(45deg) translateY(-0.1rem);
}
.goindex a:hover {
  color: #3455FC;
}
.goindex a:hover::before, .goindex a:hover::after {
  border-bottom-color: #3455FC;
}

.news__title {
  font-size: 2.7rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.news__date {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 4rem;
}