@charset "UTF-8";
/* CSS Document */

/** mv
/*--------------------------------------------------------------------*/
main .mv{
	margin: 0;
	height: 100vh;
	background: url(/top/img/top_bg.jpg);
	background-size: cover;
	background-position: center;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
}
main .mv figure{
	width: 100%;
	text-align: center;
}
main .mv .top_call {
	width: 100%;
	text-align: center;
}
main .mv .top_call p {
	color: #fff;
	font-family: heisei-maru-gothic-std, sans-serif;
	font-weight: 800;
	font-style: normal;
	font-size: 34px;
}
main .mv .top_call p a {
	color: #fff;
	font-family: heisei-maru-gothic-std, sans-serif;
	font-weight: 800;
	font-style: normal;
	background: url(/common/img/ico_call.svg) left no-repeat;
	background-size: contain;
	padding: 10px 0 0 58px;
	text-decoration: none;
}
@media (max-width: 992px) {
	main .mv figure img{
		width: 300px;
	}
	main .mv .top_call p {
		font-size: 30px;
	}
}

/** menu
/*--------------------------------------------------------------------*/
.delivery{
	width:300px;
	height:450px;
	margin:0 auto;
	position: relative;
}
.delivery figure{
	position: absolute;
	left: 50px;
	bottom:0;
	width:200px;
}
.delivery figure img{
	width:100%;
}
.delivery .click{
	position: absolute;
	right: 0;
	width:100px;
	z-index: 10;
	animation-name: anim;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-duration: 0.5s;
}
.delivery .click img{
	width:100%;
}
@keyframes anim {
	0% {
		top: 0px;
	}
	100% {
		top: -15px;
	}
}