@charset "UTF-8";
/* 共通カラー */
/* ブレイクポイント */
/* メディアクエリ */
.section--gray {
  background: #f6f7f7;
  padding: 30px 0;
}
@media screen and (min-width: 520px) {
  .section--gray {
    padding: 50px 0;
  }
}
@media screen and (min-width: 760px) {
  .section--gray {
    padding: 30px 0 70px;
  }
}

.news-detail {
  max-width: 1100px;
  width: 94%;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
}
@media screen and (min-width: 760px) {
  .news-detail {
    padding: 50px;
  }
}
.news-detail__time {
  margin-right: 20px;
}
@media screen and (min-width: 960px) {
  .news-detail__time {
    margin-right: 50px;
  }
}
.news-detail__tag {
  display: inline-block;
  color: #fff;
  font-weight: bold;
  padding: 5px 20px;
}
.news-detail__tag--red {
  background: #f00;
}
.news-detail__tag--yellow {
  background: #ffbb0b;
}
.news-detail__title {
  font-size: 1.8rem;
  padding-top: 20px;
}
@media screen and (min-width: 960px) {
  .news-detail__title {
    font-size: 2.2rem;
  }
}
.news-detail__box {
  padding-top: 20px;
  line-height: 2;
}
@media screen and (min-width: 760px) {
  .news-detail__box {
    padding-top: 30px;
  }
}
.news-detail__box a {
  display: inline-block;
}
.news-detail__box a:hover {
  opacity: 0.6;
}

.post-link {
  position: relative;
  max-width: 1100px;
  width: 94%;
  margin: 30px auto 0 auto;
  padding-bottom: 100px;
}
@media screen and (min-width: 760px) {
  .post-link {
    padding-bottom: 0;
    margin: 60px auto 0 auto;
  }
}
.post-link__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.post-link__item--set {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 760px) {
  .post-link__item--set {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.post-link__btn {
  display: inline-block;
  font-weight: bold;
  color: #000;
  position: relative;
}
.post-link__btn--prev {
  padding-left: 30px;
}
.post-link__btn--prev::before {
  position: absolute;
  content: "";
  background-image: url(../img/module/arrow_black_reverse_icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 15px;
  height: 8px;
  left: 0;
  top: 50%;
  transition: 0.6s;
  transform: translateY(-50%);
}
.post-link__btn--prev:hover::before {
  left: -10px;
}
.post-link__btn--return {
  position: relative;
  display: inline-block;
  background-color: #fff;
  color: #000;
  font-weight: bold;
  border: 1px solid #000;
  padding: 20px 0;
  width: 180px;
  text-align: center;
}
.post-link__btn--return:hover {
  color: #fff;
  background: #000;
  transition: 0.3s;
}
.post-link__btn--next {
  padding-right: 30px;
}
.post-link__btn--next::before {
  position: absolute;
  content: "";
  background-image: url(../img/module/arrow_black_icon2.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 15px;
  height: 8px;
  right: 0;
  top: 50%;
  transition: 0.6s;
  transform: translateY(-50%);
}
.post-link__btn--next:hover::before {
  right: -10px;
}