@charset "UTF-8";
/*******************************************************
記事個別のCSSをこちらに記載
********************************************************/
.p-entry__list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 6%;
}
.p-entry__list__item {
  width: 29.3%;
}
.p-entry__list__item__name {
  margin-bottom: 20px;
  padding-left: 12px;
  border-left: 5px solid #004098;
  font-size: 22px;
}
.p-entry__list__item__post {
  display: block;
  font-size: 16px;
}
@media screen and (max-width: 61.24em) {
  .pc-only {
    display: none !important;
  }
  .p-entry__list {
    gap: 30px 0;
  }
  .p-entry__list__item {
    width: 100%;
  }
  .p-entry__list__item__name {
    margin-bottom: 10px;
  }  
}

@media screen and (min-width: 61.25em) {
  .sp-only {
    display: none !important;
  }
}
