@charset "utf-8";
.news {
      position: relative;
    z-index: 30;
}
.news__inner {
        padding-top: 80px;
    background-color: #fff;
    padding-left: clamp(1.25rem, -9.917rem + 23.26vw, 18rem);
    padding-right: clamp(1.25rem, -9.917rem + 23.26vw, 18rem);
}

.news__cate {
  display: flex;
  column-gap: clamp(1.25rem, 0.417rem + 1.74vw, 2.5rem);
}
.news-cate-btn {
      min-width: 127px;
    color: #E30074;
    font-weight: 700;
    background-color: #fff;
    border: 2px solid #E30074;
    border-radius: 27px;
    line-height: 1;
    text-align: center;
    padding: clamp(0.625rem, 0.333rem + 0.61vw, 1.063rem);
    transition: all .5s;
}
.news-cate__btn {
        transition: all .5s;
    color: #E30074;
}
.news-cate-btn:hover {
  background-color: #E30074;
}
.news-cate-btn:hover .news-cate__btn {
    color: #fff;
}
.news__cate > section {
      display: flex;
    column-gap: clamp(1.25rem, 0.417rem + 1.74vw, 2.5rem);
    flex-wrap: wrap;
}
.news__cate > section > article {
        min-width: 127px;
    color: #E30074;
    font-weight: 700;
    background-color: #fff;
    border: 2px solid #E30074;
    border-radius: 27px;
    line-height: 1;
    text-align: center;
    padding: clamp(0.625rem, 0.333rem + 0.61vw, 1.063rem);
    transition: all .5s;
}
.news__cate > section > article > a {
        transition: all .5s;
    color: #E30074;
}
.news__cate > section > article:hover {
  background-color: #E30074;
}
.news__cate > section > article:hover a {
  color: #fff;
}

.news__block {
    margin-top: 64px;
}
.news__block section {
  padding-bottom: clamp(10rem, 5.333rem + 9.72vw, 17rem);
      display: flex;
    flex-direction: column;
    row-gap: 32px;
  position: relative;
}
.news__item {
      display: flex;
    column-gap: clamp(1.25rem, 0.417rem + 1.74vw, 2.5rem);
}
.newsItemImg {
  width: 24%;
  overflow: hidden;
}
.newsItemImg img {
    aspect-ratio: 175/111;
    object-fit: cover;
  transition: all 0.5s;
}
.newsItemImg > img + span{
	display: none;
}
.newsItemText{
    width: 76%;
        display: flex;
    justify-content: space-between;
}
.newsItemText__top {
        display: flex;
    column-gap: 17px;
    align-items: center;
}
.newsItemTime {
        color: #EC3480;
    font-weight: 600;
  font-size: clamp(0.75rem, 0.667rem + 0.17vw, 0.875rem);
}
.newsItemCate {
        min-width: 85px;
    font-size: clamp(0.75rem, 0.667rem + 0.17vw, 0.875rem);
    font-weight: 600;
    color: #EC3480;
    background-color: #fff;
    border: 2px solid #EC3480;
    border-radius: 15px;
    line-height: 1;
    text-align: center;
    padding: clamp(0.25rem, 0.083rem + 0.35vw, 0.5rem) 12px;
}
.newsItemTit {
        margin-top: 17px;
    font-size: clamp(1rem, 0.917rem + 0.17vw, 1.125rem);
    font-weight: 600;
      overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.newsItemText-box__icon {
      display: flex;
    align-items: center;
  margin-left: 10px;
}
.blog__icon {
        min-width: 8px;
    width: clamp(0.5rem, 0.417rem + 0.17vw, 0.625rem);
  transition: all 0.5s;
}

.news__item:hover .blog__icon {
  transform: translateX(10px);
}
.news__item:hover .newsItemImg img {
  transform: scale(1.1);
}

/*ページネーション*/
.webgene-pagination {
        position: absolute;
    bottom: clamp(5rem, 1.667rem + 6.94vw, 10rem);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.webgene-pagination>ul {
    display: flex;
    padding: 0;
  justify-content: center;
    column-gap: 20px;
}
.number {
        display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    width: 42px;
    height: 46px;
    background-color: #fff;
    border: 2px solid #000;
    transition: .5s;
}
.number:hover{
     background-color: #EC3480;
    border: 2px solid #EC3480;
}
.number:hover a {
  color: #fff;
}
.number a{
    color: #000;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    transition: .5s;
}
.next,
.prev {
      display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    width: 42px;
    height: 46px;
      background-color: #EC3480;
    border: 2px solid #EC3480;
    transition: all 0.5s;
}
.next a {
  color: #fff;
      width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    transition: .5s;
}
.prev a {
  color: #fff;
      width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    transition: .5s;
}
.next:hover {
  opacity: 0.5;
}
.prev:hover {
  opacity: 0.5;
}


@media (max-width: 767px) {
  .news__cate {
        flex-direction: column;
    row-gap: 8px;
    align-items: flex-start;
  }
  .news__cate > section {
    column-gap: 8px;
  }
  .news__item {
    column-gap: 8px;
  }
  .newsItemImg {
    width: 35%;
  }
  .newsItemText {
    width: 65%;
  }
  .newsItemCate {
    font-size: 10px;
  }
  .newsItemTit {
    font-size: 14px;
  }
  .webgene-pagination>ul {
    column-gap: 10px;
  }
  .number {
        width: 32px;
    height: 40px;
  }
  .next, .prev {
        width: 32px;
    height: 40px;
  }
}

@media (max-width: 389px) {
  .newsItemText__top {
    column-gap: 8px;
  }
  .newsItemTime  {
    font-size: 10px;
  }
  .newsItemTit {
    font-size: 12px;
  }
  .blog__icon {
        width: 6px;
    min-width: 6px;
  }
}