@charset "UTF-8";
html {
  font-size: 10px;
}

body {
  overflow-x: hidden;
}

main div,
main p,
main ul,
main li,
main h1,
main h2,
main h3 {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
main ul {
  list-style: none;
}
main img {
  width: 100%;
}

main {
  font-family: "Noto Sans JP", serif;
}

.information_back {
  background-color: #f8f8f8;
  padding: 100px 0;
}
.information_back .inner {
  max-width: 1024px;
  width: calc(100% - 30px);
  margin: auto;
  margin-bottom: 100px;
}
.information_back .inner .title_eng {
  font-size: 3rem;
  font-weight: bold;
  color: #5f6772;
  text-align: center;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .information_back .inner .title_eng {
    font-size: 2.2rem;
  }
}
.information_back .inner h1 {
  font-size: 1.9rem;
  font-weight: 400;
  color: #5f6772;
  text-align: center;
  margin: 0 auto 50px;
}
@media (min-width: 1024px) {
  .information_back .inner h1 {
    font-size: 1.4rem;
  }
}
.information_back .inner .post_list {
  max-width: 540px;
  margin: auto;
}
.information_back .inner .post_list li:not(.post_none) {
  position: relative;
}
@media (min-width: 600px) {
  .information_back .inner .post_list li:not(.post_none) {
    display: flex;
  }
}
.information_back .inner .post_list li:not(.post_none) .post_date {
  font-size: 1.2rem;
  color: #929293;
}
@media (min-width: 600px) {
  .information_back .inner .post_list li:not(.post_none) .post_date {
    margin-right: 15px;
  }
}
@media (max-width: 599px) {
  .information_back .inner .post_list li:not(.post_none) .post_date {
    margin-bottom: 10px;
  }
}
.information_back .inner .post_list li:not(.post_none) .post_title {
  font-size: 1.4rem;
  font-weight: 500;
  color: #231815;
}
.information_back .inner .post_list li:not(.post_none) a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.information_back .inner .post_list li:not(.post_none):hover .post_title {
  opacity: 0.7;
}
.information_back .inner .post_list li:not(.post_none):not(:last-child) {
  margin-bottom: 30px;
}
.information_back .inner .post_list li.post_none {
  font-size: 16px;
  color: #000;
  text-align: center;
}
.information_back .border {
  width: 100%;
  height: 1px;
  background-color: #b9baba;
}

/* ページネーション */
.pagination {
  margin: 100px auto 0;
  display: flex;
  justify-content: center;
}
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  padding: 10px;
  font-size: 1.6rem;
  color: #808080;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #b9baba;
  text-decoration: none;
}
@media (min-width: 600px) {
  .pagination .page-numbers {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
}
.pagination .prev,
.pagination .next {
  display: none;
}
.pagination .current,
.pagination .page-numbers:not(.dots):hover {
  background-color: #4b75f2;
  color: #fff;
  border-color: #4b75f2;
}