* {
  box-sizing: border-box;
}
/* タブスタイル */
    .tabs {
      display: grid;
      grid-template-columns: repeat(4, 1fr); /* ← 4等分 */
      gap: 12px;
      margin: 10px 0 30px 0;
      width: 100%;
      /* flex-wrap: wrap;
      border: 1px solid;
      width: 100%; */
    }

    .tab {
      border: none;
      /* background-color: transparent; */
      background-color: #E5E5E5;
      /* color: #666; */
      padding: 5px 16px;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s, color 0.3s, border-color 0.3s;
      font-size: 13px;
      font-weight: bold;
      width: 100%;
      text-align: center;
    }


    .tab.active, .tab:hover{
      color: #fff;
    }
    
    .tab-all:hover, .tab-all.active  {
      background-color: #97A8B6;
    }
    
    .tab-event:hover, .tab-event.active {
      background-color: #F68645;
    }

    .tab-link:hover, .tab-link.active {
      background-color: #4E8ED2;
    }

    .tab-case:hover, .tab-case.active {
      background-color: #F8C017;
    }

    .tab-info:hover, .tab-info.active {
      background-color: #5FC6D0;
    }

    .tab-other:hover, .tab-other.active {
      background-color: #FD9B91;
    }

    /* お知らせリスト */
    ul.news-list {
      list-style: none!important;
      width: 100%;
      display: block;
      /* padding: 0;
      margin: 0; */
    }
    .news-list li{
      list-style: none!important;
    }

    /* .news_list{
      width: 100%;
      display: block;
      border: 1px solid;
    } */

    .news-item {
      padding: 1em;
      border-bottom: 1px solid #e1e1e1;
      /* font-size: 14px; */
      /* display: flex; */
      /* position: relative; */ 
      /* display: -webkit-flex; */
      display: flex;
      align-items: center!important;
      /* -webkit-justify-content: center;
      justify-content: center;
      -webkit-align-items: center; */
    }

    .news-item a {
      width: calc(100% - 257px);
      display: inline-block!important;
      box-sizing: border-box;
    }

    .news-item .date {
      color: #6a6a6a;
      font-weight: bold!important;
      margin-right: 50px;
      vertical-align: top!important;
    }


    .label {
      font-size: 12px;
      font-weight: bold;
      padding: 3px 0;
      border-radius: 5px;
      color: white;
      margin-right: 12px;
      width: 110px!important;
      height: 22px;
      display: inline-block;
      text-align:center;
      vertical-align: top!important;
    }

    .label-event { background-color: #F68645; }
    .label-link { background-color: #4E8ED2; }
    .label-case { background-color: #F8C017; }
    .label-info { background-color: #5FC6D0; }
    .label-other { background-color: #FD9B91; }

    .new_icon{
      color: #F40D0D;
      font-weight: bold!important;
      margin-left: 5px;
    }

/* 画面幅が428px以下の場合 */
@media screen and (max-width: 428px) {
  /* タブ */
  .tabs {
    grid-template-columns: repeat(2, 1fr); /* ← 2等分 */
    gap: 8px;
  }
  
  .tab {
    padding: 5px 5px;
    border-radius: 4px;
    font-size: 13px;
  }

  /* ニュース一覧 */
  .news-item {
    padding: 1em;
    display: block;
    width: 100%;
  }

  .news-item a {
    width: 100%;
    display: block;
    margin-top: 10px;
  }

  .news-item .date {
    margin-right: 20px;
  }

  .label {
    font-size: 12px;
    font-weight: normal;
    padding: 3px 0;
    border-radius: 4px;
    margin-right: 0px;
    width: 100px!important;
    height: 22px;
    display: inline-block;
    text-align:center;
  }

}

/* ページネーション */
#pagination {
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
  }

  #pagination button {
    margin: 0 4px;
    padding: 6px 12px;
    border: 1px solid #ccc;
    background: white;
    cursor: pointer;
    border-radius: 5px;
  }

  #pagination button.active {
    background: #f6b059;
    color: white;
    font-weight: bold;
  }

  #pagination button.disabled {
    opacity: 0.5;
    cursor: default;
  }

