@charset "UTF-8";
/* CSS Document */
.news{
  margin-bottom: 10%;
  padding-top: 15%;
}
.news-title{
 
  padding: 4%;
  max-width: 1200px;
  
  margin: 0 auto;
  font-size: 20px;
  display: flex;
  flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  border-top: dotted #3f96d2 2px;
  border-bottom: dotted #3f96d2 2px;
}
.news-title p{
  padding-left: 20%;
}
.news-title time{
  color: #3f96d2;
}
.news-img img{
  padding-top: 6%;
 width: 811px;
  
}
.news-text{
  margin:50px auto;
  max-width: 800px;
  font-weight: 400;
  font-size: 15px;
  text-align: left;
}
.button_wrpper a{
  background-color: #3f96d2;
  font-size: 20px;
  font-weight: 600;
  color: #fff; /* 文字色 */
  padding: 16px 98px; /* 上下の余白、左右の余白 */
  text-decoration: none; /* デフォルトで入るリンクの下線を消す */
  border-radius: 35px; /* 角を丸くする */
}
@media screen and (max-width: 676px) {
  .news-title{
     font-size: 15px;
    flex-direction: column;
   
  }
  .news-title p{
    padding-left: 0;
   
  }
  .news-img img{
    width: 97%;
    
  }
  .news-text{
    padding: 0 10px;
    font-size: 13px;
  }
  .button_wrpper a{
  font-size: 13px;
  font-weight: 600;
  padding: 10px 80px; /* 上下の余白、左右の余白 */
  
}
  
}