@charset "utf-8";
/* CSS Document */

/*************************************

section#news_box

**************************************/
#company{
	margin: 0 auto 140px;
	text-align: center;
}

#company p{margin-bottom: 40px;}

#company ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2px;
}
#company li {width: 33%;}

#company a{
	display: block;
	position: relative;
}

#company h3{
	color: #ffffff;
	font-size: 32px;
	font-weight: bold;
	position: absolute;
	bottom: 9%;
	left: 30px;
	text-align: left;
}
#company h3 span{
	font-size: 16px;
	display: block;
	font-weight: 400;
	letter-spacing: 0.15em;
	position: relative;
	padding-left: 26px;
}
#company h3 span::before{
	content: "";
	width: 16px;
	height: 1px;
	display: inline-block;
	background: #ffffff;
	position: absolute;
	left: 2px;
	top: 50%;
}

@media screen and (max-width: 1000px) {
	#company h3 {
		font-size: 24px;
		position: absolute;
		bottom: 7%;
		left: 20px;
	}

	#company h3 span {
		font-size: 13px;
		position: relative;
		padding-left: 22px;
	}

	#company h3 span::before {
		content: "";
		width: 12px;
	}

}

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

	#company p {text-align: justify;}
	#company ul{
		justify-content: space-between;
		gap: 6px;
	}
	#company li{width: 49%;}

}
