/* news all */
.news_all .container {
  max-width: 1000px;
}
.news_all ul {
  list-style: none;
}
.news_all li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 30px;
  box-sizing: border-box;
  color: #333;
  background-color: #FFF;
  border-bottom: 1px solid #CCC;
}
.news_all li:last-child a {
  border-bottom: 0;
}
.news_all .post_info {
  width: 20%;
  padding: 0 15px;
  box-sizing: border-box;
}
.news_all .post_ttl {
  display: flex;
  align-items: center;
  width: 80%;
  font-size: 15px;
}
.news_all .post_ttl .arrow {
  margin-left: auto;
}
.news_all .post_ttl .arrow span {
  display: inline-block;
  padding: 5px 15px;
  box-sizing: border-box;
  background-color: #333;
}
.news_all .post_ttl .arrow span svg {
  max-width: 25px;
  width: 100%;
  fill: #FFF;
}
.wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.wp-pagenavi span, .wp-pagenavi a {
  margin: 0 30px;
  padding: 10px;
  box-sizing: border-box;
  color: #333;
  font-weight: 700;
  font-size: 25px;
}
.wp-pagenavi .current {
  border-bottom: 2px solid #333;
}
.wp-pagenavi a {
  transition: .5s;
  border-bottom: 2px solid transparent;
}
.wp-pagenavi a:hover {
  border-color: #C7A051;
}
/* news all end */

/* news single */
.news_single .post_time {
  margin-bottom: 30px;
}
.news_single .post_ttl {
  font-weight: 700;
  font-size: 30px;
}
.news_single .title_block {
  margin-bottom: 75px;
}
.news_single .content_block {
  margin-bottom: 50px;
  padding: 30px;
  box-sizing: border-box;
  background-color: #FFF;
  line-height: 1.8;
}
.news_single .content_block p {
  font-size: 15px;
}
.news_single .content_block img {
  vertical-align: top;
}
.news_single .content_block h1 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 45px;
}
.news_single .content_block h2 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 30px;
}
.news_single .content_block h3 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 25px;
}
.news_single .content_block h4 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 20px;
}
.news_single .btn_block {
  text-align: center;
}
.news_single .btn_block a {
  display: inline-block;
  padding: 15px 25px;
  color: #333;
  border: 2px solid #333;
  transition: .5s;
}
.news_single .btn_block a:hover {
  color: #FFF;
  background-color: #333;
}
/* news single end */

/* responsive */
@media screen and (max-width: 599px) {
  .news_single .content_block h1 {
    font-size: 35px;
  }
  .news_single .content_block h2 {
    font-size: 25px;
  }
  .news_single .content_block h3 {
    font-size: 20px;
  }
  .news_single .content_block h4 {
    font-size: 18px;
  }
  .news_all .post_info {
    width: 100%;
    padding: 0;
  }
  .news_all .post_ttl {
    width: 100%;
  }
  .news_all .post_info .time {
    display: inline-block;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #C7A051;
  }
}
/* responsive end */