main {
  background-image: url(../img/bg-left.png), url(../img/bg-right.png);
  background-size: 20%, 20%;
  background-repeat: no-repeat, no-repeat;
  background-position: 0% 20%, 100% 80%;
}

.news-container {
  padding: 50px 0 100px 0;
  margin: 0 auto;
  width: 80%;
  max-width: 1200px;
}

.title {
  text-align: center;
}

.title h3 {
  margin-bottom: 20px;
}

.title img {
  margin-bottom: 50px;
  width: min(300/ 1200 * 56vw, 300px);
}

a {
  text-decoration: none;
  color: #333;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news {
  padding: 50px 0;
  background: #FFF7EA;
}

.news_list {
  width: 80%;
  margin: 0 auto;
}

.news_list_item {
  padding: 25px 0;
  border-bottom: 1px solid #E6E6E6;
}

.news_list_item:first-child {
  border-top: 1px solid #E6E6E6;
}

.news_list_item a {
  position: relative;
  display: flex;
  padding-right: 30px;
}

.news_list_date {
  font-size: 15px;
  display: flex;
  margin-right: 15px;
  align-items: center;
}

.news_item {
  background: #F6C6A2;
  border-radius: 14px;
  width: 6em;
  text-align: center;
  margin-left: 20px;
}

.arrow {
  width: 25px;
  height: 1px;
  background: #707070;
  position: absolute;
  top: 85%;
  right: 10%;
}

.arrow::after {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background: #707070;
  transform: rotate(45deg);
  position: absolute;
  right: 0px;
  bottom: 2px;
}


@media screen and (max-width: 1024px) {
  .news_list_item a {
    display: block;
  }
}

@media screen and (max-width: 800px) {
  main {
    background-size: 30%, 30%;
    background-position: 0% 10%, 100% 90%;
  }

  .news-container {
    padding: 50px 0 100px 0;
  }

  .title h3 {
    margin: 0 0 10px 0;
  }
  .news_list_item a {
    font-size: 14px;
  }
}

@media screen and (max-width: 430px) {
  .title img {
    margin-bottom: 50px;
    width: min(300/ 1200 * 100vw, 300px);
  }

  main {
    background-size: 40%, 40%;
  }

  .news-container {
    width: 90%;
  }

  .arrow {
    display: none;
  }

  .news_list_item a {
    padding-right: 0;
  }
}