@charset "utf-8";

/*------------------------------*/
/* ヘッダー */
/*------------------------------*/

/* 未経験者大歓迎!! */
.welcome_job {
	width: 100%;
	max-width: 400px;
}

/* 企業が求める人材 */
.dvd_talent_frame {
	border-top:1px solid #5bb431;
	border-bottom:1px solid #5bb431;
	color:#5bb431;
	display: inline-block;
}

/*------------------------------*/
/* 中央の固定背景 */
.recruit_center_gb {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/*------------------------------*/
/* メールでのお問い合せボタン */
.company_button {
	user-select: none;
	-webkit-user-select: none;
	cursor: pointer;
	text-decoration: none;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: #5bb431;
	color: #fff;
	text-align: center;
	overflow: hidden;
}

/* メールでのお問い合せ */
.company_button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #aadd77;
	transition: 0.3s;
}

.company_button:hover::before {
	left: 0;
}

.company_button span {
	position: relative;
	z-index: 1;
}

/* メールアイコン */
.mail_icon {
	width:40%;
}