@charset "utf-8";
.blog {
    padding-top: clamp(5rem, 2.833rem + 4.51vw, 8.25rem);
}
.blog__inner {
  padding: 0 clamp(1.25rem, -9.917rem + 23.26vw, 18rem);
}
.blog__cate {
      display: flex;
    column-gap: clamp(1.25rem, 0.417rem + 1.74vw, 2.5rem);
  align-items: center;
}
.blog-cate__btn {
    padding: 10px clamp(1.5rem, 1rem + 1.04vw, 2.25rem);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(0.875rem, 0.708rem + 0.35vw, 1.125rem);
    font-weight: 500;
    background-color: transparent;
    color: #2E619A;
    border: 1px solid #2E619A;
    border-radius: 23px;
  transition: all 0.5s;
}
.blog-cate__btn:hover {
  background-color: #2E619A;
  color: #fff;
}
.blog__cate > section {
      display: flex;
    column-gap: clamp(1.25rem, 0.417rem + 1.74vw, 2.5rem);
  align-items: center;
      flex-wrap: wrap;
    row-gap: 8px;
}
.blog__cate > section >article > a {
  cursor:pointer;
    padding: 10px clamp(1rem, 0.167rem + 1.74vw, 2.25rem);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(0.875rem, 0.708rem + 0.35vw, 1.125rem);
    font-weight: 500;
    background-color: transparent;
    color: #2E619A;
    border: 1px solid #2E619A;
    border-radius: 23px;
    transition: all 0.5s;
}
.blog__cate > section >article > a:hover {
  background-color: #2E619A;
  color: #fff;
}

.blog__block {
  padding-top: clamp(2.5rem, -1.958rem + 9.29vw, 9.188rem);
}
.blog__block > section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
        column-gap: clamp(1.25rem, -1.167rem + 5.03vw, 4.875rem);
    row-gap: clamp(2rem, -0.833rem + 5.9vw, 6.25rem);
  position: relative;
  padding-bottom: clamp(11.25rem, 3.583rem + 15.97vw, 22.75rem);
}
.blog__block > section > article {
  transition: all 0.5s;
}
.blogItemImg img {
    aspect-ratio: 396/357;
  border-radius: 10px;
    object-fit: cover;
    height: auto;
}
.blogItemBottom {
    margin-top: 16px;
}
.blogItemText {
    display: flex;
    column-gap: 20px;
    align-items: center;
}
.blogItemTime {
        font-size: clamp(0.75rem, 0.583rem + 0.35vw, 1rem);
    font-weight: 500;
    color: #2E619A;
}
.blogItemCate {
    padding: 2px 20px;
    border: 1px solid #2E619A;
    color: #2E619A;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(0.625rem, 0.458rem + 0.35vw, 0.875rem);
    border-radius: 13px;
    line-height: 1;
}
.blogItemTit {
  font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
    font-weight: 500;
    margin-top: 16px;
  word-break: normal;
}
.blog__block > section > article:hover {
  opacity: 0.5;
}
/*ページネーション*/
.webgene-pagination {
        width: 100%;
    position: absolute;
    bottom: clamp(5.625rem, 1.875rem + 7.81vw, 11.25rem);
}
.webgene-pagination>ul {
    display: flex;
    justify-content: center;
    padding: 0;
      flex-wrap: wrap;
    row-gap: 16px;
  column-gap: 40px;
}
.number {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    transition: all .7s;
}
.number a{
    font-size: clamp(1.125rem, 0.875rem + 0.52vw, 1.5rem);
    font-weight: 700;
    color: #2E619A;
    transition: all .7s;
}
.number.selected a {
   border-bottom: 1px solid #2E619A;
}
.number>a:hover {
  border-bottom: 1px solid #2E619A;
}
.next,
.prev {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    width: 43px;
    height: 43px;
    background-color: #2E619A;
    border-radius: 50%;
    transition: all .7s;
}
.next {
  margin-left: clamp(0rem, -1.667rem + 3.47vw, 2.5rem);
}
.prev {
  margin-right: clamp(0rem, -1.667rem + 3.47vw, 2.5rem);
}
.next a,
.prev a {
    width: 43px;
    height: 43px;
        display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(0.75rem, 0.583rem + 0.35vw, 1rem);
  font-weight: 700;
  color: #fff;
    transition: all .7s;
}
.next:hover {
  opacity: 0.5;
}
.prev:hover {
  opacity: 0.5;
}

@media (max-width: 767px) {
  .blog__cate {
        flex-direction: column;
    align-items: flex-start;
    row-gap: 8px;
  }
  .blog__block > section {
    grid-template-columns: repeat(1, 1fr);
  }
  .blogItemTime {
    font-size: 16px;
  }
  .blogItemCate {
    font-size: 14px;
  }
  .blogItemTit {
    font-size: 16px;
  }
}