.news-box__title {
  background-color: #b2a58f;
  padding: 200px 0 100px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .news-box__title {
    padding: 160px 0 80px;
  }
}
.news-box__title h1 {
  color: white;
  font-size: 6rem;
  font-weight: 900;
  line-height: 4.8rem;
  letter-spacing: 0.2rem;
}
@media only screen and (max-width: 768px) {
  .news-box__title h1 {
    font-size: 3rem;
    line-height: 3.4rem;
  }
}
.news-box__title h1 span {
  font-size: 2rem;
}

.news-list {
  width: 50%;
  margin: 50px auto;
}
@media only screen and (max-width: 768px) {
  .news-list {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .news-list .newslist-content-box {
    background-color: white;
  }
}
.news-list .newslist-content-box a {
  padding: 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #b2a58f;
  font-size: 2rem;
  color: #736357;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .news-list .newslist-content-box a {
    font-size: 2rem;
    line-height: normal;
  }
}
.news-list .newslist-content-box a .arrow {
  background-color: black;
  color: black;
  -webkit-transform: rotate(220deg);
          transform: rotate(220deg);
  height: 1em;
  width: 1px;
  margin-right: 20px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media only screen and (max-width: 768px) {
  .news-list .newslist-content-box a .arrow {
    margin-right: 0;
    margin-left: 10px;
  }
}
.news-list .newslist-content-box a .arrow::before {
  width: 0.2em;
  height: 0.2em;
}
.news-list .newslist-content-box a:hover .arrow {
  -webkit-transform: translateY(-10px) translateX(10px) rotate(220deg);
          transform: translateY(-10px) translateX(10px) rotate(220deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.news-list .newslist-content-box__daybox {
  font-weight: 900;
  font-size: 1.2rem;
  text-align: center;
  line-height: 3rem;
  color: #b2a58f;
}
@media only screen and (max-width: 768px) {
  .news-list .newslist-content-box__daybox {
    margin-right: 20px;
  }
}
.news-list .newslist-content-box__daybox span {
  font-size: 3.4rem;
  color: #736357;
}
.news-list .newslist-content-box__content-text {
  padding: 20px 40px;
  font-size: 2rem;
  color: #736357;
  line-height: 2;
}