@charset "utf-8";
/* ====================================================
ページナビ
==================================================== */
.news-pagenavi {
  margin-top: 70px;
}
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;

  gap: 16px;
}
.wp-pagenavi a {
  display: inline-block;
  width: 41px;
  height: 41px;
  padding: 0 !important;
  border: solid 1px var(--c-blue);
  font-size: var(--fs-14);
  line-height: 41px;
  text-align: center;
  white-space: nowrap;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi a.page,
.wp-pagenavi span.extend {
  border: solid 1px var(--c-blue);
}
.wp-pagenavi a.nextpostslink {
  border: solid 1px var(--c-blue) !important;
  color: var(--c-blue);
}
.wp-pagenavi a.previouspostslink {
  border: solid 1px var(--c-blue) !important;
  color: var(--c-blue);
}
.wp-pagenavi a.page {
  border: solid 1px var(--c-blue) !important;
  color: var(--c-blue);
}
.wp-pagenavi a.last {
  border: solid 1px var(--c-blue) !important;
  color: var(--c-blue);
}
.wp-pagenavi span {
  display: inline-block;
  width: 41px;
  height: 41px;
  padding: 0 !important;
  border: solid 1px var(--c-blue);
  font-size: var(--fs-14);
  line-height: 41px;
  text-align: center;
}
.wp-pagenavi .current {
  border: none;
  border: solid 1px var(--c-blue1) !important;
  background-color: var(--c-blue1);
  color: #fff;
}
.wp-pagenavi .nextpostslink-span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-top: 16px;
  border: 0;
  border-top: solid 1px var(--c-blue1);
  border-right: solid 1px var(--c-blue1);
  line-height: normal;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-top: 60px;

    gap: 10px;
  }
  .wp-pagenavi a {
    display: inline-block;
    width: 35px;
    height: 35px;
    font-size: var(--fs-14);
    line-height: 35px;
    text-align: center;
  }
  .wp-pagenavi a.first {
    width: auto;
  }
  .wp-pagenavi a.last {
    width: auto;
  }
  .wp-pagenavi span {
    display: inline-block;
    width: 35px;
    height: 35px;
    border: none;
    font-size: var(--fs-16);
    line-height: 35px;
    text-align: center;
  }
  .wp-pagenavi .current {
    width: 35px;
  }
}
/* ====================================================
news共通
==================================================== */
.news {
  background: #e5ebef;
}

.news .contents-wrapper {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 5% 80px;
  padding-bottom: 100px;
  border-radius: 36px;
  background: #fff;
}

.news .contents-wrap {
  max-width: 860px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .news .contents-wrapper {
    padding: 40px 5% 60px;
  }
}

.breadcrumb ul li:nth-child(2) a:after {
  display: none;
}

/* ====================================================
news一覧 news-list
==================================================== */

.news .article_topArea {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.news .article_topArea .article_cateList ul {
  gap: 10px;
}

.news .article_topArea .article_cateList ul li a {
  display: inline-block;
  margin-right: 0;
  padding: 4px 18px;
  border-radius: 40px;
  background: #e5ebef;
  font-size: var(--fs-14);
  font-weight: bold;
}

.news .article_topArea .article_cateList ul li.active a {
  background: #35609d;
  color: #fff;
}

.ym-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.ym-button {
  padding: 10px 56px 10px 46px;
  border: var(--c-blue) 1px solid;
  border-radius: 9999px;
  background: #fff;
  font-size: var(--fs-14);
  font-weight: bold;
  color: var(--c-blue);
  cursor: pointer;
  transition: background-color 0.2s, box-shadow 0.2s;

  -webkit-appearance: none;
  appearance: none;
}

.ym-select-wrapper {
  position: relative;
  display: inline-block;
}

.ym-select-wrapper::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 16px;
  height: 8px;
  background: var(--c-blue);
  content: "";
  transform: translate(0, -50%);

  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* .ym-button:hover {
  background-color: #4338ca;
} */

.ym-button:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.3);
}

.news-list .news_box a {
  display: block;
}

.news-list .news_box article {
  align-items: center;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: solid 1px #d5d5d5;
  font-size: var(--fs-16);
}

.news-list .news_box article .article_img {
  max-width: 214px;
  margin-right: 3%;
}

.news-list .news_box article .article_img img {
  width: 100%;
  height: auto;
  border-radius: 12px;

  object-fit: cover;
  aspect-ratio: 214 / 140;
}

.news-list .news_box article .article_text {
  max-width: 620px;
}

.news-list .news_box article .article_text time {
  padding-right: 10px;
  font-size: var(--fs-13);
  color: var(--c-lightblue);
}
.news-list .news_box article .article_text .cate {
  display: inline-block;
  margin-bottom: 12px;
  padding: 3px 12px 2px;
  border-radius: 40px;
  background: var(--c-blue);
  font-size: var(--fs-13);
  font-weight: bold;
  color: #fff;
}

.news-list .news_box article .article_text .ttl p {
  font-size: var(--fs-18);
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .news .article_topArea {
    display: block;
    margin-bottom: 20px;
  }
  .article_cateList {
    margin-bottom: 20px;
  }
  .article_cateList ul {
    flex-wrap: wrap;
  }
  .article_pullList {
    text-align: center;
  }
  .news-list .news_box article {
    display: block;
  }
  .news-list .news_box article .article_img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 20px;
  }
  .news-list .news_box article .article_text {
    width: 100%;
  }
}

/* ====================================================
news詳細　.news-detail
==================================================== */

.news-detail .post {
  margin-bottom: 60px;
}

.news_ttl h1 {
  margin-bottom: 40px;
  color: var(--c-blue);
}

.news_ttl .ttl {
  font-size: var(--fs-15);
}

@media screen and (max-width: 767px) {
  .news_ttl h1 {
    margin-bottom: 20px;
  }
}
