@charset "UTF-8";

/*---------------------
		main
---------------------*/
#mainInner{
	max-width: 1000px;
	margin: 80px auto;
}
.newsBox{}
.newsBox li{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	background: rgb(190,190,190);
	background: linear-gradient(180deg, rgba(190,190,190,1) 0%, rgba(255,255,255,1) 70%, rgba(190,190,190,1) 100%);
	
	position: relative;
	margin: 5px 0;
	padding: 15px;
}
.newsBox li:nth-child(even){
	background: rgb(164,184,208);
	background: linear-gradient(180deg, rgba(164,184,208,1) 0%, rgba(255,255,255,1) 70%, rgba(164,184,208,1) 100%);
}
.newsBox .newsImg{
	width: 140px; 
	height: 140px; 
	background-color: #000;
	position: relative;
	
	/*下の記述は後々必要ないかも*/
	color: #fff;
	font-size: 2rem;
	text-align: center;
	padding-top: 50px;
}
.newsBox .newsImg img{
	position: absolute;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	
	width: 80%;
}
.newsBox .newsTxt{margin-left: 15px;}
.newsBox .newsTxt h3{
	width: 140px;
	text-align: center;
	color: #fff;
	margin-bottom: 5px;
}
.newsBox .newsTxt h3.newsTitle{background-color: #305097;}
.newsBox .newsTxt h3.releaseTitle{background-color: #00aced;}
.newsBox .newsTxt p{font-size: 1.2rem;}

.newsBox .linkImg{
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	right: 20px;
}

.changeBtnBox{
	width: 30%;
	margin: 30px auto;
	text-align: center;
}
.changeBtnBox li{}
.changeBtnBox a{
    font-weight: 600;
    font-size: 1.4rem;
    color: #E9470B;
	background-color: #fff;
	border: solid 1px #E9470B;
	border-radius: 50px;
	display: inline-block;
	width: 50px;
	height: 50px;
	padding: 10px;
}
.changeBtnBox a.active{
	background-color:#E9470B;
	color: #fff;
}
.changeBtnBox li:last-child a{
	border: none;
}


.chageBtnBox li:last-child a:before{border: none;}
.changeBtnBox{}
.changeBtnBox{}

/*NEWS 下層*/
#news_under #mainInner h3{text-align: center;font-size: 35px;margin-bottom: 1em;}
#news_under #mainInner p{font-weight: normal;line-height: 1.8;}
#news_under #mainInner p a:link,
#news_under #mainInner p a:hover,
#news_under #mainInner p a:visited{color: #E9470B;}
#news_under #mainInner p.img{text-align: center;margin-top: 1em;}
/*---------------------
		sp
---------------------*/
@media screen and (max-width:896px) {
	#mainInner{
		margin: 40px auto;
		padding: 0 5%;
	}
	.newsBox .newsTxt p{font-size: 1rem;}
	.newsBox .newsImg{
		width: 80px; 
		height: 80px;
		
		/*下の記述は後々必要ないかも*/
		padding-top: 30px;
	}
	.newsBox .newsTxt{
		width: 60%;
	    margin: 0 20px 0 10px;
	}
	.changeBtnBox{width: 90%;}
    
    /*NEWS 下層*/
    #news_under #mainInner h3{font-size: 150%;}
}




