@charset "utf-8";
/*------------------------------*/

/* メインヘッダー画像 */
.header_image_box {
	height:600px;
	position:relative;
	overflow: hidden;
}
.header_image_box_inner {
	background-image:url('/image/company_profile_header_image_01.jpg');
	background-size:cover;
	background-position:center;
	height:600px;
	transform:scale(1.1);
	-webkit-transform: scale(1.1);
	opacity:0;
}

/* ヘッダー画像内テキスト枠 */
.header_box_title {
	text-align:center;
	position:absolute;
	top:30%;
	left:10%;
	font-weight: bold;
	color:#ffffff;
	transition:0.5s;
	min-width:300px;
}

/* タブレット */
@media only screen and (max-width:767px) {
	.header_image_box {
			height:400px;
	}
	.header_box_title {
		left:50%;
		-webkit-transform:translateX(-50%); /* Safari用 */
		transform:translateX(-50%);
	}
}

/*------------------------------*/

.top_logo {
	width:100%;
	max-width:200px;
}

/* フレンドショップバナー */
.friends_banner {
	width:100%;
	max-width:100px;
}

/*------------------------------*/

/* フッター */
.representative_footer {
	background-image:url('/image/representative_footer.png');
	background-size:cover;
	background-position:top center;
	height:800px;
}