@charset "utf-8";
body {
  background-color: #F5F5F5;
}
.news {
      width: clamp(32.5rem, -5.75rem + 79.69vw, 89.875rem);
    margin-left: auto;
    padding-top: clamp(2.5rem, 0.833rem + 3.47vw, 5rem);
  padding-bottom: clamp(5rem, 3.333rem + 3.47vw, 7.5rem);
}
.news__inner {
  padding-right: clamp(1.25rem, -5.917rem + 14.93vw, 12rem);
}
.news__cate section {
      display: flex;
    column-gap: 20px;
  row-gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.news__cate section article a {
      padding: clamp(0.625rem, 0.417rem + 0.43vw, 0.938rem) clamp(1.25rem, -0.625rem + 3.91vw, 4.063rem);
    display: inline-block;
    border: 2px solid #2A60B6;
    border-radius: 35px;
    line-height: 1;
    color: #2A60B6;
    font-weight: 500;
    font-size: clamp(1rem, 0.833rem + 0.35vw, 1.25rem);
    transition: all 0.5s;
}
.news__cate section article a:hover {
  background-color: #2A60B6;
  color: #fff;
}
.news__block {
  margin-top: clamp(2.5rem, 0.208rem + 4.77vw, 5.938rem);
}
.news__block section {
      display: flex;
    flex-direction: column;
    row-gap: clamp(1.875rem, 0.625rem + 2.6vw, 3.75rem);
}
.news__block section article a {
      padding-bottom: clamp(0.625rem, 0.208rem + 0.87vw, 1.25rem);
    display: block;
    border-bottom: 1px dotted #02244C;
  transition: all 0.5s;
}
.news__block section article a:hover {
  opacity: 0.5;
}
.newsItemBottom {
      display: flex;
    column-gap: clamp(1.25rem, 0.417rem + 1.74vw, 2.5rem);
    align-items: flex-start;
}
.newsItemText {
      display: flex;
    align-items: center;
    column-gap: clamp(0.625rem, 0.375rem + 0.52vw, 1rem);
  min-width: clamp(12.5rem, 9.167rem + 6.94vw, 17.5rem);
}
.newsItemTime {
      font-size: clamp(0.875rem, 0.708rem + 0.35vw, 1.125rem);
    font-weight: 500;
    color: #84888D;
}
.newsItemCate {
      font-size: clamp(0.75rem, 0.583rem + 0.35vw, 1rem);
    font-weight: 500;
    color: #fff;
    background-color: #2A60B6;
        text-align: center;
    padding: clamp(0.25rem, 0.167rem + 0.17vw, 0.375rem) 20px;
  min-width: clamp(6.25rem, 3.5rem + 5.73vw, 10.375rem);
    border-radius: 18px;
}
.newsItemTit {
      font-size: clamp(1rem, 0.833rem + 0.35vw, 1.25rem);
    font-weight: 500;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

/*ページネーション*/
.webgene-pagination {
        width: 100%;
  margin-top: clamp(2.5rem, 5.21vw, 6.25rem);
}
.webgene-pagination>ul {
    display: flex;
    justify-content: center;
    padding: 0;
      flex-wrap: wrap;
    row-gap: 16px;
  column-gap: clamp(2rem, 1.667rem + 0.69vw, 2.5rem);
}
.number {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    transition: all .7s;
}
.number a{
    font-size: clamp(1.5rem, 1.167rem + 0.69vw, 2rem);
    font-weight: 700;
    color: #2A60B6;
    transition: all .7s;
}
.number.selected a {
   border-bottom: 1px solid #2A60B6;
}
.number>a:hover {
  border-bottom: 1px solid #2A60B6;
}
.next,
.prev {
        display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    width: 43px;
    height: 43px;
    background-color: #2A60B6;
    transition: all .7s;
    border-radius: 5px;
    transform: rotate(45deg);
}
.next {
  margin-left: clamp(1.25rem, 0.417rem + 1.74vw, 2.5rem);
}
.prev {
  margin-right: clamp(1.25rem, 0.417rem + 1.74vw, 2.5rem);
}
.next a,
.prev a {
    width: clamp(2.813rem, 2.354rem + 0.95vw, 3.5rem);
    height: clamp(2.813rem, 2.354rem + 0.95vw, 3.5rem);
        display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(0.75rem, 0.583rem + 0.35vw, 1rem);
  font-weight: 700;
  color: #fff;
  transform: rotate(-45deg);
    transition: all .7s;
}
.next:hover {
  opacity: 0.5;
}
.prev:hover {
  opacity: 0.5;
}

@media (max-width: 767px) {
  .news {
    width: 100%;
  }
  .news__inner {
    padding-left: 20px;
  }
  .news__cate section {
    column-gap: 8px;
  }
  .news__cate section article a {
    font-size: 14px;
  }
  .newsItemBottom {
        flex-direction: column;
    row-gap: 8px;
  }
  .number a {
    font-size: 22px;
  }
  .next, .prev {
        width: 32px;
    height: 32px;
  }
}