.title_news{
    width: 1200px;
    height: 200px;
    background-color: #556b2f;
  }
  
  .news_article{
    padding: 0 0 40px 0;
  }
  
  .news_article_list{
    width: 800px;
    margin: 0 auto 40px auto;
    background-color: #ffffff;
    box-shadow: 8px 8px 8px 0 rgb(0 0 0 / 20%), 10px 10px 20px 0 rgb(0 0 0 / 19%);;
    animation: animation-article 1s;
  }
  
  .news_article_list a{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    color: #333333;
  }
  
  .news_article_list a:hover{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    color: #333333;
    background-color: #feffc9;
  }
  
  .news_article_list_image{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;

  }
  
  .news_article_list_image img{
    width: 100%;
    height: auto;
  }
  
  .news_article_list_row{
    width: 550px;
    padding: 0 10px;
  }
  
  .news_article_list_title{
    width: 100%;
    height: 39px;
    display: -webkit-box;
    color: #682e23;
    line-height: 39px;
    font-weight: bold;
    border-bottom: solid 1px #682e23;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  
  .news_article_list_date{
    height: 20px;
    font-size: 0.8em;
    text-align: right;
  }
  
  .news_article_list_text{
    width: 100%;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
  
  .news_article_main{
    width: 800px;
    margin: 0 auto 20px auto;
    background-color: #ffffff;
    box-shadow: 8px 8px 8px 0 rgb(0 0 0 / 20%), 10px 10px 20px 0 rgb(0 0 0 / 19%);;
    animation: animation-article 1s;
  }
  
  .news_article_main_title{
    color: #ffffff;
    background-color: #682e23;
    font-size: 22px;
    font-weight: bold;
    padding: 10px 8px;
  }
  
  .news_article_main_date{
    height: 20px;
    padding: 3px 0 3px 10px;
  }
  
  .news_article_main_text{
    display: block;
    /* flex-direction: column; */
    height: auto;

    padding: 20px;
    font-size: 17px;
  }
  
  .news_article_main_text p{
    padding: 0 5px 10px 5px;;
    margin-bottom: 0;
    overflow-wrap: break-word;
  }
  
  .news_article_main_image{
    max-width: 100%;
    max-height: 400px;
    margin: 0 auto 10px auto;
  }
  
  .news_article_main_image:hover{
    cursor: zoom-in;
    opacity: 0.8;
  }
  
  .floatclear{
    clear: both;
  }

  /*ページネーション*/
.list_page{
    display: flex;
    justify-content: center;
    width: 800px;
    margin: 10px auto;
  }
  
  .page-item.active .page-link{padding:4px 10px;background-color:#682e23;border-color:#682e23;}
  .page-item.disabled .page-link{padding:4px 10px;border: 1px solid #682e23;}
  .page-item:hover .page-link{padding:4px 10px;color:#682e23;border: 1px solid #682e23;}
  .page-link{padding:4px 10px;color: #682e23;border: 1px solid #682e23;}
  .page-link:hover{background-color: #feffc9;}