{# 検索結果メッセージ #}
.hs-search-result-currentPage {
  margin: 3rem 0 0;
  color: #454545;
}

{# 検索結果 #}
.columnListing {
}

.columnListing__title {
  text-align: center;
  position: relative;
}

.columnListing__title::before {
  background-color: #0f3fa7;
    bottom: 0px;
    content: "";
    height: 4px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 5.5rem;
}


.columnListing__ul {
  display: grid;
  grid-template-columns: repeat(3 ,1fr);
  gap: 6rem 2rem;
  padding: 4rem 0;
}
.columnListing__li {
  border-radius: 4px;
  background: #FFF;
}

.columnListing__img{
  width: 100%;
  aspect-ratio: 16/9;
}
.columnListing__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.columnListing__box__date {
  color: #000;
}




.columnListing__box__text {
  color: #000;
}

.columnListing__title--h2 {
    padding-bottom: 1rem;
}



@media screen and (max-width: 768px) {
 .columnListing__ul {
  grid-template-columns: repeat(2, 1fr);
  }
  .hs-search-result-currentPage {
  margin: 3rem 0 0 0;
}




