@charset "utf-8";
/* CSS Document */

.news .mainVisual {
    background: url(/company/img/img_mainvisual_company.jpg) no-repeat center / cover;
}

/* 一覧ページ
--------------------------------------------------------------------------- */

.news_contents{
	max-width: 900px;
    margin: 0 auto;
}

.news_contents ul li a{
	display: flex;
	width: 100%;
	padding: 20px 0;
	border-top: 1px solid #dedede;
	transition: all .3s;
}

.news_contents ul li:last-of-type a{
	border-bottom: 1px solid #dedede;
}

.news_contents ul li a:hover{
	opacity: 0.8;
}

.news_contents ul li a p.time{
	width: 20%;
    text-align: left;
	margin-right: 10px;
}

.pagination{
	margin-top: 10px;
}

.pagination > .flex{
	justify-content: center;
}

.pagination .page-numbers{
	padding: 0 10px;
}

.pagination a.page-numbers{
	text-decoration: underline;
}

.pagination a.page-numbers:hover{
	text-decoration: none;
}

@media screen and (max-width: 767px){
	.news_contents ul li a{
		flex-direction: column;
	}
	
	.news_contents ul li a p.time{
		width: 100%;
	}
	
	.news_contents ul li a p.ttl{
		text-align: left;
	}
	
}

/* 詳細ページ
--------------------------------------------------------------------------- */

.news_detail .time{
	text-align: left;
}

.news_detail h3{
	text-align: left;
	font-size: 2.2rem;
}

.news_text{
	margin-top: 10px;
}

.news_text p{
	text-align: left;
}

.news_text img{
	display: block;
	margin-top: 10px;
}

.news_text img.aligncenter{
	margin: 10px auto 0;
}

.news_text img.alignright{
	margin: 10px 0 0 auto;
}

.news_text img.alignleft{
	margin: 10px auto 0 0;
}

.news_text ul{
	padding-left: 1em;
}

.news_text ul li{
	text-align: left;
	list-style: disc;
}

.news_text ol{
	padding-left: 1em;
}

.news_text ol li{
	text-align: left;
	list-style: decimal;
}