@charset "utf-8";
.section--news{
    padding: 100px 15px 60px;
  }
  
  .news__icon{
    width: 117px;
    object-fit: cover;
  }
  .news__titlecontents{
    display: flex;
    gap:30px;
  }

  .news__item{
    width: 327px;
    margin-top: 20px;
    border-bottom: 1px solid;
    padding-bottom: 10px;
    width: 100%;
  
  }
  
  .news__date{
    font-family: Inter;
    font-size: 1.3rem;
    line-height: 16px; 
    font-weight: 700;
  }
  .news__label{
    display: block;
    width: 41px;
    background-color: var(--primary--yellow);
    padding: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    margin-left: 9px;
  }
  .news__meta{
    display: flex;
  }
  .news__text{
    font-size: 1.2rem;
    line-height: 23px; 
    margin-top: 10px;
  }
  .btn--news{
    margin-top: 30px;
    
  }
 /* .pagenation */

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 30px 0;
  }
  .pagination__link {
    display: block;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
  }
  .pagination__link:hover {
    background: #f5f5f5;
  }
  .pagination__link.current {
    background: #333;
    color: #fff;
    border-color: #333;
  }
  .Archive__item{
    margin-top: 30px;
  }
  .Archive__n{
    font-size: 1.3rem;
    line-height: 25px; 
    letter-spacing: 3px;
  }
  .Archive__n::after {
    content: "";                    /* これがないと出てこない */
    display: inline-block;          /* または block */
    width: 10px;
    height: 10px;
    margin-left: 8px;               /* テキストとの間隔 */
    background-image: url("../images/voice__arrow.png");
    background-repeat: no-repeat;
    background-size: contain;       /* 矢印画像に合わせる */
    background-position: center;
  }
  
  @media screen and (min-width: 769px){
    .section--news{
      padding: 200px 60px 120px;
    }
    .news__icon {
      width: 270px;
      height: 183px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 40px;
    }
    

    .news__button a{
      display: flex;
      margin: 60px auto;
    }
    .news__item{
      display: flex;
      width: auto;
      gap: 20px;
      padding: 28px 30px;
      align-items: center;
      margin: 0;
    }
    .news__date{
    font-family: Inter;
    font-size: 1.8rem;
    line-height: 54px; 
    font-weight: 700;
    }
    .news__label{
      width: 83px;
      height: 36px;
      font-size: 1.2rem;
      font-weight: 700;
      line-height: 12px; 
      align-items: center;
      justify-content: center;
      display: flex
      ;
    }
    .news__meta{
      align-items: center;
      gap: 20px;
    }
    .news__text{
      font-size: 1.6rem;
      letter-spacing: 2px;
    }
  
    }

  