/*ロールオーバーの設定*/
.hvr-grow,
.hvr-underline-from-left,
.hvr-sweep-to-right,
.hvr-fade {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
}
.hvr-grow {
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
}
.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.hvr-underline-from-left {
	position: relative;
	overflow: hidden;
}
.hvr-underline-from-left:before {
	content: "";
	position: absolute;
	z-index: -1;
	left: 0;
	right: 100%;
	bottom: 0;
	background: #0086D1;
	height: 2px;
	-webkit-transition-property: right;
	transition-property: right;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.hvr-underline-from-left:hover:before,
.hvr-underline-from-left:focus:before,
.hvr-underline-from-left:active:before {
	right: 0;
}

/* Underline From Center */
.hvr-underline-from-center {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	position: relative;
	overflow: hidden;
}
.hvr-underline-from-center:before {
	content: "";
	position: absolute;
	z-index: -1;
	left: 51%;
	right: 51%;
	bottom: 0;
	background: #009f41;
	height: 4px;
	-webkit-transition-property: left, right;
	transition-property: left, right;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.hvr-underline-from-center:hover:before,
.hvr-underline-from-center:focus:before,
.hvr-underline-from-center:active:before {
	left: 0;
	right: 0;
}


.hvr-sweep-to-right {
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.hvr-sweep-to-right:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #f2bb00;
	border-radius: 0.35em;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
	color: #000;
}
.hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

.hvr-fade {
	padding: 0 0.25em;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: color, background-color;
	transition-property: color, background-color;
}
.hvr-fade:hover,
.hvr-fade:focus,
.hvr-fade:active {
	background-color: rgba(79,50,0,.6);
	color: #FFF;
}

/* Icon Bounce */
.hvr-icon-bounce {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px transparent;
	position: relative;
	padding-right: 2.2em;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.hvr-icon-bounce:before {
	content: "\f138";
	position: absolute;
	left: 0.25em;
	padding: 0 1px;
	color: #009f41;
	font-family: FontAwesome;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.hvr-icon-bounce:hover:before,
.hvr-icon-bounce:focus:before,
.hvr-icon-bounce:active:before {
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
	-webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
	transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}






/*スクロールを促すアニメーション*/
.scroll {
	position: relative;
	padding-top: 5em;
}
.scroll::before {
	animation: scroll 3.5s infinite;
	display: inline-block;
	content: "";
	border: solid rgba(79,50,0,1.0);
	border-width: 0 0 1px 1px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	transform: rotate(-45deg);
	width: 1.5em;
	height: 1.5em;
}
.scroll p {
	padding-top: 1em;
}
@keyframes scroll {
	0% {
		transform: rotate(-45deg) translate(0,0);
	}
	80% {
		transform: rotate(-45deg) translate(-2.5em,2.5em);
	}
	0%,80%,100% {
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
}




/*続きを見るボタン*/
.morelink-1 {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 60%;
	height: 3em;
	border: 1px solid rgba(79,50,0,1.0);
	border-radius: 1.5em;
	padding: 0.5em 1em;
	margin: 1em auto 2em;
	transition: .3s;
}
.morelink-1::before {
	content: "";
	width: 0.5em;
	height: 0.5em;
	border-top: 2px solid rgba(79,50,0,1.0);
	border-right: 2px solid rgba(79,50,0,1.0);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 1.5em;
	margin-top: -0.3em;
}
.morelink-1:hover {
	border: 1px dashed rgba(0,134,209,1.0);
	color: rgba(0,134,209,1.0);
	letter-spacing: 0.25em;
}
.morelink-1:hover::before {
	border-top: 2px solid rgba(0,134,209,1.0);
	border-right: 2px solid rgba(0,134,209,1.0);
}