@charset "UTF-8";
/* 変数 */
.pagenation {
  margin: 0 auto;
}
.pagenation ul {
  display: flex;
  justify-content: center;
  column-gap: 0.8rem;
  padding-left: 0;
}
.pagenation ul li a,
.pagenation ul li .current {
  display: block;
  padding: 0.6rem 1.5rem;
}
.pagenation ul li a {
  background-color: #dadada;
}

.pagenation_color_yellow .current {
  color: #ffffff;
  background-color: #B49F64;
}

.news_blocks {
  margin-bottom: 6rem;
  padding: 1.6rem 2rem 6rem;
  background-color: #ffffff;
}
.news_blocks .myfigure {
  margin: 0 0 2.2rem;
}
.news_blocks h1 {
  margin-bottom: 1.6rem;
  font-size: 2.4rem;
}
.news_blocks .category_date {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
  font-size: 1.4rem;
  font-weight: 400;
}
.news_blocks .category_date ul {
  display: flex;
  justify-content: flex-start;
  column-gap: 1rem;
}
.news_blocks .category_date li {
  padding: 0.2rem 0.6rem 0.3rem;
  background-color: #465f83;
  border-radius: 0.5rem;
}
.news_blocks .category_date li a {
  color: #ffffff;
}
.news_blocks .news-content {
  font-size: 1.6rem;
}

.news-single-navigation {
  width: 90%;
  max-width: 650px;
  margin: 0 auto 14rem;
}
.news-single-navigation .nav-links {
  display: flex;
  background-color: #fdfdfd;
  border: 0.1rem solid #dadada;
  font-size: 1.4rem;
  line-height: 1.4;
  --fa_margin: 2.6rem;
}
.news-single-navigation .nav-links .nav-previous,
.news-single-navigation .nav-links .nav-next {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 50%;
  max-width: 50%;
  height: auto;
  border-right: 0.1rem solid #dadada;
}
.news-single-navigation .nav-links .nav-previous a,
.news-single-navigation .nav-links .nav-next a {
  display: block;
  width: 100%;
  font-size: 1.5rem;
}
.news-single-navigation .nav-links .nav-previous a {
  padding: 1.2rem 3.6rem 1.2rem 6rem;
  text-align: left;
}
.news-single-navigation .nav-links .nav-previous i {
  position: absolute;
  top: 50%;
  left: var(--fa_margin);
  transform: translateY(-50%);
}
.news-single-navigation .nav-links .nav-next {
  border-left: 0.1rem solid #dadada;
}
.news-single-navigation .nav-links .nav-next a {
  padding: 1.2rem 6rem 1.2rem 3.6rem;
  text-align: right;
}
.news-single-navigation .nav-links .nav-next i {
  position: absolute;
  top: 50%;
  right: var(--fa_margin);
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .news_blocks .myfigure {
    margin: 0 0 1.8rem;
  }
  .news_blocks h1 {
    margin-bottom: 1.3rem;
    font-size: 2rem;
  }
  .news_blocks .category_date {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    font-size: 1.4rem;
    font-weight: 400;
  }
  .news_blocks .category_date .post-categories {
    flex-wrap: wrap;
    row-gap: 1rem;
    width: 66.5%;
  }
  .news_blocks .category_date time {
    width: 33%;
  }
  .news_blocks .news-content {
    font-size: 1.6rem;
  }
  .news-single-navigation .nav-links .nav-previous a,
  .news-single-navigation .nav-links .nav-next a {
    font-size: 1.4rem;
    line-height: 1;
  }
  .news-single-navigation .nav-links .nav-previous a {
    padding: 1.2rem 3.6rem 1.5rem 5rem;
  }
  .news-single-navigation .nav-links .nav-next a {
    padding: 1.2rem 5rem 1.5rem 3.6rem;
  }
}