.boxContainerNCol .boxContainerNColBox .boxContainerNColThumb {
  height: 100px;
}

@media screen and (max-width: 559px) {

  .boxContainerNCol .boxContainerNColBox .boxContainerNColThumb {
    height: 150px;
  }

}

.boxContainerNColBox p:nth-of-type(1) { /* 2022.03.08 日付の文字色調整 */
  color: #7F7F7F;
}

.boxContainerNColBox p:nth-of-type(2) { /* 2022.03.08 ブログトップの説明文を非表示化 */
  display: none;
}

.boxContainerNColBox p.pagecss_quotation_source { /* 2022.05.25 記事の引用元を表示（p:nth-of-type(2)のdisplay:none;で非表示になってしまうので、p.pagecss_quotation_sourceで明示的に表示） */
  display: block;
  margin-top: 0.5rem;
  color: #e54144;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 2.0rem;
  text-indent: -1.5em;
  padding-left: 1.5em;
}

/* 絞り込み機能追加 */

.ps_lead01 {
  display: none;
  margin-bottom: 3rem;
}

.ps_lead01[data-blogType="ps_all"] {
  display: block;
}

.blogTypeListWrapper {
  padding: 3rem 0 2rem;
  background-color: #ffffff;
  z-index: 3;
  margin: -2rem 0 1rem;
}

.blogTypeListWrapper {
  position: sticky;
  top: 6.9rem;
}

@media (min-width: 1200px) {

.blogTypeListWrapper {
  top: 10.9rem;
}

}

.blogTypeList {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1.6rem 1.6rem;
  margin: 0;
}

.blogTypeList.fixed {
  position: fixed
}

.blogTypeSelectWrapper {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.blogTypeSelectWrapper::after {
  position: absolute;
  right: 2.0rem;
  width: 1rem;
  height: 0.7rem;
  background-color: #cccccc;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
  pointer-events: none;
}

.blogTypeSelect {
  padding: 1.5rem 2.4rem;
  width: 100%;
  border-radius: 0.2rem;
  border: 1px solid #d9d9d9;
  appearance: none;
  min-width: 230px;
  color: #000000;
  background-color: #fff;
  font-size: 1.5rem;
  line-height: 2.5rem;
}

.blogTypeSelect option {
  font-size: 1.5rem;
  line-height: 2.5rem;
}
  
.blogTypeList .blogListType {
  margin: 0;
  cursor: pointer;
}

.blogListType {
  font-weight: 400;
  padding: 0.6rem 1.6rem 0.7rem;
  border-radius: 0.5rem;
	text-align: center;
  z-index: 2;
  flex-shrink: 0;
  display: block;
  position: relative;
  color: #000000;
  border: 1px solid #1a1a1a;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}

.blogTypeList .blogListType.selected {
  color: #ffffff;
  background-color: #000000;
  cursor: auto;
}

.blogTypeList .blogListType:hover {
  color: #ffffff;
  background-color: #000000;
}

