section.mv {
  background: url(/contact_files/img/mv_bg.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  section.mv {
    background-position: left center;
  }
}

section.newsList {
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  section.newsList {
    margin-bottom: 68px;
  }
}
section.newsList .inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  section.newsList .inner {
    margin: 0 auto 24px;
  }
}
section.newsList .sort {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  section.newsList .sort {
    gap: 0 8px;
    margin-bottom: 24px;
  }
}
section.newsList .sort a {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 3px;
  background-color: #ebebeb;
  color: var(--bc-blue);
  font-size: 13px;
}
section.newsList .sort a.is-active {
  background-color: var(--bc-blue);
  color: #fff;
}
section.newsList ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid var(--bc-blue);
}
section.newsList ul li {
  border-bottom: 1px solid var(--bc-blue);
}
section.newsList ul li a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 20px 28px 20px 15px;
  position: relative;
}
@media screen and (max-width: 768px) {
  section.newsList ul li a {
    gap: 6px 10px;
    padding: 16px 20px 16px 10px;
  }
}
section.newsList ul li a::after {
  content: "";
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid var(--bc-blue);
  position: absolute;
  top: calc(50% - 8px);
  right: 10px;
}
section.newsList ul li a time {
  color: rgba(31, 36, 58, 0.7);
  font-size: 14px;
}
section.newsList ul li a span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  width: 65px;
  height: 20px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}
section.newsList ul li a span.news {
  background-color: #f76f2c;
}
section.newsList ul li a span.topics {
  background-color: #2db74a;
}
section.newsList ul li a p {
  width: calc(100% - 200px);
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  section.newsList ul li a p {
    width: 100%;
  }
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  gap: 0 10px;
}
.wp-pagenavi > * {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #ebebeb;
  color: var(--bc-blue);
  font-size: 14px;
}
.wp-pagenavi a.page:hover {
  text-decoration: underline;
}
.wp-pagenavi span.current,
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  background-color: var(--bc-blue);
  color: #fff;
}
.wp-pagenavi span.current::after,
.wp-pagenavi .previouspostslink:hover::after,
.wp-pagenavi .nextpostslink:hover::after {
  background-color: #fff;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  font-size: 0;
}
.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::after {
  content: "";
  width: 7px;
  height: 15px;
  background: var(--bc-blue);
}
.wp-pagenavi .previouspostslink::after {
  clip-path: polygon(0 50%, 100% 100%, 100% 0);
}
.wp-pagenavi .nextpostslink::after {
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

section.newsArticle {
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  section.newsArticle {
    margin-bottom: 68px;
  }
}
section.newsArticle .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
section.newsArticle aside {
  display: flex;
  flex-direction: column;
  width: 180px;
}
section.newsArticle aside p {
  padding: 0 10px 10px;
  border-bottom: 2px solid #1f243a;
  font-weight: bold;
}
section.newsArticle aside ul {
  margin-bottom: 20px;
}
section.newsArticle aside ul li {
  border-bottom: 1px solid #1f243a;
}
section.newsArticle aside ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  color: inherit;
}
section.newsArticle aside ul li a:hover {
  text-decoration: underline;
}
section.newsArticle aside ul li a::after {
  content: "";
  width: 5px;
  height: 10px;
  background-color: #1f243a;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
section.newsArticle aside a.back {
  font-size: 12px;
}
section.newsArticle aside a.back:hover {
  text-decoration: underline;
}
section.newsArticle article {
  max-width: 760px;
  width: calc(100% - 200px);
  padding: 70px;
  border-radius: 10px;
  background-color: #f3f3f3;
  color: #1f243a;
}
@media screen and (max-width: 768px) {
  section.newsArticle article {
    width: 100%;
    padding: 32px 5%;
    border-radius: 6px;
  }
}
section.newsArticle article .articleTtl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 10px;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1f243a;
}
@media screen and (max-width: 768px) {
  section.newsArticle article .articleTtl {
    gap: 10px 8px;
    margin-bottom: 18px;
    padding-bottom: 6px;
  }
}
section.newsArticle article .articleTtl span.cat {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  width: 65px;
  height: 20px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}
section.newsArticle article .articleTtl span.cat.news {
  background-color: #f76f2c;
}
section.newsArticle article .articleTtl span.cat.topics {
  background-color: #2db74a;
}
section.newsArticle article .articleTtl h2 {
  width: 100%;
  line-height: 1.4;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  section.newsArticle article .articleTtl h2 {
    font-size: 22px;
  }
}
section.newsArticle article .articleCnt {
  display: flex;
  flex-direction: column;
  gap: 35px 0;
}
@media screen and (max-width: 768px) {
  section.newsArticle article .articleCnt {
    gap: 16px 0;
  }
}
section.newsArticle article .articleCnt p {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  section.newsArticle article .articleCnt p {
    line-height: 1.8;
  }
}
section.newsArticle article .articleCnt ul li {
  list-style: disc;
  list-style-position: inside;
}
section.newsArticle article .articleCnt ol li {
  list-style: decimal;
  list-style-position: inside;
}
/*# sourceMappingURL=style.css.map */
