@charset "UTF-8";
/*==================================
NEWS INDEX
===================================*/
#news_index h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 1em;
}

/*===カテゴリーメニュー====*/

#news_index #news_category {}
#news_index #news_category ul {
  display: flex;
  justify-content: center;
  margin-bottom: 3em;
}
#news_index #news_category ul li:first-child {
  border-left: 1px solid #000000;
}
#news_category ul li {
  padding-left: 30px;
  padding-right: 30px;
  border-right: 1px solid #000000;
  list-style-type: none;
}
#news_index #news_category li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
}
#news_index #news_category li a::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: -3px;
  left: -10%;
  /*線の形状*/
  width: 120%;
  height: 1px;
  background-color: #000000;
  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0, 1); /*X方向0、Y方向1*/
  transform-origin: center top; /*上部中央基点*/
}
/*現在地とhoverの設定*/
#news_index #news_category .active a::after, #news_category li a:hover::after {
  transform: scale(1, 1); /*X方向にスケール拡大*/
}

/*===リスト====*/

#news_index #news_list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	
}
#news_index #news_list ul::before{
  content:"";
  display: block;
  width:23%;
  order:1;
}
#news_index #news_list ul::after{
  content:"";
  display: block;
  width:23%;
}

#news_index #news_list ul li{
	width: 23%;
	margin-bottom: 4em;
	height: auto;
	list-style-type: none;
}
#news_index #news_list ul li img{
	width: 100%;
	height: auto;
}

#news_index #news_list ul li .cate {
	font-size: 13px;
	color: #525252;
	margin-top: 10px;
}
#news_index #news_list ul li .news_text {
	font-size: 15px;
	margin-top: 3px;
}


#news_index #news_list ul li a{
	transition: 0.3s;
}
#news_index #news_list ul li a:hover{
	opacity: 0.5;
}

/*===詳細ページ====*/
#news_info_area .topbox_in {
    max-width: 1000px;
}

#news_head{
	display: flex;
	justify-content: space-between;
	margin-bottom: 2em;
}
#news_info #news_info_cate{
}
#news_info #news_info_date{
}

#news_info h3{
	font-size: 180%;
	text-align: center;
	margin-bottom: 50px;
}
#news_contents{
	margin-bottom: 80px;
}
.news_info_box{
	margin-bottom: 60px;
}
.news_info_box .img{
	text-align: center;
	margin-bottom: 20px;
}

.news_info_box .img img{
	max-width: 100%;
	height: auto;
	width: auto;
}