/*------------------------------
--------------------------------
 新着情報詳細
--------------------------------
------------------------------*/
section.newspost_wrap {
  padding: 0;
}

.newspost .post_date {
  padding-bottom: 16px;
}

.newspost .post_title {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--frame-subtitle);
}

.newspost .post_title h2 {
  color: var(--midashi-brown);
}

.newspost .post_title .post_tag_wrap {
  color: var(--white);
  display: flex;
  gap: 16px;
  align-items: center;
}

.newspost .post_title .post_tag_wrap div {
  background: var(--frame-subtitle);
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
}

.newspost .text_area {
  margin: 48px 0;
}

.newspost .text_area h2 {
  color: var(--link);
  padding-bottom: 24px;
}

/*.newspost .text_area > div {
  padding-bottom: 48px;
}*/

.newspost .text_area > div a {
  text-decoration: underline;
}

.newspost .text_area > div a:hover {
  opacity: .5;
}

.newspost .text_area img {
  display: block;
  width: 41.7%;
  max-width: 426px;
  margin: 0 auto;
}

.newspost .text_area figure {
  padding-top: 48px;
  margin: 0;
}

.newspost .text_area img + img {
  margin-top: 48px;
}

.newspost nav {
  padding-bottom: 96px;
}
.newspost nav ul {
  display: flex;
  /*align-items: center;*/
  justify-content: space-between;
}

.newspost nav ul li {
  width: 32.3%;
  max-width: 330px;
  min-height: 60px;
  background: var(--white);
}

.newspost nav ul li:hover {
  opacity: 0.5;
  transition: 0;
  cursor: pointer;
}

.newspost nav ul li.no_link {
  color: var(--frame-line);
  opacity: .5;
}

.newspost nav ul li.no_link:hover {
  cursor: default;
}

.newspost nav ul li .newspost_link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nav-black);
  border: 1px solid var(--frame-line);
}

.newspost nav ul li .newspost_link.no_link {
  padding: 16px 21px;
}

.newspost nav ul li .newspost_link a {
  color: var(--nav-black);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 16px 21px;
}

.newspost nav ul li .newspost_link.prev a {
  padding-left: 57px;
}

.newspost nav ul li .newspost_link.next a {
  padding-right: 57px;
}

.newspost nav ul li .newspost_link.prev a:before {
  display: block;
  position: absolute;
  content: '<<';
  left: 21px;
  top: 50%;
  transform: translateY(-50%);
}

.newspost nav ul li .newspost_link.next a:before {
  display: block;
  position: absolute;
  content: '>>';
  right: 21px;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 960px) {
  .newspost nav ul li .newspost_link.prev a {
    padding-left: 46px;
  }

  .newspost nav ul li .newspost_link.next a {
    padding-right: 46px;
  }

  .newspost nav ul li .newspost_link.prev a:before {
    left: 16px;
  }

  .newspost nav ul li .newspost_link.next a:before {
    right: 16px;
  }
}

@media only screen and (max-width: 650px){
  .newspost .post_title {
    flex-direction: column;
    padding-bottom: 16px;
    align-items: flex-start;
  }

  .newspost .post_title .post_tag_wrap {
    width: 100%;
    justify-content: flex-start;
  }

  .newspost .post_title .post_tag div {
    height: 30px;
  }

  .newspost .text_area {
    margin: 24px 0;
  }

  .newspost .text_area h2 {
    padding-bottom: 16px;
  }

  /*.newspost .text_area > div {
    padding-bottom: 24px;
  }*/

  .newspost .text_area figure {
    padding-top: 24px;
  }

  .newspost .text_area img {
  width: 100%;
  max-width: 300px;
}

.newspost .text_area img + img {
  margin-top: 24px;
}

.newspost nav {
  padding-bottom: 48px;
}

.newspost nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.newspost nav ul li {
  display: flex;
  width: 100%;
  max-width: 300px;
}
}