.allnewswrap {
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .allnewswrap {
    padding-bottom: 80px;
  }
}
/* --- サイドバー カテゴリ選択 --- */
.news-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .news-category-list {
    display: flex;
    justify-content: space-between;
    padding-right: 11px;
  }
}
.news-category-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 0;
  cursor: pointer;
  transition: all 0.8s ease;
}
@media screen and (max-width: 768px) {
  .news-category-item {
    padding: 0;
  }
}
.news-category-item a span {
  color: #333;
  font-weight: bold;
}
.category-circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #ccc;
  position: relative;
}
/* 選択中のスタイル */
.news-category-item.is-active {
  color: #003894;
  font-weight: bold;
  transition: all 0.8s ease;
}
.news-category-item:hover {
  color: #003894;
  font-weight: bold;
  transition: all 0.8s ease;
}
.news-category-item.is-active .category-circle {
  border-color: #bebebe;
  transition: all 0.8s ease;
}
.news-category-item.is-active .category-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  aspect-ratio: 1 / 1;
  background-color: #003894;
  border-radius: 50%;
  transition: all 0.8s ease;
}
.news-category-item:hover .category-circle {
  border-color: #bebebe;
  transition: all 0.8s ease;
}
.news-category-item:hover .category-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: #003894;
  border-radius: 50%;
}
/* --- お知らせメインエリア --- */
.news-main {
  flex-grow: 1;
  width: 818px;
}
@media screen and (max-width: 768px) {
  .news-main {
    width: clamp(331px, 88.26vw, 1160px);
    margin: 0 auto;
  }
}
.news-list {
  border-top: 1px solid #ccc;
}
.news-item {
  display: flex;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #ccc;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s ease;
  flex-wrap: wrap;
  /* gap: 7px;*/
}
@media screen and (max-width: 768px) {
  .news-item {
    padding: 28px 0 25px;
  }
}
.news-item__meta {
  width: 200px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.news-date {
  color: #191E2E;
  font-feature-settings: 'palt'on;
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 30px */
  letter-spacing: 0.45px;
}
@media screen and (max-width: 768px) {
  .news-date {
    font-feature-settings: 'palt'on;
    font-size: 14px;
    letter-spacing: 0.42px;
  }
}
/* タグの共通スタイル */
.news-tag {
  /* padding: 4px 12px;*/
  border: 1px solid #003894;
  color: #003894;
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 20.8px */
  letter-spacing: 0.39px;
}
.news-title {
  flex-grow: 1;
  margin: 0;
  width: 100%;
  color: #191E2E;
  font-feature-settings: 'palt'on;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 500;
  line-height: 200%; /* 36px */
  letter-spacing: 0.54px;
}

.news-item:hover .news-title{
	color: #003894;
}




@media screen and (max-width: 768px) {
  .news-title {
    font-feature-settings: 'palt'on;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
    letter-spacing: 0.48px;
    padding-right: 0;
  }
}
/* 矢印アイコン */
.news-arrow {
  position: absolute;
/*  right: 0;*/
  width: 21px;
  height: 18px;
  background-image: url(../image/common/newsarrowsvg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: 15px;
  transition: all 0.8s ease;
}
.news-item:hover .news-arrow {
  transform: translateX(15px);
  transition: all 0.8s ease;
}
@media screen and (max-width: 768px) {
  .allnewswrap .news-arrow {
    display: none;
  }
}
/* --- ページネーション --- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .pagination {
    width: clamp(331px, 88.26vw, 1160px);
    margin: 50px auto 0;
  }
  .p-blog__pager {
    width: 100%;
  }
}
.pagination-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.pagination-list li {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.pagination-list li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
.pagination-list li.is-active {
  background-color: #003894;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.pagination-list li.is-active a {
  color: #fff;
}
.pagination-arrow {
  width: 40px;
  height: 40px;
  background-color: #ccc;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.pagination-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.pagination-arrow.prev::after {
  transform: translate(-30%, -50%) rotate(-135deg);
}
.pagination-arrow.next::after {
  transform: translate(-70%, -50%) rotate(45deg);
}
.p-blog__pager ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.p-blog__pager ul li {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.p-blog__pager ul li a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #222;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 190%; /* 24.7px */
}
.p-blog__pager ul li:hover a {
  background-color: #003894;
  color: #fff;
  border-radius: 100vh;
}
.page-numbers.current {
  background-color: #003894;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 190%; /* 24.7px */
}
.p-blog__pager ul li:first-child {
  margin-right: 15px;
}
.p-blog__pager ul li:last-child {
  margin-left: 15px;
}
.page-numbers.next, .prev.page-numbers {
  width: 40px;
  height: 40px;
  background-color: #ccc;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.page-numbers.next::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 14px;
  background-image: url("../image/news/nextarrow.svg");
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.page-numbers.prev::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 14px;
  background-image: url("../image/news/prevarrow.svg");
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.page-numbers.next:hover, .prev.page-numbers:hover {
  background-color: #003894;
}
/* ---シングルページ --- */
.single-wrap {
  width: 100%;
  padding-bottom: 150px;
}
.single-container {
  width: clamp(331px, 88.26vw, 1060px);
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .single-container {
    padding: 0;
  }
}
.single-header {
  color: var(--color-black);
  font-feature-settings: "palt"on;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 200%; /* 30px */
  letter-spacing: 0.45px;
}
.single-date {
  gap: 36px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #191E2E;
  font-feature-settings: 'palt'on;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 200%; /* 30px */
  letter-spacing: 0.45px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .single-date {
    font-feature-settings: 'palt'on;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 200%; /* 28px */
    letter-spacing: 0.42px;
  }
}
.single-date span {
  color: #003894;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 24px */
  letter-spacing: 0.45px;
  padding: 0 24px;
  border: 1px solid #003894;
}
@media screen and (max-width: 768px) {
  .single-date span {
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 22.4px */
    letter-spacing: 0.42px;
    padding: 0 20px;
  }
}
.single-title {
  color: #191E2E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 51.2px */
  letter-spacing: 0.96px;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .single-title {
    color: #191E2E;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 28.8px */
    letter-spacing: 0.54px;
    margin-bottom: 20px;
  }
}
.single-contents {
  color: #191E2E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.48px;
  margin-bottom: 48px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .single-contents {
    margin-bottom: 24px;
    padding-bottom: 40px;
  }
}
.single-contents p {
  color: #191E2E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 32px */
  letter-spacing: 0.48px;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .single-contents p {
    margin-bottom: 40px;
  }
}
.single-contents h2 {
  color: #191E2E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-style: normal;
  line-height: 160%;
  letter-spacing: 0.96px;
  margin-bottom: 32px;
  font-weight: 700;
}
.single-contents h3 {
  color: #191E2E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 21px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.96px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .single-contents h2 {
    margin-bottom: 16px;
  }
  .single-contents h3 {
    margin-bottom: 16px;
  }
}
.single-contents img {
  max-width: 100%;
  height: auto;
  margin-bottom: 48px;
}
.single-contents a {
  color: var(--color-blue);
  text-decoration: underline;
}