 
  /* ----------------------------

  各ページ設定

  1. PCサイズ（769px以上）
    1.1 article-list
    1.2 card
    1.3 pager
    
  2. SPサイズ（768px以下）

---------------------------- */

/* ---------------------------- */
/* 1. PCサイズ（769px以上）
/* ---------------------------- */

/* 1.1 article-list.html
/* ---------------------------- */
.title-wrapper{
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.icon-title{
    width: 40px;
    height: 100%;
    margin-right: 8px;
}
.lead{
  text-align: center;
  font-weight: 500;
}
.title{
    font-size: 30px;
    font-weight: bold;
    border-bottom: 2px solid #CF2620;
}
.lead{
    font-size: 18px;
}
.tag{
  margin-bottom: 10px;
}
.tag-wrapper{
  margin: 30px 40px 50px;
}
.tag-all{
  margin-top: 20px;
}


/* 1.2 card
/* ---------------------------- */
.wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}
.wrap a{
  text-decoration: none;
  color: #000;
}
.item {
  width: 31%;
  background-color: #fff;
  border: 1px solid #989898;
  box-shadow:2px 2px 4px #a1a1a1 ;
  margin-bottom: 20px;
}
.item-body{
  padding: 20px 24px;
}
.date{
  font-size: 12px;
  margin-bottom: 4px;
}
.item-title{
  margin-bottom: -10px;
}
.tag-item{
  font-size: 12px;
  padding:2px 8px;
  margin-bottom: 6px;
  margin-right: 10px;
  border-radius: 40px;
}


@media not all and (min-width: 768px) {
  .item {
    width: 100%;
  }

  .item:not(:last-child) {
    margin-bottom: 30px;
  }
  .title{
    font-size: 24px;
  }
  .lead{
    font-size:16px;
    font-weight: 500;
    margin-bottom: 50px;
  }
  .title-wrapper{
    margin-bottom: 25px;
  }
  .tag-wrapper{
    margin: 10px;
  }
  .tag-all{
    margin-top: 10px;
  }
}


/* 1.3 pager
  /* ---------------------------- */
.pager{
  text-align: center;
  margin-bottom: 80px;
}
.pager a{
  text-decoration: none;
  color: #000;
}
.pagination ul{
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.pagination a{
  display: inline-block;
  padding: 10px 18px;
  color: #222;
  margin: 4px;
}
.p1 a{
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  text-align: center;
  color: #CF2620;
}
.p1 a.in-active{
  border: 2px solid #CF2620;
  border-radius: 100%;
}
.p1 a.is-active{
  background-color: #CF2620;
  border-radius: 100%;
  color: #fff;
}
  