@charset "utf-8";
/*------------------------------*/

/* メインヘッダー画像 */
.header_image_box {
	height:600px;
	position:relative;
	overflow: hidden;
}
.header_image_box_inner {
	background-image:url('/image/recruitment_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%;
	right: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%);
	}
}

/* タブレット */
@media only screen and (max-width:767px) {

	/* タブレット */
	.tb_span_block {
		display:block;
	}
}

/* メニューライン背景 */
.title_line_box {
	background-image:url('/image/recruitment_title_line.png');
	background-repeat: repeat-x;
	background-position: center;
}
/* メニューラインテキスト */
.title_line_text {
	border:1px solid #004093;
	border-radius:50px;
	padding:10px;
	max-width:300px;
	margin-left: auto;
	margin-right: auto;
	text-align:center;
	background-color: #ffffff;
	font-size: 20px;
	font-weight:bold;
	color:#004093;
}

/* メニューライン背景上付け */
.blue_line_box {
	background-image:url('/image/recruitment_title_line.png');
	background-repeat: repeat-x;
	background-position: center 10px;
}


/* 青枠 */
.border_all_004093 {
	border:1px solid #004093;
}