/* グループ会社 */

.pageTitle {
	background-image: url(../img/header.jpg);
}


.companyList {
	margin-top: 100px;
	margin-bottom: 100px;
	text-align: center;
}

.company {
	margin: 80px auto;
}

.company a {

	display: block;
	text-decoration: none;
	color: #000000;

	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

.company a:hover {
	opacity: 0.6;
	filter: alpha(opacity=60);
	-ms-filter: "alpha(opacity=60)";
}

.companyImage{
	margin-left: auto;
	margin-right: auto;
}

.companyImage img {
	width: 100%;
}


.companyText{
	margin: 20px auto;

	font-size: 24px;
	font-weight: bold;
}


/*************************************************************/
/* レスポンシブ用 */
/*************************************************************/

@media screen and ( max-width: 1024px )
{
	.companyText{
		font-size: 22px;
	}

	.company {
		margin: 60px auto;
	}

}

@media screen and ( max-width: 768px )
{
	.companyText{
		margin: 10px auto;
		font-size: 20px;
	}

	.company {
		margin: 10px auto;
	}


}

@media screen and ( max-width: 480px )
{
	.companyText{
		margin: 10px auto;
		font-size: 16px;
	}

	.company {
		margin: 10px auto;
	}


}


