@charset "UTF-8";
/*
* レイアウト
*/
#news {
  
}
#news .commonBgColor {
  width: 100%;
  background-color: #FFFFFF;
}



/*
* 投稿内容
*/
#postWrap {
  position: relative;
  margin: 0;
  padding: 0 0 100px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
#postWrap .wrap {
  position: relative;
  z-index: 2;
}
/* 日付・カテゴリー */
#postWrap .datecat {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 40px 0;
  padding: 0;
}
#postWrap .datecat .date {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}
#postWrap .datecat .cat {
  margin: 0;
  padding: 3px 15px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  background-color: #1B74C1;
  border-radius: 4px;
}
/* 投稿タイトル */
#postWrap h2.postTitle {
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}
#postWrap img.line {
  display: block;
  width: 100%;
  height: 24px;
  object-fit: contain;
  margin: 0 0 20px 0;
}


/*
* サブタイトル
*/
h3.subTitle {
  margin: 0 0 60px 0;
}


/*
* 投稿リスト
*/
#postList {
  position: relative;
  margin: 0;
  padding: 0 0 120px 0;
}
#postList .wrap {
  position: relative;
  z-index: 2;
}


/*
* カテゴリーリスト
*/
#categoryList {
  position: relative;
  margin: -20px 0 0 0;
  padding: 0 0 80px 0;
}
#categoryList .wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
  padding: 0;
}
#categoryList h4 {
  font-family: 'Red Hat Display', sans-serif;
  color: #1B74C1;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
/* リスト */
#categoryList ul.catList {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin: 0;
  padding: 0;
}
#categoryList ul.catList li {
  margin: 0;
  padding: 0;
}
#categoryList ul.catList li a {
  display: block;
  margin: 0;
  padding: 3px 10px;
  font-size: 16px;
  font-weight: 500;
  background-color: #F5F9FF;
  border-radius: 8px;
}
#categoryList ul.catList li a.current {
  color: #FFFFFF;
  background-color: #1B74C1;
}










/*
* スマホ用 
*/


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

  

  /*
  * 投稿内容
  */
  #postWrap {
    padding: 0 0 40px 0;
    font-size: 15px;
  }
  /* 日付・カテゴリー */
  #postWrap .datecat {
    gap: 20px;
    margin: 0 0 40px 0;
  }
  #postWrap .datecat .date {
    font-size: 15px;
  }
  #postWrap .datecat .cat {
    padding: 2px 12px;
    font-size: 12px;
  }
  /* 投稿タイトル */
  #postWrap h2.postTitle {
    margin: 0 0 20px 0;
    font-size: 18px;
  }
  #postWrap img.line {
    width: 100%;
    height: 24px;
    margin: 0 0 20px 0;
  }


  /*
  * 投稿リスト
  */
  #postList {
    padding: 0 0 40px 0;
  }


  /*
  * カテゴリーリスト
  */
  #categoryList {
    padding: 0 0 40px 0;
  }
  #categoryList .wrap {
    gap: 5px;
  }
  #categoryList h4 {
    font-size: 14px;
    white-space: nowrap;
  }
  /* リスト */
  #categoryList ul.catList {
    gap: 2px 6px;
  }
  #categoryList ul.catList li a {
    padding: 2px 6px;
    font-size: 14px;
  }






}
