@charset "utf-8";
/* CSS Document */
.section-news{
  margin: 120px auto 0;
  width: 60vw;
  max-width: 1260px;
}
.section-news ol{
  list-style: none;
}
.section-news oi li:first-child{
  border-top: solid 1px #999284;
}
.section-news ol li{
  display: flex;
  padding: 40px 0;
  border-bottom: solid 1px #999284;
  position: relative;
}
.section-news ol li time{
  font-size: 1.2rem;
  color: #999284;
}
.news-text{
  padding-left: 157px;
}
.news-text h3{
  font-size: 1.8rem;
  font-weight: 400;
}
.news-text h3::after{
  content: "";
  position: absolute;
  bottom: 40px;
  right: 55px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #999284;
  border-right: 1px solid #999284;
  transform: translate(0, -50%) rotate(45deg);
}
.news-btn{
  margin-top: 55px;
  text-align: right;
}
.news-btn a{
  display: inline-block;
  width: 153px;
  padding-right: 12px;
  padding-bottom: 15px;
  border-bottom: solid 1px #999284;
}
.news-btn a span{
  position: relative;
}
.news-btn a span::before{
  content: "";
  position: absolute;
  top: 50%;
  right: 115px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #999284;
  border-right: 1px solid #999284;
  transform: translate(0, -50%) rotate(45deg);
  transition: all .3s;
}
.news-btn:hover a span::before{
  right: 105px;
}
@media(max-width:1000px){
  .section-news{
    margin-top: 50px;
    min-width :328px; 
  }
  .section-news ol li{
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 0;
  }
  .section-news ol li time p{
    font-size: 1.2rem;
  }
  .news-text{
    padding-left: 0;
    padding-top: 10px;
  }
  .news-text h3{
    font-size: 1.4rem;
  }
  .news-text h3::after{
    bottom: 35px;
    right: 30px;
    width: 7px;
    height: 7px;
  }
  .news-btn{
    margin-top: 30px;
  }
  .news-btn a{
    width: 113px;
    padding-bottom: 10px;
  }
  .news-btn a span::before{
    right: 85px;
    width: 7px;
    height: 7px;
  }
  .news-btn:hover a span::before{
    right: 80px;
  }
  .news-btn a span{
    font-size: 1.2rem;
  }
}



























