@charset "UTF-8";
@media (min-width: 769px) {
  .pankuzu {
    margin-top: 30px;
  }
}
/* 一覧ページ */
.category-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px 2.5%;
  margin-bottom: 40px;
}
.category-filter a {
  width: 18%;
  margin: 0;
  background: #ffffff;
}
.category-filter a.active {
  background: #1049a0;
}

.post-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.post-list article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid #ddd;
}
.post-list article .post-date {
  font-size: 16px;
  -ms-flex-preferred-size: 140px;
      flex-basis: 140px;
}
.post-list article .post-category {
  font-size: 14px;
  -ms-flex-preferred-size: 160px;
      flex-basis: 160px;
  background: #1049a0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #fff;
  padding: 0.4em 0;
  text-align: center;
}
.post-list article .post-title {
  font-size: 16px;
  font-weight: normal;
}
.post-list article .post-title a {
  display: block;
  color: #0000ff;
  text-decoration: underline;
}

.post-list article:last-of-type {
  border-bottom: 1px solid #ddd;
}

@media (min-width: 767px) {
  .post-list article .post-title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (max-width: 768px) {
  .news-archive h2 {
    margin-top: 6.25vw;
  }
  .category-filter {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2vw;
  }
  .category-filter a {
    width: 48%;
    font-size: 3vw;
    line-height: 8vw;
  }
  .post-list article {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 3vw 0;
    gap: 3vw 0;
  }
  .post-list article .post-date {
    font-size: 3vw;
    -ms-flex-preferred-size: 28vw;
        flex-basis: 28vw;
  }
  .post-list article .post-category {
    font-size: 2.5vw;
    -ms-flex-preferred-size: 30vw;
        flex-basis: 30vw;
  }
  .post-list article .post-title {
    font-size: 4vw;
    width: 100%;
  }
}



/* 記事ページ */
.news-post .post-title {
  text-align: left;
  font-size: 26px;
  margin-bottom: 1em;
}
.news-post .post-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
.news-post .post-date {
  font-size: 14px;
}
.news-post .post-category {
  font-size: 14px;
  -ms-flex-preferred-size: 150px;
      flex-basis: 150px;
  background: #1049a0;
  color: #fff;
  padding: 0.4em 0;
  text-align: center;
}
.news-post .post-content {
  padding-bottom: 80px;
}
.news-post .post-content * {
  font-size: 16px;
  margin-bottom: 1em;
  line-height: 1.6;
}
.news-post .post-content figure {
  max-width: 500px;
  margin: 0 auto 1em;
}
.news-post .post-content img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  max-width: 100%;
  height: auto;
}
.news-post .post-content a {
  display: block;
  color: #0000ff;
  text-decoration: underline;
}

.back-to-list {
  font-size: 12px;
}

.back-to-list:before {
  content: "<";
  margin-right: 0.5em;
}

@media (max-width: 768px) {
  .news-post {
    padding-top: 6.25vw;
  }
}