.news-archive {
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .news-archive {
    margin-bottom: 100px;
  }
}
.news-archive__inner {
  width: 90%;
  max-width: 1000px;
  margin-inline: auto;
}
.news-archive__list {
  display: grid;
  grid-template-columns: repeat(2, auto) 1fr;
}
.news-archive__item {
  display: inherit;
  grid-template-columns: subgrid;
  grid-column: span 3;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid #d9d9d9;
}
.news-archive__head {
  display: inherit;
  grid-template-columns: inherit;
  grid-column: span 2;
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .news-archive__head {
    grid-template-columns: auto 1fr;
    grid-column: span 1;
    gap: 15px;
  }
}
.news-archive__link {
  position: relative;
  display: inherit;
  grid-template-columns: inherit;
  grid-column: span 3;
  align-items: center;
  padding-block: 35px;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .news-archive__link {
    grid-template-columns: 1fr;
    padding-block: 20px;
  }
}
.news-archive__link::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  display: inline-block;
  width: 16px;
  height: auto;
  aspect-ratio: 1/1;
  border-right: 1px solid #b3b3b3;
  border-bottom: 1px solid #b3b3b3;
  translate: 0 -50%;
  rotate: -45deg;
  transition: right 0.3s;
}
@media screen and (max-width: 768px) {
  .news-archive__link::after {
    width: 12px;
    right: 20px;
  }
}
.news-archive__link[href$=".pdf"] .self::after {
  content: "";
  background: url(../../images/common/icon_pdf.svg) center/contain, no-repeat;
  width: 16px;
  height: auto;
  aspect-ratio: 16/20;
  display: inline-block;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-left: 5px;
  vertical-align: text-bottom;
}
.news-archive__link:has(.self)::after {
  display: none;
}
@media (hover) {
  .news-archive__link:hover {
    opacity: 0.5;
  }
  .news-archive__link:hover::after {
    right: 25px;
  }
}
.news-archive__date {
  font-size: 1.6rem;
  color: #737373;
}
.news-archive__cat {
  font-size: 1.2rem;
  padding: 0.5rem;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .news-archive__cat {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.news-archive__cat--blue {
  border: 1px solid #23238c;
  color: #23238c;
}
.news-archive__cat--red {
  border: 1px solid #e80037;
  color: #e80037;
}
.news-archive__title {
  line-height: 2;
  font-size: 16px;
  padding-right: 50px;
  line-height: 2.0625;
  letter-spacing: 0.06em;
  margin-block: calc((1em - 1lh) / 2);
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .news-archive__title {
    font-size: 14px;
    margin-top: 0;
  }
}
@media screen and (max-width: 1024px) and (max-width: 768px) {
  .news-archive__title {
    margin-top: 15px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 768px) and (max-width: 600px) {
  .news-archive__title {
    line-height: 1.7;
  }
}
.news-archive__title:is(.self) {
  padding-right: 0;
}
.news-archive__title.self {
  display: inline;
}
.news-archive__title.self::after {
  content: "";
  background: url(../../images/common/icon_link.svg) center/contain, no-repeat;
  width: 16px;
  height: auto;
  aspect-ratio: 14/12;
  display: inline-block;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-left: 5px;
  vertical-align: text-bottom;
}
.news-archive__pagination {
  margin-top: 100px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .news-archive__pagination {
    margin-top: 50px;
  }
}
.news-archive__pagination .page-numbers {
  display: flex;
  gap: 5px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .news-archive__pagination .page-numbers {
    gap: 10px;
  }
}
.news-archive__pagination .page-numbers li {
  width: 30px;
  height: auto;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: none;
  transition: opacity 0.3s;
  font-size: 18px;
  color: #737373;
}
@media screen and (max-width: 768px) {
  .news-archive__pagination .page-numbers li {
    font-size: 16px;
    width: 25px;
  }
}
.news-archive__pagination .page-numbers li:has(.prev, .next) {
  background: none;
}
.news-archive__pagination .page-numbers li:has(span.current) {
  color: var(--c_black);
  font-size: 18px;
  position: relative;
  font-weight: 600;
}
.news-archive__pagination .page-numbers li:has(span.current)::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 6px;
  height: auto;
  aspect-ratio: 1/1;
  background: #b3b3b3;
  bottom: -14px;
  border-radius: 50%;
  translate: 0 50%;
}
@media screen and (max-width: 768px) {
  .news-archive__pagination .page-numbers li:has(span.current) {
    font-size: 14px;
  }
}
.news-archive__pagination .page-numbers li:has(span.dots) {
  background: none;
  color: var(--c_black);
}
.news-archive__pagination .page-numbers li .prev::before,
.news-archive__pagination .page-numbers li .next::before {
  position: absolute;
  content: "";
  border-bottom: 2px solid #b3b3b3;
  border-left: 2px solid #b3b3b3;
  width: 11px;
  height: auto;
  aspect-ratio: 1/1;
  translate: -50% -50%;
  transition: translate 0.3s;
}
.news-archive__pagination .page-numbers li .prev::before {
  rotate: 45deg;
  translate: -48% -50%;
}
.news-archive__pagination .page-numbers li .next::before {
  rotate: 225deg;
  translate: -52% -50%;
}

.news-page {
  padding-block: 120px 150px;
}
@media screen and (max-width: 768px) {
  .news-page {
    padding-block: 60px 80px;
  }
}
.news-page__inner {
  max-width: 1000px;
  margin-inline: auto;
  width: 90%;
}
.news-page__top {
  height: auto !important;
  min-height: auto !important;
}
@media screen and (max-width: 768px) {
  .news-page__top {
    height: auto;
  }
}
.news-page__date {
  font-size: 1.6rem;
  color: #737373;
}
.news-page__cat {
  line-height: 1.8333333333;
  letter-spacing: 0.06em;
  font-size: 1.2rem;
  padding: 5px 10px;
  width: 100%;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
.news-page__cat::before, .news-page__cat::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.news-page__cat::before {
  margin-block-end: calc((1 - 1.8333333333) * 0.5em);
}
.news-page__cat::after {
  margin-block-start: calc((1 - 1.8333333333) * 0.5em);
}
@media screen and (max-width: 1024px) {
  .news-page__cat {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.news-page__cat--blue {
  border: 1px solid #23238c;
  color: #23238c;
}
.news-page__cat--red {
  border: 1px solid #e80037;
  color: #e80037;
}
.news-page__cat--orange {
  border: 1px solid #ff554d;
  color: #ff554d;
}
.news-page__title {
  width: 100%;
  margin-inline: auto;
  max-width: 1000px;
  margin-top: 25px;
  padding-left: 0;
}
@media screen and (max-width: 1024px) and (max-width: 768px) {
  .news-page__title {
    font-size: 2.8rem;
    margin-top: 15px;
  }
}
.news-page__container img {
  margin-bottom: 100px;
  height: unset;
  width: revert !important;
  display: block;
}
@media screen and (max-width: 768px) {
  .news-page__container img {
    margin-bottom: 50px;
  }
}
.news-page__container img:is(.size-medium) {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .news-page__container img:is(.size-medium) {
    margin-bottom: 25px;
  }
}
.news-page__container img:not(:is(.size-medium .size-large .size-thumbnail .size-full)) {
  display: inline-block;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .news-page__container img:not(:is(.size-medium .size-large .size-thumbnail .size-full)) {
    margin-bottom: 25px;
  }
}
.news-page__container img:not(:is(.size-medium .size-large .size-thumbnail .size-full)):nth-of-type(n + 2) {
  margin-left: 20px;
}
.news-page__container iframe {
  width: 100%;
}
.news-page__container p:first-of-type {
  margin-top: 0;
}
.news-page__container p:not(:has(img)) {
  line-height: 2;
  letter-spacing: 0.06em;
  font-size: 1.6rem;
  margin-bottom: 4.5rem;
}
.news-page__container p:not(:has(img))::before, .news-page__container p:not(:has(img))::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.news-page__container p:not(:has(img))::before {
  margin-block-end: calc((1 - 2) * 0.5em);
}
.news-page__container p:not(:has(img))::after {
  margin-block-start: calc((1 - 2) * 0.5em);
}
@media screen and (max-width: 768px) {
  .news-page__container p:not(:has(img)) {
    margin-bottom: 3rem;
  }
}
.news-page__container p:is(.grey) {
  padding: 2.7rem;
  background: #f7f7f5;
  letter-spacing: 0.12em;
  font-size: 2rem;
}
.news-page__container h2 {
  line-height: 1.7931034483;
  letter-spacing: 0.12em;
  font-size: 2.9rem;
  margin-bottom: 5rem;
  margin-top: 10.4rem;
}
.news-page__container h2::before, .news-page__container h2::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.news-page__container h2::before {
  margin-block-end: calc((1 - 1.7931034483) * 0.5em);
}
.news-page__container h2::after {
  margin-block-start: calc((1 - 1.7931034483) * 0.5em);
}
.news-page__container h2:is(.grey) {
  padding: 2.7rem;
  background: #f7f7f5;
  margin-bottom: 3rem;
  margin-top: 5rem;
  line-height: 2.2;
  letter-spacing: 0.12em;
  font-size: 2rem;
}
.news-page__container h2:is(.grey)::before, .news-page__container h2:is(.grey)::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.news-page__container h2:is(.grey)::before {
  margin-block-end: calc((1 - 2.2) * 0.5em);
}
.news-page__container h2:is(.grey)::after {
  margin-block-start: calc((1 - 2.2) * 0.5em);
}
.news-page__container h3 {
  padding: 2.7rem;
  background: #f7f7f5;
  margin-bottom: 3rem;
  margin-top: 5rem;
  line-height: 2.2;
  letter-spacing: 0.12em;
  font-size: 2rem;
}
.news-page__container h3::before, .news-page__container h3::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.news-page__container h3::before {
  margin-block-end: calc((1 - 2.2) * 0.5em);
}
.news-page__container h3::after {
  margin-block-start: calc((1 - 2.2) * 0.5em);
}
@media screen and (max-width: 768px) {
  .news-page__container h3 {
    padding: 2.5rem;
    line-height: 1.8;
  }
}
.news-page__container h4 {
  line-height: 1.5555555556;
  letter-spacing: 0.06em;
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  margin-top: 4rem;
}
.news-page__container h4::before, .news-page__container h4::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.news-page__container h4::before {
  margin-block-end: calc((1 - 1.5555555556) * 0.5em);
}
.news-page__container h4::after {
  margin-block-start: calc((1 - 1.5555555556) * 0.5em);
}
.news-page__container h5 {
  font-size: 1.6rem;
  margin-block: 2rem;
}
.news-page__container h6 {
  font-size: 1.4rem;
  margin-block: 1.5rem;
}
.news-page__container blockquote {
  margin: revert !important;
}
.news-page__container ul,
.news-page__container ol {
  display: flex;
  flex-direction: column;
  margin: initial !important;
  padding: revert !important;
  line-height: 2;
  letter-spacing: 0.06em;
  margin-block: calc((1em - 1lh) / 2);
  font-size: 1.6rem;
  margin-bottom: 3rem !important;
}
.news-page__container ul {
  list-style-type: initial !important;
}
.news-page__container ol {
  list-style-type: decimal !important;
}
.news-page__container a {
  transition: opacity 0.3s;
}
@media (hover) {
  .news-page__container a:hover {
    opacity: 0.5;
  }
}
.news-page__container a[href$=".pdf"]:not(:has(img)) {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0d3da9;
  padding-bottom: 5px;
  border-bottom: 1px solid #0d3da9;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-block: calc((1em - 1lh) / 2);
  font-size: 1.6rem;
}
.news-page__container a[href$=".pdf"]:not(:has(img))::after {
  content: "";
  background: url(../../images/common/icon_pdf.svg) center/contain, no-repeat;
  width: 16px;
  height: auto;
  aspect-ratio: 16/20;
  display: inline-block;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.news-page__container a:not(:has(img)) {
  color: #0d3da9;
  padding-bottom: 5px;
  border-bottom: 1px solid #0d3da9;
}
.news-page__container a:has(img):nth-of-type(n + 2) {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .news-page__container a:has(img):nth-of-type(n + 2) {
    margin-left: 10px;
  }
}
.news-page__container b,
.news-page__container strong {
  color: #000;
  font-weight: 900;
}
.news-page__container table {
  border-collapse: collapse;
  width: 100% !important;
  height: auto !important;
  border: 1px solid #d9d9d9;
}
.news-page__container table:not(:last-child) {
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 768px) {
  .news-page__container table:not(:last-child) {
    margin-bottom: 3rem;
  }
}
.news-page__container th,
.news-page__container td {
  padding: 15px 5px;
  vertical-align: middle;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.06em;
  font-size: 1.6rem;
}
.news-page__container th::before, .news-page__container th::after,
.news-page__container td::before,
.news-page__container td::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.news-page__container th::before,
.news-page__container td::before {
  margin-block-end: calc((1 - 2) * 0.5em);
}
.news-page__container th::after,
.news-page__container td::after {
  margin-block-start: calc((1 - 2) * 0.5em);
}
.news-page__container tr:has(th) {
  background: #737373;
  color: var(--white);
}
.news-page__container tr:not(:first-child) th {
  border-top: 1px solid #d9d9d9;
}
.news-page__container tr:has(> th[colspan]) + tr > th:nth-child(n+1) {
  border-left: 1px solid #d9d9d9;
}
.news-page__container th:nth-child(2) {
  border-left: 1px solid #d9d9d9;
}
.news-page__container td,
.news-page__container th {
  border: none;
  border-left: 1px solid #d9d9d9;
  font-weight: 400;
  word-break: auto-phrase;
}
.news-page__container td:first-child,
.news-page__container th:first-child {
  border-left: none;
}
.news-page__container th:is(.border-top) {
  border-top: 1px solid #d9d9d9;
}
.news-page__container th:is(.border-left) {
  border-left: 1px solid #d9d9d9;
}
.news-page__container tr:first-child td,
.news-page__container tr:first-child th {
  border-top: none;
}
.news-page__container tr:last-child {
  border-bottom: 1px solid #d9d9d9;
}
.news-page__container tr:nth-child(2 of tr:not(:has(th))) {
  background: #ededeb;
}
.news-page__container tbody {
  flex-shrink: 0;
}
.news-page__btn {
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: 1.6rem;
  color: #0d3da9;
  margin-top: 100px;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .news-page__btn {
    margin-top: 50px;
    gap: 20px;
  }
}
@media (hover) {
  .news-page__btn:hover {
    opacity: 0.5;
  }
  .news-page__btn:hover::before {
    translate: -5px 0;
  }
}
.news-page__btn::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: auto;
  aspect-ratio: 8/16;
  background: url(../../images/common/icon_arrow.png) center/contain, no-repeat;
  background-repeat: no-repeat;
  transform: scale(-1, 1);
  transition: translate 0.3s;
}
.news-page__pdf {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .news-page__pdf {
    margin-top: 20px;
  }
}
.news-page__pdf-text {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0d3da9;
  padding-bottom: 5px;
  border-bottom: 1px solid #0d3da9;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-block: calc((1em - 1lh) / 2);
  font-size: 1.6rem;
}
.news-page__pdf-text::after {
  content: "";
  background: url(../../images/common/icon_pdf.svg) center/contain, no-repeat;
  width: 16px;
  height: auto;
  aspect-ratio: 16/20;
  display: inline-block;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
/*# sourceMappingURL=style.css.map */
