/****************************
 single-post
****************************/
#single-post {
  padding-top: 150px;
}
#single-post .news-title {
  margin-top: 100px;
  color: #006a35;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 100px;
  border-bottom: 1px solid #006a35;
}
#single-post .news-title span:nth-of-type(1) {
  font-size: 52px;
  margin-right: 30px;
}
#single-post .news-title span:nth-of-type(2) {
  font-size: 12px;
}
#single-post h1 {
  font-size: 46px;
  color: #001f05;
}
#single-post .time {
  color: #c1da6b;
  font-size: 24px;
}
#single-post .cats {
  color: #59b33a;
  font-size: 14px;
}
#single-post .cats span {
  text-decoration: 1px underline #59b33a;
}
#single-post .cats span:not(:last-child):after {
  content: "/";
  color: #59b33a;
  margin-left: 10px;
  margin-right: 10px;
}
#single-post .meta {
  margin-bottom: 80px;
}
#single-post .cnt {
  font-size: 20px;
}
#single-post .post-navigation {
  margin-top: 100px;
  margin-bottom: 100px;
  padding-top: 50px;
  border-top: 1px solid #59b332;
}
#single-post .post-navigation .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#single-post .post-navigation .next-link .next-arrow {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 30px;
  /* CSSで三角形を作る手法 */
  border-style: solid;
  border-width: 12px 12px 15px 0;
  border-color: transparent #59b332 transparent transparent;
  vertical-align: 0px;
}
#single-post .post-navigation .prev-link .prev-arrow {
  content: "";
  display: inline-block;
  margin-left: 30px;
  /* CSSで三角形を作る手法 */
  border-style: solid;
  border-width: 12px 0 12px 15px;
  border-color: transparent transparent transparent #59b332;
  vertical-align: 0px;
}
#single-post .post-navigation a {
  color: #59b332;
  text-decoration: none;
  font-size: 24px;
  display: inline-block;
  max-width: 180px; /* 表示させたい限界の横幅を指定（ここで文字数が決まります） */
  white-space: nowrap; /* 改行させない */
  overflow: hidden; /* はみ出た部分を隠す */
  text-overflow: ellipsis; /* はみ出た末尾を「…」にする */
  vertical-align: bottom;
}
#single-post .post-navigation .next-link {
  margin-bottom: 15px;
}
#single-post .post-navigation .prev-link {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  #single-post h1 {
    font-size: 28px;
    color: #001f05;
  }
  #single-post .post-navigation a {
    width: 100px;
    font-size: 16px;
  }
  #single-post .post-navigation .prev-link .prev-arrow {
    margin-left: 15px;
    /* CSSで三角形を作る手法 */
    border-style: solid;
    border-width: 6px 0 6px 9px;
    vertical-align: 0px;
  }
  #single-post .post-navigation .next-link .next-arrow {
    margin-right: 15px;
    /* CSSで三角形を作る手法 */
    border-width: 6px 9px 6px 0;
    vertical-align: 0px;
  }
}
