@charset "UTF-8";
/* CSS Document */
.news {
  padding: 60px 0 100px;
}
@media (min-width: 769px) {
  .news {
    padding-top: 180px;
  }
  h3 {
    margin-bottom: 100px;
  }
}
.news-list {
  width: 80%;
  max-width: 800px;
  text-align: left;
  margin: 0 auto;
}
.news-list p {
  text-align: left;
}
.news-item {
  position: relative;
  margin-top: 15px;
  border-bottom: 1px solid #CDCDCD;
}
.news-item a:hover {
  opacity: 0.7;
}
.news-item-date {
  color: #F0A775;
  padding-bottom: 5px;
}
.news-item-info {
  font-weight: 500;
  color: #333333;
}
/*　くの字　*/
.arrow {
  position: absolute;
  top: 25px;
  right: 10px
}
.arrow::before {
  display: inline-block;
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #F0A775;
  border-right: 2px solid #F0A775;
}
.arrow.arrow-right::before {
  transform: rotate(45deg);
}
.news-item div {
  display: inline-block;
}
.news-content {
  width: 87%;
  margin-bottom: 20px;
}