/* voice */
.page-voice.section__header {
  background-image: url(../img/other_header.jpg);
}

.page-voice .page-title::after {
  content: "お客様の声";
}

.voice {
  margin: 50px auto 100px;
}

.voice__list {
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 100px;
  gap: 50px;
}

.voice__list-item {
  width: 45%;
}

.voice__anchor {
  width: 100%;
}

.voice__anchor figure {
  width: 100%;
}

.voice__anchor figure img {
    aspect-ratio: 3 / 2;
    object-fit: contain;
    object-position: center;
}

.voice__anchor h3 {
    margin-top: 10px;
  font-size: 2.4rem;
  font-weight: 500;
  color: #005aaa;
}

@media (max-width: 420px) {
  .voice {
    margin: 80px auto;
  }

  .voice__list {
    flex-direction: column;
    margin-bottom: 80px;
  }

  .voice__list-item {
    width: 100%;
  }

  .voice__list-item figure {
    width: 100%;
  }

  .voice__anchor h3 {
    font-size: 2rem;
  }
}

/* blog */
.page-blog.section__header {
  background-image: url(../img/other_header.jpg);
}

.page-blog .page-title::after {
  content: "ＨＲブログ";
}

.page-blog {
  margin: 0 auto 100px;
}

.blog-wrapper {
  margin-bottom: 100px;
}

.blog__list {
    justify-content: flex-start;
  gap: 50px;
  width: 100%;
  margin-bottom: 100px;
}

.blog__list-item {
  width: 30%;
}

.blog__list-item a {
	
    display: grid;
    grid-auto-rows: auto 5em 4em;
}

.blog__list-item figure {
  margin-bottom: 10px;
}

.blog__list-item figure img {
  aspect-ratio: 3/2;
}

.blog__list-item h3 {
  padding-bottom: 10px;
  font-size: 2rem;
  font-weight: 500;
}

.blog__list-item p {
  font-size: 1.6rem;
  font-weight: 500;
}

.blog-pagination {
  gap: 20px;
}

.blog-pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  margin: 0;
  border-radius: 50%;
  background-color: #005aaa;
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
}

.blog-pagination .current {
  background-color: #dadada;
  color: #747474;
}

.blog-pagination .next.page-numbers,
.blog-pagination .prev.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background-color: transparent;
}

.blog-pagination .next::after,
.blog-pagination .prev::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(../img/arrow_02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.blog-pagination .prev {
  transform: scaleX(-1);
}

@media (max-width: 420px) {
  .page-blog {
    margin: 0 auto 50px;
  }

  .blog__list {
/* 	display: -webkit-box;
    flex-direction: column; */
    gap: 30px;
    margin-bottom: 50px;
  }

  .blog__list-item {
    width: 45%;
  }

  .blog-pagination .page-numbers {
    width: 1.5em;
    height: 1.5em;
    font-size: 2rem;
  }
}

/* news */
.page-news.section__header {
  background-image: url(../img/other_header.jpg);
}

.page-news .page-title::after {
  content: "ニュース";
}

.section-news {
  margin: 100px auto;
}

.news__list {
  margin-bottom: 50px;
}

.news__list-item {
  width: 100%;
  padding: 20px 0;
  border-top: 1px solid #d4e5ed;
  border-bottom: 1px solid #d4e5ed;
}

.news__list-item h3 a {
  padding-bottom: 10px;
  font-size: 2rem;
  font-weight: 500;
}

.navigation {
  margin-bottom: 100px;
}

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: fit-content;
  margin: 0 auto;
  border-radius: 50%;
}

.page-numbers li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  background-color: #005aaa;
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
}

.current {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  background-color: #dadada;
  font-size: 2.4rem;
  font-weight: 500;
  color: #747474;
}

.next.page-numbers,
.prev.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background-color: transparent;
}

.next::after,
.prev::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(../img/arrow_02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.prev {
  transform: scaleX(-1);
}

@media (max-width: 420px) {
  .section-news {
    margin: 80px auto;
  }

  .page-numbers li a {
    font-size: 1.8rem;
  }

  .current {
    font-size: 1.8rem;
  }
}

/* document */
.page-doc.section__header {
  background-image: url(../img/other_header.jpg);
}
.page-doc {
  margin: 0 auto 100px;
}

.page-doc .page-title::after {
  content: "お役立ち資料";
}
