/* ============================================================
  
  /layout/
  このディレクトリのCSSは「画面構造・枠組み」関連を格納ください。
  
  bindpress_lst.css 内ルール
  
  1. BiNDup標準の機能で設定できないもののみ記述すること
  2. 原則共通で使用できる内容のみ記述すること
  
============================================================ */
#information svg,
#event svg{
	width: auto;
	height: 100%;
	max-height: 30px;
}

#information .c-right{
	margin-bottom: 18px;
}

.news-item-row {
  width: 100%;
  margin: 0;
  border-top: .2px solid #000;
}
#information .-column1 .c-none:last-child .news-item-row,
#information .-column2 .news-item-row:last-child{
  border-bottom: .2px solid #000;
}

.news-link {
  display: flex;
  padding: 25px 0;
  text-decoration: none;
 /* color: inherit;*/
  color: #000;
}

.information_tips {
  width: 120px;
  flex-shrink: 0;
  font-size: 0.9em;
  align-self: flex-start; 
  display: flex;
  padding-top: 2px;
}

.article_ttl {
  flex-grow: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  height: 2.8em;
}

@media (max-width: 640px){
	#information svg,
	#event svg{
	max-height: 22px;
	}
	.information_tips {
		width: 80px;
	}
}








