.newsTtl {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
}
.newsTtl .inner {
  max-width: 100%;
}
.newsTtl .meta {
  margin-bottom: 22px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 5px;
}
.newsTtl .categoryList {
  display: flex;
  align-items: center;
  grid-gap: 8px;
}
.newsTtl .category {
  color: #48AC23;
  height: 28px;
}
.newsTtl .ttl {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  .newsTtl {
    padding-bottom: 80px;
    margin-bottom: 80px;
  }
  .newsTtl .inner {
    max-width: 930px;
  }
  .newsTtl .meta {
    margin-bottom: 46px;
    flex-direction: row;
    align-items: center;
    grid-gap: 50px;
  }
  .newsTtl .category {
    height: 32px;
  }
  .newsTtl .ttl {
    font-size: 32px;
    letter-spacing: 0.04em;
    line-height: 1.625;
  }
}

.newsBody {
  margin-bottom: 50px;
}
.newsBody .inner {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 35px;
}
.newsBody p {
  line-height: 2.2222;
}
.newsBody figure {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
.newsBody figure img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 769px) {
  .newsBody {
    margin-bottom: 75px;
    grid-gap: 75px;
  }
  .newsBody .inner {
    max-width: 930px;
  }
  .newsBody p {
    font-size: 18px;
  }
}

.newsBtmNav ul {
  width: calc(100% - 48px);
  max-width: 347px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.newsBtmNav .arrow {
  width: 56px;
  height: 56px;
  background-color: #F3F5F6;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.newsBtmNav .arrow img.hov {
  display: none;
}
.newsBtmNav .arrow.prev img {
  transform: scale(-1, 1);
}
.newsBtmNav .arrow:hover {
  background-color: #48AC23;
  opacity: 1;
}
.newsBtmNav .arrow:hover img {
  display: none;
}
.newsBtmNav .arrow:hover img.hov {
  display: inline;
}
.newsBtmNav .btn {
  width: 160px;
  background-color: #48AC23;
}
.newsBtmNav .btn:hover {
  background-color: #A7A9AC;
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .newsBtmNav .btn {
    font-size: 16px;
  }
}

.newsBtmNav .next_link.non a,
.newsBtmNav .next_link.non:hover a,
.newsBtmNav .previous_link.non a,
.newsBtmNav .previous_link.non:hover a {
  opacity: 0;
  pointer-events: none;
}

.newsBody .inner p a {
  text-decoration: underline;
}
.newsBody .inner p img{
height: auto;
}


.footer__breadcrumb li.term a span {
  display: inline-block;
  margin-right: 5px;
}

.footer__breadcrumb li.term a span:after {
  content: "/";
  margin-left: 5px;
}

.footer__breadcrumb li.term a:last-child span:after {
  content: unset;
  margin-left: 0px;
}