.post {
  padding-top: 80px;
  padding-bottom: 80px;
}

.post__title {
  font-size: 24px;
  line-height: 32px;
  color: #0e5195;
  text-align: center;
}

.post__image {
  display: block;
  background-color: #707070;
  width: 100%;
  /* aspect-ratio: 16 / 9; */
  margin: 32px auto 0;
  object-fit: cover;
}

.post__info {
  margin: 40px auto 0;
  width: 100%;
  max-width: 700px;
}

.post__info * {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.post__info-row {
  border-bottom: 1px solid #707070;
}

.post__info th {
  padding: 16px 8px;
  text-align: center;
  width: 29%;
  max-width: 90px;
  vertical-align: top;
}

.post__info td {
  padding: 16px 10px;
  height: fit-content;
  position: relative;
}

.post__info td::before {
  position: absolute;
  left: 0;
  top: 16px;
  /* top: 50%;
  transform: translateY(-50%); */
  content: "";
  display: inline-block;
  width: 1px;
  /* height: calc(100% - 30px); */
  height: 26px;
  background-color: #707070;
}

.navi_buttons {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 896px;
  margin: 60px auto 0 auto;
}

/* .navi_buttons * {
  width: 144px;
  height: 40px;
  border: 1px solid #707070;
  border-radius: 2px;
  background-color: #ffffff;
  color: #707070;
  font-size: 16px;
  font-weight: 500;
  line-height: 37px;
  position: relative;
  cursor: pointer;
} */

.navi_buttons div:first-child {
  text-align: right;
  padding-right: 20px;
}

.navi_buttons div:last-child {
  padding-left: 16px;
}

/* .navi_buttons *::before {
  position: absolute;
  display: block;
  height: 12px;
  width: 6px;
  content: "";
  background-image: url(../images/news/navi_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
} */

.navi_buttons a::before {
  position: absolute;
  display: block;
  height: 12px;
  width: 6px;
  content: "";
  background-image: url(../images/news/navi_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
}
/* .navi_buttons div:first-child::before {
  left: 11px;
} */
.navi_buttons div.post-detail__btn-p a::before {
  left: 11px;
}

/* .navi_buttons div:last-child::before {
  right: 11px;
  transform: translateY(-50%) rotate(180deg);
} */

.navi_buttons div.post-detail__btn-n a::before {
  right: 11px;
  transform: translateY(-50%) rotate(180deg);
}

.post-detail__btn-p a {
  text-align: right;
  padding-right: 20px;
}

.post-detail__btn-n a {
  text-align: left;
  padding-left: 20px;
}
.navi_buttons a {
  width: 144px;
  height: 40px;
  border: 1px solid #707070;
  border-radius: 2px;
  background-color: #ffffff;
  color: #707070;
  font-weight: 500;
  line-height: 37px;
  position: relative;
  cursor: pointer;
  display: block;
  position: relative;
}

.navi_buttons a::before {
  position: absolute;
  display: block;
  height: 12px;
  width: 6px;
  content: "";
  background-image: url(../images/news/navi_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
}

.navi_buttons .post-detail__btn-n a::before {
  right: 11px;
  transform: translateY(-50%) rotate(180deg);
}
@media (max-width: 360px) {
  .navi_buttons * {
    width: 120px;
    font-size: 14px;
  }

  .navi_buttons div:first-child {
    padding-right: 10px;
  }

  .navi_buttons div:last-child {
    padding-left: 8px;
  }
}

@media (min-width: 768px) {
  .post {
    padding-top: 200px;
    padding-bottom: 126px;
  }

  .post__title {
    font-size: 48px;
    line-height: 56px;
  }

  .post__wrapper {
    max-width: 896px;
    margin: 0 auto;
  }

  .post__image {
    /* aspect-ratio: 896 / 504; */
    margin-top: 60px;
  }

  .post__info {
    margin: 100px auto 0;
  }

  .post__info * {
    font-size: 18px;
  }

  .post__info th {
    padding: 20px;
    width: 20%;
  }

  .post__info td {
    padding: 20px;
  }

  .post__info td::before {
    position: absolute;
    left: 0;
    top: 20px;
  }
}