.news__items {
  margin-bottom: 40px;
}
.news__item {
  border-bottom: 1px solid #cfd4dc;
}
.news__item-link {
  display: block;
  padding: 32px 0;
  color: #0f2650;
  text-decoration: none;
  line-height: 1.5;
}
@media screen and (max-width: 430px) {
  .news__item-link {
    padding: 24px 0;
  }
}
@media screen and (max-width: 768px) {
  .news__item-link.latest {
    padding-top: 0;
  }
}
.news__item-date {
  font-size: 16px;
  color: #6F7D96;
}
.news__item-name {
  flex: 1;
  word-break: break-all;
}
.news__item:hover {
  cursor: pointer;
}
.news__item:hover .news__item-name {
  text-decoration: underline;
}
.news__article {
  display: flex;
  align-items: center;
  -moz-column-gap: 48px;
       column-gap: 48px;
}
@media screen and (max-width: 560px) {
  .news__article {
    flex-direction: column;
    align-items: baseline;
    row-gap: 16px;
  }
}
.news__detail-title {
  font-size: 34px;
  color: #0f2650;
  line-height: 1.5;
  word-break: break-all;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .news__detail-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 430px) {
  .news__detail-title {
    font-size: 24px;
  }
}
.news__detail-date {
  display: block;
  color: #6F7D96;
  margin-bottom: 16px;
}
.news__detail-text {
  font-size: 16px;
  line-height: 1.8;
  color: #0f2650;
  word-break: break-all;
}
.news__detail-text a {
  color: #0f8fef;
  text-decoration: underline;
}
.news__detail-text a img {
  transform: translateX(3px) translateY(3px);
}
.news__detail-text a:hover {
  opacity: 0.8;
}
.news__detail-text a:hover img {
  opacity: 0.8;
}
.news__detail-text .img_m {
  width: min(100%, 480px);
  margin-top: 16px;
  border: 1px solid #D0DFEE;
}
@media screen and (max-width: 768px) {
  .news__detail-text + table {
    font-size: 15px;
  }
}
.news__detail-text + table caption {
  text-align: left;
  margin-bottom: 8px;
}
@media screen and (max-width: 430px) {
  .news__detail-text + table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
  }
}
.news__detail-text + table th {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  min-width: 160px;
  padding-right: 24px;
  vertical-align: top;
}
.news__detail-text + table a {
  color: #0f8fef;
  text-decoration: underline;
}
.news__detail-text + table a img {
  transform: translateX(3px) translateY(3px);
}
.news__detail-text + table a:hover {
  opacity: 0.8;
}
.news__detail-text + table a:hover img {
  opacity: 0.8;
}
.news__detail-back {
  padding-bottom: 40px;
}
.news__detail-back img {
  margin-right: 8px;
  transform: translateY(2px) rotate(180deg);
}
.news__detail-back a {
  color: #0f2650;
  text-decoration: none;
}
.news__detail-back a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.news__detail-back a:hover img {
  opacity: 0.8;
}

.pagination {
  width: min(100%, 1200px);
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding-bottom: 40px;
}
.pagination__btn {
  font-size: 20px;
  width: 40px;
  height: 40px;
  line-height: 38px;
  border-radius: 4px;
  margin-right: 8px;
  margin-left: 8px;
  color: #0f2650;
}
.pagination__btn:hover {
  border: 1px solid #CFD4DC;
}
.pagination__btn.clicked {
  color: #fff;
  background-color: #0f2650;
  border: none;
}
.pagination__btn.prev-btn, .pagination__btn.next-btn {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: #CFD4DC;
  color: #0f2650;
}
.pagination__btn.prev-btn.disabled:hover, .pagination__btn.next-btn.disabled:hover {
  background-color: #CFD4DC;
  border: none;
}
.pagination__btn.prev-btn:hover {
  background-color: #9FA8B9;
}
.pagination__btn.prev-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  pointer-events: none;
}
.pagination__btn.next-btn:hover {
  background-color: #9FA8B9;
  border: none;
}
.pagination__btn.next-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 47%;
  transform: translate(-50%, -50%) rotate(-135deg);
  width: 8px;
  height: 8px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  pointer-events: none;
}/*# sourceMappingURL=news.css.map */