@charset "utf-8";


/*  --------------	opning	 --------------  */ 

#opening {
	min-width: 320px;
	position: fixed; top: 0; left: 0; right:0;bottom:0;
	margin:auto;
	z-index: 9999;
	width: 100%;
	height: 100vh;
	background:#F9C40A;
	z-index: 30;
}

/*#opening > img {
	position: fixed;
	top: 0;
  right: 0;
  bottom: 0;
	left: 0;
	margin: auto;
	opacity: 0;
}*/

#opening .rogo {
	display: block;
	width: 711px; height: 208px;
	position: absolute;	top: 0; right: 0; bottom: 0; left: 0;
	margin: auto;
	z-index: 9999;
}

#opening .rogo img {
	display: block;
  width: 100%;
}
@media screen and (max-width:980px) {
#opening .rogo {
	width: 200px;
  height: 125px;
}
}
@media screen and (max-width:768px) {
#opening .rogo {
	width: 180px;
  height: 110px;
}
}


/* -------------- メインビジュアル -------------- */
/*.mainVisual {
	overflow: hidden;
	width: 100%;
	height: 100vh;
}
.mainVisual ul li {
	position: relative;
	width: 100%;
	height: 100vh;
}
.mainVisual ul li img {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

@media screen and (max-width:980px) {
.mainVisual {
	height: auto;
}
.mainVisual ul li {
	height: auto;
}
.mainVisual ul li img {
	display: block;
	position: static;
	width: 100%;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}
}*/

/*-- mainVisual --*/
.mainVisual {
	overflow: hidden;
	width: 100%;
	height: 100vh;
	background: url(../img/index/main_photo01.jpg) top center no-repeat;
	background-size: cover;
}

.mainVisual li {
  width: 100%;
  height: 100vh;
}
@media screen and (max-width:980px){
.mainVisual {
	overflow: hidden;
	width: 100%;
	height: 50vh;
	background: url(../img/index/main_photo01.jpg) top center no-repeat;
	background-size: cover;
}

.mainVisual li {
	width: 100%;
	height: 50vh;
}
}

/* -------------- 挨拶 -------------- */

.message {
	position: relative;
	padding: 5% 0 2%;
}

@media screen and (max-width:980px) {
.message {
	padding: 4em 0;
}
}
/*-- title --*/
.message__title {
	width: 80%;
	max-width: 514px;
	/*margin: 0 15% 5em auto;*/
	margin: 0 auto 5%;
	text-align: center;
	animation-duration: 2s;
}


@media screen and (max-width:980px) {
.message__title {
	max-width: 300px;
	margin: 0 auto 2em;
}
}

@media screen and (max-width:550px) {
.message__title {
	max-width: 220px;
}
}


/*-- text --*/
.message__textBox {
	width: 90%;
	max-width: 862px;
	margin: 0 auto;
}

.text01_margin {
	margin-bottom: 5%;
}

.text02_margin {
	margin-bottom: 3%
}


.message__textBox p {
	font-size: 19px;
	font-size: 1.9rem;
	text-align: center;
	line-height: 2.4;
}


	
@media screen and (max-width:980px) {
.message__textBox p {
	font-size: 15px;
	font-size: 1.5rem;
}
}

@media screen and (max-width:550px) {
.message__textBox p {
	text-align: left;
}
.message__textBox p br {
	display: none;
}
}
/*-- tantou --*/

.message__tantou {
	max-width: 611px;
	overflow: hidden;
}

.tantou_img {
	width: 88%;
	max-width: 621px;
	margin-left: 6%;
	display: block;
	opacity: 0;
}
.tantou_img.imgActive {
	animation-duration: 2s;
	animation-name: bounceInUp; /*アニメーションを紐付ける */
	animation-fill-mode: forwards;
}
 @-webkit-keyframes bounceInUp {
/* from,  60%,  75%,  90%,  to {
 -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
 animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}*/
0% {
 opacity: 0;
 -webkit-transform: translate3d(0, 3000px, 0);
 transform: translate3d(0, 3000px, 0);
}
 60% {
 opacity: 1;
 -webkit-transform: translate3d(0, -20px, 0);
 transform: translate3d(0, -20px, 0);
}
 75% {
 -webkit-transform: translate3d(0, 10px, 0);
 transform: translate3d(0, 10px, 0);
}
 90% {
 -webkit-transform: translate3d(0, -5px, 0);
 transform: translate3d(0, -5px, 0);
}
 100% {
 -webkit-transform: translate3d(0, 0, 0);
 transform: translate3d(0, 0, 0);
	 opacity: 1;
}
}
 @keyframes bounceInUp {
/* from,  60%,  75%,  90%,  to {
 -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
 animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}*/
0% {
 opacity: 0;
 -webkit-transform: translate3d(0, 3000px, 0);
 transform: translate3d(0, 3000px, 0);
}
 60% {
 opacity: 1;
 -webkit-transform: translate3d(0, -20px, 0);
 transform: translate3d(0, -20px, 0);
}
 75% {
 -webkit-transform: translate3d(0, 10px, 0);
 transform: translate3d(0, 10px, 0);
}
 90% {
 -webkit-transform: translate3d(0, -5px, 0);
 transform: translate3d(0, -5px, 0);
}
 100% {
 -webkit-transform: translate3d(0, 0, 0);
 transform: translate3d(0, 0, 0);
	 opacity: 1;
}
}

@media screen and (max-width:980px) {
.message__tantou {
	max-width: 450px;
}
}

@media screen and (max-width:550px) {
.message__tantou {
	width: 92%;
	max-width: 350px;
	margin: 0 auto;
}
}

/*-- scroll　down　button --*/


.message a {
	position: absolute;
	bottom: 5%;
	right: 25%;
	z-index: 2;
	display: inline-block;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	text-decoration: none;
	color: #F9C40A;
	padding-top: 80px;
}

.message a span {
	position: absolute;
	top: 0;
	left: 50%;
	width: 30px;
	height: 50px;
	margin-left: -15px;
	border: 2px solid #F9C40A;
	border-radius: 50px;
	box-sizing: border-box;
}
.message a span::before {
	position: absolute;
	top: 10px;
	left: 50%;
	content: '';
	width: 6px;
	height: 6px;
	margin-left: -3px;
	background-color: #F9C40A;
	border-radius: 100%;
	-webkit-animation: sdb 2s infinite;
	animation: sdb 2s infinite;
	box-sizing: border-box;
}
.message a span::after {
	position: absolute;
	bottom: -18px;
	left: 50%;
	width: 18px;
	height: 18px;
	content: '';
	margin-left: -9px;
	border-left: 1px solid #F9C40A;
	border-bottom: 1px solid #F9C40A;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	box-sizing: border-box;
}
 @-webkit-keyframes sdb {
 0% {
 -webkit-transform: translate(0, 0);
 opacity: 0;
}
 40% {
 opacity: 1;
}
 80% {
 -webkit-transform: translate(0, 20px);
 opacity: 0;
}
 100% {
 opacity: 0;
}
}
@keyframes sdb {
 0% {
 transform: translate(0, 0);
 opacity: 0;
}
 40% {
 opacity: 1;
}
 80% {
 transform: translate(0, 20px);
 opacity: 0;
}
 100% {
 opacity: 0;
}
}

@media screen and (max-width:600px) {
	
.message {
	padding-bottom: 38% ;
}

.scrollBtan {
	display: block;
	width: 30%;
	position: absolute;
	right: 10%;
	bottom: 0;
}
}
	
@media screen and (max-width:600px) {
	
.message {
	padding-bottom: 28% ;
	margin-bottom: 6%;
}

.scrollBtan {
	display: block;
	position: absolute;
	right: 10%;
	bottom: 0;
}
}	

@media screen and (max-width:540px) {
	
.message {
	padding-bottom: 45% ;
}}



/* -------------- 先輩たちの声 -------------- */
.recruiter {
	padding: 0 0 6em;
	background: url("../img/index/recruiter_bg.png") top left no-repeat;
	background-size: 100% 100%;
}
.recruiter__inner {
	width: 92%;
	/* max-width: 1240px; */
	max-width: 820px;
	margin: 0 auto;
	padding: 4em 0;
}

@media screen and (max-width:980px) {
.recruiter__inner {
	padding: 2em 0;
}
}
/*-- title --*/
.recruiter__title {
	width: 92%;
	max-width: 1034px;
	margin-left: 2%;
}
.recruiter__title img {
	display: block;
	width: 100%;
}

@media screen and (max-width:980px) {
.recruiter__title {
	margin: 0 auto;
}
}
/*-- voice --*/
.voice {
	float: left;
	position: relative;
	/* width: 30%; */
	width: 50%;
	max-width: 370px;
	margin: 0 9% 3em 0;
}
.voice:nth-last-of-type(1) {
	margin-right: 0;
}

@media screen and (max-width:1250px) {
.voice {
	/* width: 31%; */
	width: 42%;
	/* margin: 0 1% 3em; */
	margin: 0 4% 3em;
}
.voice:nth-last-of-type(1) {
	margin-right: 1%;
}
}

@media screen and (max-width:980px) {
.voice {
	position: relative;
	/* width: 40%; */
	width: 42%;
	max-width: none;
	/* margin: 0 3% 1em; */
	margin: 0 2.6% 1em;
}
	
.voice:nth-last-of-type(1) {
	margin-right: auto;
}
}

@media screen and (max-width:800px) {
.voice {
	float: none;
	width: 100%;
	max-width: 350px;
	margin: 0 auto 3em;
}
}
/* photo */
.voice__photo {
	display: block;
	width: 50%;
	max-width: 159px;
}
.voice__photo img {
	display: block;
	width: 100%;
}

@media screen and (max-width:1250px) {
.voice__photo {
}
}

@media screen and (max-width:1080px) {
.voice__photo {
	float: left;
	width: 38%;
	max-width: none;
}
}

@media screen and (max-width:980px) {
.voice__photo {
	width: 40%;
}
}
/* text */
.voice__textBox {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 220px;
	padding-top: 14%;
}

@media screen and (max-width:1250px) {
.voice__textBox {
	max-width: 180px;
}
}

@media screen and (max-width:1080px) {
.voice__textBox {
	float: right;
	position: static;
	width: 58%;
	max-width: none;
	padding: 0;
}
}

@media screen and (max-width:980px) {
.voice__textBox {
	width: 55%;
}
}
/* text-catch */
.voice__catch {
	width: 100%;
	font-size: 20px;
	font-size: 2rem;
	font-weight: bold;
	transform: skewX(-10deg);
}
.voice__catch span {
	display: block;
	margin-bottom: .35em;
	padding: 0 1%;
	background: #fff;
	transform: skewX(-2deg);
}
.voice__catch span:nth-last-of-type(1) {
	margin-bottom: .2em;
}

@media screen and (max-width:1250px) {
.voice__catch {
	max-width: none;
	font-size: 18px;
	font-size: 1.8rem;
}
}

@media screen and (max-width:1080px) {
.voice__catch {
	max-width: none;
	margin-bottom: 1em;
	font-size: 16px;
	font-size: 1.6rem;
	letter-spacing: .02em;
}
}

@media screen and (max-width:980px) {
.voice__catch span {
	transform: skewX(0deg);
}
}

@media screen and (max-width:800px) {
.voice__catch {
	max-width: 170px;
	font-size: 16px;
	font-size: 1.6rem;
}
}
/* text-name */
.voice__name {
	font-size: 16px;
	font-size: 1.6rem;
	text-align: right;
	line-height: 1.6;
	padding: 0.3em 0.5em 0 0;
}
.voice__name b {
	font-size: 22px;font-size: 2.2rem;
}
.voice__name b span {
	font-size: 16px;font-size:1.6rem;
	padding-left: 0.3em;
}



@media screen and (max-width:980px) {
.voice__name {
	text-align: left;
}
}

@media screen and (max-width:800px) {
.voice__name b {
	font-size: 25px;
	font-size: 2.5rem;
}
}
/*-- button --*/

.button {
	clear: both;
	position: relative;
	display: block;
	max-width: 290px;
	margin: 0 auto;
	padding: .5em 4em;
	border: 1px solid #0A71B6;
	color: #0A71B6;
	font-size: 19px;
	font-size: 1.9rem;
	font-weight: bold;
	letter-spacing: 1.5px;
	text-align: center;
	text-decoration: none;
	transition: .3s;
	z-index: 1;
}
.button::after {
	content: url("../../_common/img/index/voice_after.png");
	width: 24px;
	height: 5px;
	padding-left: 6%;
}
.button:hover {
	color: #fff;
}
.button:hover::after {
	content: url("../../_common/img/index/vieceBtn_after_hover.png");
	width: 24px;
	height: 5px;
	padding-left: 6%;
}
.button {
	overflow: hidden;
}
.button::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	content: '';
	width: 120%;
	height: 100%;
	background: #0A71B6;
	transform-origin: right top;
	transform: skewX(-30deg) scale(0, 1);
	transition: transform .3s;
}
.button:hover::before {
	transform-origin: left top;
	transform: skewX(-30deg) scale(1, 1);
}
/* -------------- works -------------- */
.works {
	position: relative;
	margin-bottom: 5em;
}
.works__inner {
	position: relative;
	width: 92%;
	max-width: 1050px;
	margin: 0 auto;
	padding-top: 6em;
}

@media screen and (max-width:980px) {
.works__inner {
	padding-top: 0;
}
}
/*-- title --*/
.works__title {
	position: absolute;
	top: -1em;
	left: 0;
	width: 92%;
	max-width: 535px;
}
.works__title img {
	width: 100%;
}
.works__title-pc {
	display: block;
}
.works__title-sp {
	display: none;
}

@media screen and (max-width:980px) {
.works__title {
	position: static;
	width: 100%;
	max-width: none;
	margin: 0 auto 2em;
}
.works__title-pc {
	display: none;
}
.works__title-sp {
	display: block;
}
}

@media screen and (max-width:800px) {
.works__title {
	margin: 0 auto 1.5em;
}
}
/*-- movie --*/
.works__movie {
	float: right;
	width: 65%;
	max-width: 770px;
}
.works__movie video {
	display: block;
	width: 100%;
}

@media screen and (max-width:1150px) {
.works__movie {
	float: right;
	width: 60%;
	max-width: 787px;
}
}

@media screen and (max-width:980px) {
.works__movie {
	float: none;
	width: 100%;
	max-width: 600px;
	margin: 0 auto 2em;
}
}

@media screen and (max-width:800px) {
.works__movie {
	margin: 0 auto 1em;
}
}
/*-- text --*/
.works__textBox {
	float: left;
	width: 35%;
	overflow: hidden;
	padding-top: 17%;
}

.works__textBox p:nth-of-type(1) {
	margin-bottom: 1em;
}

.works__textBox p:nth-of-type(1) b {
	display: block;
	width: 100%;
	font-size: 60px;
	font-size: 6rem;
	font-weight: bold;
	line-height: 1.2;
}

.works__textBox p:nth-of-type(2) {
	margin-bottom:1em;
	font-size: 16px;
	font-size: 1.6rem;
}

@media screen and (max-width:1150px) {
.works__textBox {
	float: left;
	width: 40%;
}
}

@media screen and (max-width:980px) {
.works__textBox {
	float: none;
	width: 100%;
	padding: 0;
	
}
.works__textBox p:nth-of-type(1) b {
	font-size: 50px;
	font-size: 5rem;
}
.works__textBox p:nth-of-type(2) {
	margin-bottom: 1em;
	font-size: 16px;
	font-size: 1.6rem;
	
}

.works__textBox p:nth-of-type(1) {
	text-align: center;
}
.works__textBox p:nth-of-type(1) b {
	font-size: 35px;
	font-size: 3.5rem;
}
.works__textBox p:nth-of-type(2) {
	text-align: center;
}
}

/*-- button --*/

.work_button {
	position: relative;
	display: block;
	max-width:203px;
	padding: .3em 2em;
	border: 1px solid rgb(10, 150, 182, .7);
	color: #0A71B6;
	font-size: 19px;
	font-size: 1.9rem;
	text-align: center;
	font-weight: bold;
	font-style: italic;
	letter-spacing: 4px;
	text-decoration: none;
	transition: .3s;
	z-index: 1;
}

.work_button::after {
	content: url("../../_common/img/index/voice_after.png");
	width: 24px;
	height: 5px;
	padding-left: 6%;
}
.work_button:hover {
	color: #fff;
}
.work_button:hover::after {
	content: url("../../_common/img/index/vieceBtn_after_hover.png");
	width: 24px;
	height: 5px;
	padding-left: 6%;
}
.work_button {
	overflow: hidden;
}
.work_button::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	content: '';
	width: 120%;
	height: 100%;
	background: #0A71B6;
	transform-origin: right top;
	transform: skewX(-30deg) scale(0, 1);
	transition: transform .3s;
}
.work_button:hover::before {
	transform-origin: left top;
	transform: skewX(-30deg) scale(1, 1);
}

@media screen and (max-width:980px) {
.work_button{
	display: block;
	width: 55%;
	margin: 0 auto;
	text-align: center;
}
}
/* -------------- recruit -------------- */
.recruit__inner {
	width: 92%;
	max-width: 1050px;
	margin: 0 auto 8em;
	
}
/*-- title --*/
.recruit__title {
	width: 92%;
	max-width: 601px;
	margin: 0 0 3em auto;
}
.recruit__title img {
	width: 100%;
}
.recruit__title-pc {
	display: block;
}
.recruit__title-sp {
	display: none;
}

@media screen and (max-width:980px) {
.recruit__title {
	width: 100%;
	max-width: none;
	margin: 0 auto 2em;
}
.recruit__title-pc {
	display: none;
}
.recruit__title-sp {
	display: block;
}
}
/*-- list --*/
.recruit__list {
	width: 100%;
	max-width: 665px;
	margin-bottom: 3em;
}
.recruit__listItem {
	float: left;
	width: 48%;
	max-width: 315px;
	margin: 1em 4.5% 1em 0;
}

.recruit__listItem a {
	display: block;
	width: 100%;
	padding: .8em 2%;
	border-bottom: 2px solid #0a71b6;
	background-image: linear-gradient(rgba(0,0,0,0) 50%, rgba(10,113,182,.8) 40%);
	background-position: 0 0;
	background-size: auto 200%;
	transition: .3s;
}

.recruit__listItem a:hover {
  background-position: 0 100%;
  color: #fff;}


.recruit__listItem:nth-child(even) {
	margin-right: 0;
}

.recruit__listItem img {
	display: block;
	width: 100%;
}

@media screen and (max-width:980px) {
.recruit__list {
	max-width: none;
}
.recruit__listItem {
	width: 48%;
	max-width: 315px;
	margin: 0 2% 1em 0;
}
}

@media screen and (max-width:540px) {
.recruit__listItem {
	float: none;
	width: 100%;
	max-width: 225px;
	margin: 0 auto 1em;
}
.recruit__listItem:nth-child(even) {
	margin-right: auto;
}
}
/*-- flow --*/
.flow__inner {
	max-width: 1010px;
	margin: 0 auto;
}



@media screen and (max-width:980px) {
.flow__inner {
	max-width: 300px;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fef1c7+0,f9c40a+100 */
	background: #fef1c7; /* Old browsers */
	background: -moz-linear-gradient(top, #fef1c7 0%, #f9c40a 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #fef1c7 0%, #f9c40a 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #fef1c7 0%, #f9c40a 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fef1c7', endColorstr='#f9c40a', GradientType=0 ); /* IE6-9 */
}
}
/* title */
.flow__title {
	width: 100%;
	margin-bottom: 4em;
	padding-left: 1em;
	text-align: left;
	border: 3px solid #b22222;
	border-width: 0 0 0 3px;
}

@media screen and (max-width:980px) {
.flow__title {
	width: 100%;
	margin: 0 auto 2em;
	padding: 0 0 1em;
	text-align: center;
	border-width: 0 0 3px;
}
}
/* item */
.flow__item {
	float: left;
	position: relative;
	padding: 2.65em 3.5% 2.4em;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fef1c7+0,f9c40a+100 */
	background: #fef1c7; /* Old browsers */
	background: -moz-linear-gradient(left, #fef1c7 0%, #f9c40a 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #fef1c7 0%, #f9c40a 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #fef1c7 0%, #f9c40a 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fef1c7', endColorstr='#f9c40a', GradientType=1 ); /* IE6-9 */
}
/* 横幅個別指定 */
.flow__item-01 {
	width: 25.8%;
}
.flow__item-02 {
	width: 27%;
}
.flow__item-03 {
	width: 30.9%;
}
.flow__item-04 {
	width: 15.9%;
	padding: 4.8em 0 2.2em 3.5%;
}

@media screen and (max-width:980px) {
.flow__item {
	float: none;
	padding: 1em 10% 4em;
	background: none;
}
/* 横幅個別指定 */
.flow__item-01, .flow__item-02, .flow__item-03, .flow__item-04 {
	width: 100%;
}
.flow__item-04 {
	padding: 2em 10% 3em;
}
}
	
.flow__item::before {
	display: block;
	content: "";
	position: absolute;
	top: -3em;
	left: -1em;
	z-index: 2;
	width: 78px;
	height: 75px;
}
/* 番号個別指定 */
.flow__item-01::before {
	background: url(../../_common/img/index/no1.png) top center no-repeat;
	background-size: contain;
}
.flow__item-02::before {
	background: url(../../_common/img/index/no2.png) top center no-repeat;
	background-size: contain;
}
.flow__item-03::before {
	background: url(../../_common/img/index/no3.png) top center no-repeat;
	background-size: contain;
}
.flow__item-04::before {
	background: url(../../_common/img/index/no4.png) top center no-repeat;
	background-size: contain;
}

@media screen and (max-width:980px) {
.flow__item::before {
	position: static;
	width: 58px;
	height: 58px;
	margin: 1em auto 0;
}
}
	
.flow__item::after {
	display: block;
	position: absolute;
	top: 0;
	right: -20px;
	z-index: 1;
	content: "";
	width: 53px;
	height: 156px;
	background: url(../../_common/img/index/flow_arrow.png) top left no-repeat;
	background-size: contain;
}
.flow__item:nth-last-of-type(1)::after {
	display: none;
}
/* head */
.flow__head {
	margin-bottom: 1em;
}

@media screen and (max-width:980px) {
.flow__item::after {
	display: block;
	position: absolute;
	top: auto;
	left: 0;
	bottom: -1em;
	width: 100%;
	height: 30px;
	background: url(../../_common/img/index/flow_arrow_sp.png) top center no-repeat;
	background-size: contain;
}
/* head */
.flow__head {
	margin: 0 auto 1em;
	text-align: center;
}
/* text */
.flow__item p {
	display: block;
	margin: 0 auto;
	text-align: center;
}
}
	
/*-- button --*/
.entry {
	position: relative;
	width: 100%;
	margin: 0 auto 10%;
	text-align: center;
}


.entry::before {
	display: block;
	transition: .2s;
	transition-timing-function: ease-in-out;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	content: "";
	width: 0;
	height: 180px;
	background: #0a71b6;
}
.entry::after {
	display: block;
	transition: .2s;
	content: "";
	position: absolute;
	bottom: 60px;
	left: 58%;
	width: 65px;
	height: 13px;
	background: url(../../_common/img/index/arrow.png) center no-repeat;
}
.entry:hover::before {
	width: 100%;
}
.entry:hover::after {
	left: 95%;
}
.entry {
	display: block;
	width: 100%;
}
.entry span {
	display: block;
	width: 100%;
	max-width: 343px;
	margin: 0 auto;
	background: url(../../_common/img/index/button_hover.png) center no-repeat;
	background-size: contain;
}
.entry span img {
	display: block;
	width: 100%;
	transition: .3s;
}
.entry:hover span img {
	opacity: 0;
}

@media screen and (max-width:980px) {
.entry {
	position: relative;
	width: 100%;
	margin: 0 auto 5em;
	text-align: center;
}
.entry::before {
	display: block;
	transition: .2s;
	transition-timing-function: ease-in-out;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	content: "";
	width: 0;
	height: 100%;
	background: #0a71b6;
}
.entry::after {
	position: absolute;
	bottom: 3.5em;
	left: 80%;
}
.entry:hover::after {
	left: 80%;
}
.entry span {
	display: block;
	width: 60%;
	background: url(../../_common/img/index/button_hover.png) center no-repeat;
	background-size: 100% auto;
}
}
