.news_main {
  width: min(820px, 100%);
  margin: 0 auto;
}
.news_main .news_inner {
  border-bottom: 1px solid #8a6c58;
}
.news_main .news_inner .date {
  background-color: #8a6c58;
  color: #ffffff;
  display: inline-block;
  padding: 5px 16px;
  margin-bottom: 16px;
}
.news_main .news_inner h3 {
  font-size: 1.5rem;
  font-weight: 500;
  background-color: #feeee7;
  padding: 16px;
  color: #634d40;
}
@media screen and (max-width: 768px) {
  .news_main .news_inner h3 {
    font-size: 1.25rem;
  }
}
.news_main .news_inner .news_text_area {
  padding: 50px 0;
}
.news_main .back {
  display: inline-block;
  margin-top: 18px;
  padding-left: 18px;
  position: relative;
  color: #634d40;
  text-decoration: underline;
}
.news_main .back::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 8px;
  height: 16px;
  transform: rotate(-180deg);
  background-image: url(../../images/arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
