@charset "UTF-8";
/*///////////////////////////////////////////////////////
	個別スタイル
///////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////
    変数設定
///////////////////////////////////////////////////////*/
/* custom style */
/*///////////////////////////////////////////////////////
    mixin設定
///////////////////////////////////////////////////////*/
.list__contents--wrapper {
  margin-top: 2rem;
}
.list__contents--wrapper .list__contents--list {
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
  justify-content: space-between;
  gap: 4rem 0;
}
.list__contents--wrapper .list__contents--list .wp-block-post {
  flex: 0 1 100%;
  width: 100%;
}
.list__contents--wrapper .list__contents--list .list__contents--item-link {
  padding: 0;
  border-bottom: none;
}
.list__contents--wrapper .list__contents--list .list__contents--item-image {
  margin-bottom: 2rem;
  border-radius: 0.3rem;
  box-shadow: 0 0 0.8rem 1px rgba(0, 0, 0, 0.16);
  position: relative;
  overflow: hidden;
}
.list__contents--wrapper .list__contents--list .list__contents--item-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.list__contents--wrapper .list__contents--list .list__contents--item-image::before {
  content: "";
  display: block;
  padding-top: 74.627%;
}
.list__contents--wrapper .list__contents--list .list__contents--item-categories {
  margin-top: 1.2rem;
}
.list__contents--wrapper .list__contents--list .list__contents--item-categories .list__contents--item-category {
  padding: 0.45rem 1.4rem;
  font-size: 1.2rem;
  line-height: 1.4165;
}
.list__contents--wrapper .list__contents--list .list__contents--item-title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4445;
  letter-spacing: 0.02em;
}
.list__contents--wrapper:has(.no__data) {
  margin-top: 5rem;
}

.component-pager {
  margin-top: 5rem;
}

@media screen and (min-width: 961px) {
  .list__contents--wrapper {
    margin-top: 4rem;
  }
  .list__contents--wrapper .list__contents--list {
    justify-content: flex-start;
    gap: 5rem 5.5rem;
  }
  .list__contents--wrapper .list__contents--list .wp-block-post {
    flex: 0 1 30%;
    width: 30%;
  }
  .list__contents--wrapper .list__contents--list .list__contents--item-link {
    grid-template-columns: 1fr;
  }
  .list__contents--wrapper .list__contents--list .list__contents--item-link:hover .list__contents--item-image img {
    width: 110%;
    height: 110%;
  }
  .list__contents--wrapper .list__contents--list .list__contents--item-link:hover .list__contents--item-title {
    color: #4bbdce;
  }
  .list__contents--wrapper .list__contents--list .list__contents--item-image img {
    transition: 0.3s ease width, 0.3s ease height;
  }
  .list__contents--wrapper .list__contents--list .list__contents--item-image::before {
    padding-top: 74.627%;
  }
  .list__contents--wrapper .list__contents--list .list__contents--item-categories {
    margin-top: 1.4rem;
    gap: 0.5rem 0.5rem;
  }
  .list__contents--wrapper .list__contents--list .list__contents--item-title {
    font-size: 2rem;
    line-height: 1.5;
    transition: 0.3s ease color;
  }
  .list__contents--wrapper .list__contents--list .list__contents--item-title::before {
    display: none;
  }
  .list__contents--wrapper:has(.no__data) {
    margin-top: 7rem;
  }
  .component-pager {
    margin-top: 6rem;
  }
}