@charset "utf-8";

#company h2 {
	font-size : 2.5em;
	font-weight : bold;
	margin-bottom : 0.5em;
}
#company p {
	margin-bottom: 2em;
}
#company .table{
	display: grid;
	grid-template-columns: 200px 1fr;
	border-bottom: 1px solid #ccc;
	margin-bottom: 50px;
	line-height: 2em;
	background-color: #FFF;
}
#company .table dt{
	display: flex;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid #ccc;
	font-weight: bold;
	background-color : #fe922e;
}
#company .table dd{
	padding: 20px;
	border-bottom: 1px solid #ccc;
}
#company .table dt:first-of-type,
#company .table dd:first-of-type{
	border-top: 1px solid #ccc;
}
#company .table dt:last-of-type,
#company .table dd:last-of-type{
	border-bottom: none;
}

#company .linklist a{
	color: #f0831e;
}
#company .map{
	margin-bottom: 100px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
}
@media screen and (max-width: 767px) {
	#company .table{
		grid-template-columns:  1fr;
	}
	#company .table dt:first-of-type{
		border-top: 1px solid #ccc;
	}
	#company .table dd:first-of-type{
		border-top: none;
	}
	#company .table dd:last-of-type{
		border-top: 1px solid #ccc;
	}
}
