@charset "UTF-8";
/*-----------
ニュースのみのデザイン
-------------*/
/* ページタイトルの背景画像 */
.pagetitle{
	background:url(../images/recruit_top_sp.png) 50% 50% no-repeat;
	background-size:cover;
}
@media screen and (min-width: 768px) {
	.pagetitle{
		background:url(../images/recruit_top_pc.png) 50% 50% no-repeat;
		background-size:cover;
	}
}

/* リンク画像の下の詳細のリンク */
.details {
	margin-top: 10px;
	text-align: right;
}
.details img{
	vertical-align:middle;
	margin-right:10px;
}
.details .trigger {
	font-size: 12px;
	display: inline-block;
	position: relative;
	color: #000;
	transition: all .5s ease;
}
.details .trigger:before {
	transition: all .5s ease-in-out;
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-bottom: 2px solid #26cad4;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.details .trigger:hover {
	color: #26cad4;
}
.details .trigger:hover:before {
	width: 100%;
	z-index: 2;
}
.details .trigger:before, .details .trigger:after {
	content: "";
	display: block;
	position: absolute;
}
@media screen and (min-width: 768px) {
	.details {
		margin-top: 30px;
		text-align: right;
	}
	.details .trigger {
		font-size: 12px;
		display: inline-block;
	}
}
