@charset "utf-8";
.news {
  padding-top: clamp(5rem, 1.667rem + 6.94vw, 10rem);
  padding-bottom: clamp(7.5rem, 2.083rem + 11.28vw, 15.625rem);
}
.news__inner {
      padding-left: clamp(1.25rem, -5.917rem + 14.93vw, 12rem);
    padding-right: clamp(1.25rem, -9.917rem + 23.26vw, 18rem);
}
.news__container {
      display: flex;
    column-gap: clamp(2.5rem, 0.167rem + 4.86vw, 6rem);
}
.news__left {
        width: clamp(8.75rem, 6.583rem + 4.51vw, 12rem);
    min-width: 140px;
}
.archive__title {
      height: 23px;
    font-size: 15px;
    font-weight: 700;
    padding-left: 16px;
    border-left: 6px solid #000;
    display: flex;
    align-items: center;
}
.news__left section {
      margin-top: 44px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.news__left article {
      padding-bottom: 20px;
    border-bottom: 1px solid #000;
}
.news__left article a {
      font-size: 16px;
    font-weight: 700;
    transition: all 0.5s;
}
.news__left article a:hover {
  opacity: 0.5;
}
.news__right {
  width: 100%;
}
.news__cate {
      display: flex;
    align-items: center;
    column-gap: clamp(1.25rem, 0.417rem + 1.74vw, 2.5rem);
    margin-bottom: 20px;
}
.news-cate__btn {
      padding: 10px clamp(1rem, 2.08vw, 2.5rem);
    border: 1px solid #000;
    line-height: 1;
    border-radius: 23px;
    transition: all 0.5s;
}
.news__cate section {
      display: flex;
    align-items: center;
    column-gap: clamp(1.25rem, 0.417rem + 1.74vw, 2.5rem);
      flex-wrap: wrap;
    row-gap: 20px;
}
.news__cate section article  {
    padding: 10px clamp(1rem, 2.08vw, 2.5rem);
    border: 1px solid #000;
    line-height: 1;
    border-radius: 23px;
  transition: all 0.5s;
}
.news__cate section article:hover {
  opacity: 0.5;
}
.news__block section article {
      padding-top: 40px;
        padding-bottom: clamp(0.875rem, 0.125rem + 1.56vw, 2rem);
    border-bottom: 1px solid #000;
  cursor: pointer;
  transition: all 0.5s;
}
.news__block section article:hover {
    opacity: 0.5;
}
.newsItemBottom {
        display: flex;
    align-items: center;
  position: relative;
}
.newsItemBottom::before {
  background-color: #000;
  position: absolute;
  top: 50%;
  right: 0;
  width: 25px;
  height: 1px;
  margin-top: 0px;
  content: "";
}
.newsItemBottom::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  content: "";
  display: inline-block;
  vertical-align: middle;
}
.newsItemTime {
      padding-right: clamp(1rem, 2.08vw, 2.5rem);
    border-right: 1px solid #000;
    font-size: clamp(0.875rem, 0.625rem + 0.52vw, 1.25rem);
    font-weight: 700;
    line-height: 1.4;
}
.newsItemTit {
      font-size: clamp(0.875rem, 0.625rem + 0.52vw, 1.25rem);
    font-weight: 700;
    padding-left: clamp(1rem, 2.08vw, 2.5rem);
    padding-right: 20px;
    line-height: 1.4;
}

/*ページネーション*/
.webgene-pagination {
    width: 100%;
  margin-top: 56px;
}
.webgene-pagination>ul {
    display: flex;
    padding: 0;
      flex-wrap: wrap;
    row-gap: 16px;
}
.webgene-pagination>ul>li {
        display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0 16px;
  color: #909090;
    transition: all .7s;
}
.number>a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(1.25rem, 1rem + 0.52vw, 1.625rem);
    color: #909090;
    transition: all .7s;
}
.next a,
.prev a {
        display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(1rem, 0.833rem + 0.35vw, 1.25rem);
      padding: 11px 7px;
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    transition: all .7s;
}
.webgene-pagination>ul>li>a:hover {
  color: #000;
}
.next a:hover {
  background-color: #fff;
  color: #000;
}
.prev a:hover {
  background-color: #fff;
  color: #000;
}

@media (max-width: 767px) {
  .news__inner {
    padding: 0 40px;
  }
  .news__container {
        flex-direction: column-reverse;
    row-gap: 120px;
  }
  .news__left {
        min-width: unset;
    width: 100%;
  }
  .news__cate {
        flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
  }
  .newsItemBottom::before {
    width: 18px;
  }
  .newsItemBottom::after {
    width: 9px;
    height: 9px;
    margin-top: -4px;
  }
}
  
@media (max-width: 389px) {
  .news__inner {
    padding: 0 16px;
  }
  .news__cate section {
    column-gap: 10px;
  }
  .newsItemTime {
    padding-right: 10px;
  }
  .newsItemTit {
    padding-left: 10px;
  }
  .newsItemBottom::before {
    width: 14px;
  }
  .newsItemBottom::after {
    width: 7px;
    height: 7px;
    margin-top: -3px;
  }
}