/* Home */

#home_links {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	padding: 45px 60px;
	width: 430px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0px 0px 24px rgba(0,0,0,0.06);
	opacity: 0;
	animation: links_appear 500ms 1000ms 1 forwards linear;
	z-index: 1000;
}
@keyframes links_appear {
	0% {
		opacity: 0;
		margin-top: 20px;
	}
	100% {
		opacity: 1;
		margin-bottom: 0;
	}
}

.home_link {
	margin-bottom: 1.8em;
}
.home_link:last-child {
	margin-bottom: 0;
}
.home_link a {
	position: relative;
	display: block;
	padding: 18px 70px 16px 84px;
	border: solid 1px #ddd;
	background: #fafafa;
	border-radius: 200px;
	text-decoration: none;
	transition: all 350ms ease-in-out;
}
.home_link a::before {
	position: absolute;
	right: 24px;
	top: 50%;
	content: '';
	margin-top: -12px;
	width: 24px;
	height: 24px;
	background: url(../images/common/icon_link.png) no-repeat center / cover;
}
.home_link a:hover {
	transform: scale(1.035);
	transition: all 260ms ease-in-out;
}
.home_link img {
	display: block;
	margin: 0 auto 12px auto;
}
.home_link .label {
	display: block;
	text-align: right;
	font-size: 0.9em;
	font-weight: 500;
	line-height: 1em;
}

.home_link a::after {
	position: absolute;
	left: 18px;
	top: 50%;
	margin-top: -25px;
	content: '';
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

#home_link_driver a::after {
	background: #fff url(../images/common/icon_driver.png) no-repeat center / 74%;
}
#home_link_wholesale a::after {
	background: #fff url(../images/common/icon_wholesale.png) no-repeat center / 74%;
}
#home_link_farmer a::after {
	background: #fff url(../images/common/icon_farmer.png) no-repeat center / 74%;
}


@media screen and (max-width: 600px) {
	
	#home_links {
		padding: 70px 45px;
		width: 86%;
	}
	.home_link a {
		padding: 18px 70px 16px 100px;
	}
	.home_link a::after {
		margin-top: -32px;
		width: 64px;
		height: 64px;
	}
	
}
