.news-wrap {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  padding: 43px 0 105px;
}
.news-wrap figure {
  margin-bottom: 0;
}
@media screen and (max-width: 959px) {
  .news-wrap {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .news-wrap {
    padding: 30px 0 60px;
  }
}

.news-main {
  width: 100%;
  max-width: 920px;
}
.news-main .c-pagination {
  margin-top: 47px;
}

.news-list {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 30px;
}

.news-article {
  position: relative;
}
.news-article--archive {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  transition: 0.2s;
}
.news-article--archive:hover {
  background-color: #edfaeb;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.news-article--archive a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 21px 40px 57px;
}
.news-article--single {
  position: relative;
  border: solid 1px #cecccc;
  padding: 40px 40px 100px;
}
.news-article__meta {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.news-article__cat {
  position: relative;
  background: linear-gradient(to left, #4dc810, #009220);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-left: -50px;
  margin-right: 1em;
  padding: 2px 11px 2px 12px;
  white-space: nowrap;
}
.news-article__cat::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  border-top: solid 5px #005813;
  border-right: solid 5px #005813;
  border-bottom: solid 5px transparent;
  border-left: solid 5px transparent;
}
.news-article__time {
  color: #36b02b;
  font: 700 16px "Lato", sans-serif;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.news-article__ttl {
  border-bottom: solid 3px #f5f5f5;
  font-size: 28px;
  font-feature-settings: "palt";
  letter-spacing: 0.12em;
  line-height: 1.5833333333;
  padding-bottom: 7px;
  margin-bottom: 30px;
  transition: 0.2s;
}
.news-article--archive:hover .news-article__ttl {
  border-color: #c6c6c6;
}
.news-article--single .news-article__ttl {
  border-color: #36b02b;
  font-weight: 700;
}
.news-article__body {
  display: flex;
}
.news-article__thumb {
  flex: 0 0 300px;
  padding-top: 8px;
}
.news-article__thumb img {
  display: block;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-article__excerpt {
  font-feature-settings: "palt";
  letter-spacing: 0.12em;
  margin-left: 32px;
  padding-bottom: 30px;
}
.news-article__more {
  position: absolute;
  bottom: 30px;
  right: 45px;
  width: 200px;
}
.news-article__more .c-button {
  height: 50px;
  font-size: 16px;
}
.news-article__more .c-button::after {
  right: 10px;
}
.news-article__share {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100px;
  background: #197211;
  padding: 0 40px;
}
.news-article__share-ttl {
  display: flex;
  align-items: center;
  color: #fff;
  font: 500 22px "Lato", sans-serif;
  letter-spacing: 0.11em;
  margin: 0 19px 0 0;
}
.news-article__share-ttl::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #fff;
  margin-left: 8px;
}
.news-article .addtoany_list {
  display: flex;
  -moz-column-gap: 9px;
       column-gap: 9px;
}
.news-article .addtoany_list a {
  transition: opacity 0.2s ease;
}
.news-article .addtoany_list a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 750px) {
  .news-article--archive a {
    padding: 15px 20px 30px;
  }
  .news-article--single {
    padding: 20px 20px 50px;
  }
  .news-article__meta {
    margin-bottom: 10px;
  }
  .news-article__cat {
    font-size: 14px;
    letter-spacing: 0.04em;
    margin-left: -30px;
    padding: 0px 8px;
  }
  .news-article__cat::after {
    border-width: 4px;
  }
  .news-article__time {
    color: #36b02b;
    font: 700 16px "Lato", sans-serif;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .news-article__ttl {
    font-size: 20px;
    letter-spacing: 0.12em;
    padding-bottom: 5px;
    margin-bottom: 20px;
  }
  .news-article__body {
    display: block;
  }
  .news-article__thumb {
    position: relative;
    width: 100%;
    padding-top: 66.66%;
    margin-bottom: 10px;
  }
  .news-article__thumb img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
  .news-article__excerpt {
    font-size: 14px;
    letter-spacing: 0.12em;
    margin-left: 0;
    margin-bottom: 10px;
    padding-bottom: 0;
  }
  .news-article__more {
    position: static;
    width: 100%;
  }
  .news-article__more .c-button {
    height: 50px;
    font-size: 14px;
    margin: 0 auto;
  }
  .news-article__share {
    height: 50px;
    padding: 0 10px;
  }
  .news-article__share-ttl {
    font-size: 16px;
    letter-spacing: 0.11em;
    margin: 0 10px 0 0;
  }
  .news-article__share-ttl::after {
    width: 20px;
    margin-left: 5px;
  }
  .news-article .addtoany_list {
    -moz-column-gap: 8px;
         column-gap: 8px;
    line-height: 30px !important;
  }
  .news-article .addtoany_list a img {
    width: 30px;
    height: 30px;
  }
}

.news-sidebar {
  flex: 0 0 250px;
}
@media screen and (max-width: 959px) {
  .news-sidebar {
    width: 100%;
    margin-top: 40px;
  }
}

.news-sidebar-search__input-wrap {
  position: relative;
  display: flex;
  width: 100%;
  height: 50px;
  background: #f5f5f5;
}
.news-sidebar-search input[name=s] {
  width: 100%;
  height: 100%;
  padding: 0 0 0 12px;
}
.news-sidebar-search button[type=submit] {
  flex: 0 0 58px;
  background: url(../img/common/icon-search.png) center/38px no-repeat;
}

.news-sidebar-ranking {
  margin-top: 22px;
}
.news-sidebar-ranking__ttl {
  display: flex;
  align-items: center;
  border-bottom: solid 4px #36b02b;
  font-size: 18px;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.news-sidebar-ranking__ttl::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/news/icon-ranking-ttl.png) center/contain no-repeat;
  margin-right: 11px;
}
.news-sidebar-ranking__list {
  counter-reset: c;
}
@media screen and (max-width: 959px) {
  .news-sidebar-ranking__list {
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media screen and (max-width: 750px) {
  .news-sidebar-ranking__list {
    display: block;
  }
  .news-sidebar-ranking__ttl {
    border-width: 3px;
    font-size: 16px;
    letter-spacing: 0.04em;
    margin-bottom: 15px;
    padding-bottom: 5px;
  }
  .news-sidebar-ranking__ttl::before {
    width: 18px;
    height: 18px;
    margin-right: 10px;
  }
}

.news-sidebar-ranking-item {
  width: 100%;
  counter-increment: c;
}
.news-sidebar-ranking-item:not(:last-child) {
  border-bottom: dashed 1px #b2b2b2;
  margin-bottom: 20px;
  padding-bottom: 23px;
}
.news-sidebar-ranking-item a {
  transition: opacity 0.2s ease;
}
.news-sidebar-ranking-item a:hover {
  opacity: 0.7;
}
.news-sidebar-ranking-item__img {
  position: relative;
  width: 100%;
  height: 167px;
  margin-bottom: 3px;
}
.news-sidebar-ranking-item__img::before {
  content: counter(c, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font: 500 20px "Lato", sans-serif;
  letter-spacing: 0.04em;
}
.news-sidebar-ranking-item__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-sidebar-ranking-item:nth-child(1) .news-sidebar-ranking-item__img::before {
  background-color: #ffeb00;
  color: #000;
}
.news-sidebar-ranking-item:nth-child(2) .news-sidebar-ranking-item__img::before {
  background-color: #36b02b;
  color: #fff;
}
.news-sidebar-ranking-item:nth-child(3) .news-sidebar-ranking-item__img::before {
  background-color: #000;
  color: #fff;
}
.news-sidebar-ranking-item__ttl {
  font-size: 16px;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  line-height: 1.75;
  text-decoration: underline;
  text-underline-offset: 9px;
}
@media screen and (max-width: 959px) {
  .news-sidebar-ranking-item:not(:last-child) {
    border-bottom: none;
  }
  .news-sidebar-ranking-item__img {
    padding-top: 66.66%;
  }
  .news-sidebar-ranking-item__img img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  .news-sidebar-ranking-item__img::before {
    z-index: 1;
  }
}
@media screen and (max-width: 750px) {
  .news-sidebar-ranking-item:not(:last-child) {
    border-bottom: dashed 1px #b2b2b2;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .news-sidebar-ranking-item a {
    display: flex;
  }
  .news-sidebar-ranking-item__img {
    flex: 0 0 120px;
    height: 80px;
    padding-top: 0;
  }
  .news-sidebar-ranking-item__img::before {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  .news-sidebar-ranking-item__ttl {
    font-size: 14px;
    letter-spacing: 0.06em;
    text-underline-offset: 5px;
    margin-left: 10px;
  }
}

.news-sidebar-categories {
  margin-top: 33px;
}
.news-sidebar-categories__ttl {
  display: flex;
  align-items: center;
  border-bottom: solid 4px #36b02b;
  font-size: 18px;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  padding-bottom: 10px;
}
.news-sidebar-categories__ttl::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 16px;
  background: url(../img/news/icon-category-ttl.png) center/contain no-repeat;
  margin-right: 12px;
}
.news-sidebar-categories__list li a {
  position: relative;
  display: block;
  font-size: 16px;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  line-height: 1.875;
  padding: 0 30px 0 10px;
  transition: opacity 0.2s ease;
}
.news-sidebar-categories__list li a:hover {
  opacity: 0.7;
}
.news-sidebar-categories__list li a::after {
  content: "";
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 11px;
  height: 17px;
  background: url(../img/news/cat-arrow.svg) center/contain no-repeat;
  transition: 0.2s;
}
.news-sidebar-categories__list li a:hover::after {
  right: 4px;
}
.news-sidebar-categories__list > li {
  border-bottom: dashed 1px #b2b2b2;
  padding: 15px 0;
}
.news-sidebar-categories__list > li ul > li a {
  padding: 0 30px 0 26px;
}
.news-sidebar-categories__list > li ul > li a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 10px;
  height: 2px;
  background: #36b02b;
}
@media screen and (max-width: 750px) {
  .news-sidebar-categories {
    margin-top: 22px;
  }
  .news-sidebar-categories__ttl {
    border-width: 3px;
    font-size: 16px;
    letter-spacing: 0.04em;
    padding-bottom: 5px;
  }
  .news-sidebar-categories__ttl::before {
    width: 16px;
    height: 16px;
    margin-right: 10px;
  }
  .news-sidebar-categories__list li a {
    font-size: 14px;
    letter-spacing: 0.04em;
    transition: opacity 0.2s ease;
  }
  .news-sidebar-categories__list li a:hover {
    opacity: 0.7;
  }
  .news-sidebar-categories__list li a::after {
    right: 9px;
    width: 9px;
    height: 15px;
  }
  .news-sidebar-categories__list li a:hover::after {
    right: 4px;
  }
  .news-sidebar-categories__list > li {
    padding: 12px 0;
  }
  .news-sidebar-categories__list > li ul > li a {
    padding: 0 30px 0 24px;
  }
  .news-sidebar-categories__list > li ul > li a::before {
    width: 8px;
  }
}

.news-author {
  margin-top: 80px;
  font-feature-settings: "palt";
}
.news-author__ttl {
  background: #197211;
  color: #fff;
  font-size: 24px;
  letter-spacing: 0.12em;
  padding: 6px 0 6px 1.5em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .news-author {
    margin-top: 40px;
  }
  .news-author__ttl {
    font-size: 18px;
    letter-spacing: 0.12em;
    padding: 3px 0;
  }
}

.news-author-item {
  display: flex;
  background: #edfaeb;
  color: #000;
  padding: 28px 40px 33px;
}
.news-author-item__img {
  flex: 0 0 200px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
}
.news-author-item__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-author-item__txt {
  flex: 0 0 calc(100% - 200px);
  padding: 18px 0 0 43px;
}
.news-author-item__name {
  font-size: 24px;
  letter-spacing: 0.12em;
  line-height: 1.6;
  margin-bottom: 3px;
}
.news-author-item__intro {
  font-size: 16px;
  letter-spacing: 0.12em;
  line-height: 1.875;
  margin-bottom: 23px;
}
.news-author-item__sns-list {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 9px;
       column-gap: 9px;
}
.news-author-item__sns-list a {
  transition: opacity 0.2s ease;
}
.news-author-item__sns-list a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 750px) {
  .news-author-item {
    display: block;
    padding: 15px 20px 20px;
  }
  .news-author-item__img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }
  .news-author-item__img img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .news-author-item__txt {
    width: 100%;
    padding: 15px 0 0;
  }
  .news-author-item__name {
    font-size: 18px;
    letter-spacing: 0.12em;
    margin-bottom: 3px;
    text-align: center;
  }
  .news-author-item__intro {
    font-size: 14px;
    letter-spacing: 0.12em;
    margin-bottom: 15px;
  }
  .news-author-item__sns-list {
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
  .news-author-item__sns-list img {
    width: 30px;
    height: 30px;
  }
}

.news-pagenav {
  margin-top: 59px;
}
@media screen and (max-width: 750px) {
  .news-pagenav {
    margin-top: 30px;
  }
}

.news-related {
  margin-top: 80px;
  padding-bottom: 49px;
}
.news-related__ttl {
  border: solid 2px #36b02b;
  color: #36b02b;
  font-size: 24px;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  margin-bottom: 30px;
  padding: 9px 0;
  text-align: center;
}
.news-related__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 959px) {
  .news-related__list {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media screen and (max-width: 750px) {
  .news-related {
    margin-top: 40px;
    padding-bottom: 0;
  }
  .news-related__ttl {
    font-size: 20px;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    padding: 4px 0;
  }
  .news-related__list {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
}

.news-related-item a {
  transition: opacity 0.2s ease;
}
.news-related-item a:hover {
  opacity: 0.7;
}
.news-related-item__thumb {
  margin-bottom: 5px;
  position: relative;
}
.news-related-item__thumb::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: calc(100% * 0.6678571429);
}
.news-related-item__thumb img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-related-item__meta {
  margin-bottom: 2px;
}
.news-related-item__meta time {
  color: #36b02b;
  font: 700 14px "Lato", sans-serif;
  letter-spacing: 0.04em;
}
.news-related-item__ttl {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 18px;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  line-height: 1.6666666667;
  text-decoration: underline;
  text-underline-offset: 10px;
  padding-bottom: 5px;
}
@media screen and (max-width: 750px) {
  .news-related-item a {
    display: flex;
  }
  .news-related-item__thumb {
    flex: 0 0 120px;
    height: 80px;
    margin-bottom: 0;
  }
  .news-related-item__txt {
    margin-left: 10px;
  }
  .news-related-item__meta {
    margin-bottom: 0;
    line-height: 1.5;
  }
  .news-related-item__meta time {
    font-size: 12px;
  }
  .news-related-item__ttl {
    font-size: 14px;
    letter-spacing: 0.06em;
    text-underline-offset: 5px;
  }
}
