@charset "UTF-8";
/* レイアウトパターン：アイキャッチなし */
.pg-child-list {
  margin: 0.8rem 0.8rem 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px;
}
.pg-child-list .pg-child-list_item {
  list-style: none;
  border: 1px solid #ccc;
}
.pg-child-list .pg-child-list_item.pg-child-list_active .pg-child-list_link {
  background-color: #f7f7f7;
  pointer-events: none;
  color: #333;
}
.pg-child-list .pg-child-list_link {
  color: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 0.9em;
  text-decoration: none;
  padding: 1rem;
}
.pg-child-list .pg-child-list_link:hover {
  opacity: 0.8;
}
.pg-child-list .pg-child-list_link:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 10px;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.pg-child-list .pg-child-list_figure {
  display: none;
}
.pg-child-list .pg-child-list_text {
  line-height: 1.3;
}