@charset "UTF-8";
:root {
  --noto-sans: "Noto Sans JP", "Helvetica Neue", "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, sans-serif;
  --poppins: "poppins", sans-serif;
  --blue: #0047ba;
  --red: #ff2d4b;
  --white: #ffffff;
  --black: #000000;
}

section.news {
  max-width: 1100px;
  margin: 0 auto;
  width: 90%;
}
section.news ul.news-list li {
  border-bottom: 1px solid #e4edfa;
}
section.news ul.news-list li:first-child {
  border-top: 1px solid #e4edfa;
}
section.news ul.news-list li a {
  display: block;
  padding: 25px 0;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  section.news ul.news-list li a:hover {
    opacity: 0.6;
  }
}
section.news ul.news-list li a dl dt {
  color: #8da1d7;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}
section.news ul.news-list li a dl dt .category-tag {
  font-weight: normal;
  font-size: 13px;
  color: #ffffff;
  border-radius: 10px;
  width: fit-content;
  padding: 3px 10px;
  line-height: 1;
  text-align: center;
}
section.news ul.news-list li a dl dt .category-tag.news {
  background: #0047ba;
}
section.news ul.news-list li a dl dt .category-tag.award {
  background: #c29200;
}
section.news ul.news-list li a dl dt .category-tag.event {
  background: #ff799f;
}
section.news ul.news-list li a dl dd {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  section.news ul.news-list li a dl dd {
    font-size: 16px;
  }
}
section.news article.news-article {
  max-width: 900px;
  margin: 0 auto;
}
section.news article.news-article:nth-of-type(3) {
  margin-top: 0;
}
section.news article.news-article a {
  color: #1558d6;
  text-decoration: underline;
}
@media (any-hover: hover) {
  section.news article.news-article a:hover {
    text-decoration: none;
  }
}
section.news article.news-article .date {
  color: #8da1d7;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}
section.news article.news-article .date .category-tag {
  font-weight: normal;
  font-size: 13px;
  color: #ffffff;
  border-radius: 10px;
  width: fit-content;
  padding: 3px 10px;
  line-height: 1;
  text-align: center;
}
section.news article.news-article .date .category-tag.news {
  background: #0047ba;
}
section.news article.news-article .date .category-tag.award {
  background: #c29200;
}
section.news article.news-article .date .category-tag.event {
  background: #ff799f;
}
section.news article.news-article h1.article-ttl {
  font-size: 32px;
  font-weight: bold;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 15px;
  line-height: 1.5;
  margin: 10px 0 60px;
}
@media screen and (max-width: 767px) {
  section.news article.news-article h1.article-ttl {
    font-size: 26px;
    margin-bottom: 40px;
  }
}
section.news article.news-article p {
  margin-top: 40px;
}
section.news article.news-article img {
  margin: 40px 0 0;
  display: block;
  height: auto;
}
section.news article.news-article h2 + *,
section.news article.news-article h3 + *,
section.news article.news-article h4 + * {
  margin-top: 0 !important;
}
section.news article.news-article h2 {
  margin: 60px 0 30px;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  padding-left: 20px;
  border-left: 4px solid var(--blue);
}
@media screen and (max-width: 767px) {
  section.news article.news-article h2 {
    margin-top: 40px;
    font-size: 20px;
  }
}
section.news article.news-article h2:after {
  content: "";
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
}
section.news article.news-article h3 {
  margin: 50px 0 15px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  section.news article.news-article h3 {
    margin-top: 40px;
    font-size: 18px;
  }
}
section.news article.news-article h3:after {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #0047ba;
}
section.news article.news-article h4 {
  margin: 40px 0 15px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  section.news article.news-article h4 {
    margin-top: 30px;
    font-size: 18px;
  }
}
section.news article.news-article ul {
  margin-top: 40px;
}
section.news article.news-article ul li {
  padding-left: 0.5em;
  text-indent: -0.5em;
}
section.news article.news-article ul li:before {
  content: "・";
}
section.news article.news-article ol {
  margin-top: 40px;
}
section.news article.news-article ol li {
  counter-increment: item;
  position: relative;
  padding-left: 1.5em;
}
section.news article.news-article ol li:before {
  content: counter(item) ". ";
  position: absolute;
  left: 0;
  width: 1em;
  text-align: right;
}
section.news .link-back {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  section.news .link-back {
    margin-top: 40px;
  }
}
section.news .link-back a {
  color: var(--red);
  font-size: 18px;
  font-weight: 700;
  transition: opacity 0.3s;
  position: relative;
  line-height: 1.5 !important;
  padding-left: 55px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  section.news .link-back a {
    font-size: 16px;
  }
}
@media (any-hover: hover) {
  section.news .link-back a:hover {
    opacity: 0.6;
  }
  section.news .link-back a:hover:before {
    left: -5px;
  }
  section.news .link-back a:hover:after {
    left: -5px;
    transform: rotate(-30deg);
    width: 13px;
  }
}
section.news .link-back a:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 45px;
  height: 1px;
  background-color: var(--red);
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  section.news .link-back a:before {
    top: 15px;
  }
}
section.news .link-back a:after {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 10px;
  height: 1px;
  transform: rotate(-40deg);
  background-color: var(--red);
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  section.news .link-back a:after {
    top: 11px;
  }
}

.pagination {
  margin: 40px 0 0;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
}
.nav-links a {
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .nav-links a:hover {
    opacity: 0.6;
  }
}

.pagination .page-numbers {
  display: flex;
  margin-right: 10px;
  padding: 0;
  color: var(--blue);
  border-radius: 3px;
  background: #fff;
  border: 1px solid var(--blue);
  width: 35px;
  height: 35px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers {
    width: 30px;
    height: 30px;
  }
}

.pagination .current {
  background: var(--blue);
  color: #fff;
}

.pagination .prev,
.pagination .next {
  background: transparent;
  box-shadow: none;
  color: var(--blue);
}

.pagination .dots {
  background: transparent;
  box-shadow: none;
  border: none;
}