.select-content{
	display: flex;
	align-items: center;
	width: 100%;
	height: 100vh;
}
.select-left{
	width: 50%;
	text-align: center;
}

.select-right{
	width: 50%;
}

.attention-text{
	font-size: 1.8rem;
}

.link-title{
	display: block;
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 170px;
	background-color: rgba(255,255,255,0.70);
	/*position: relative;
 	display: flex;
 	justify-content: center;
 	align-items: center;*/
	overflow: hidden;
 	border: none;
	
}

.link-title:after {
 	content: " ";
 	width: 0%;
 	height: 100%;
 	background: #FFF;
 	position: absolute;
	transition: all 0.4s ease-in-out;
	right: 0;
}

.link-title:hover::after {
 	right: auto;
 	left: 0;
 	width: 100%;
}

@keyframes scaleUp {
 0% {
  	transform: scale(1);
 }

 50% {
  	transform: scale(0.95);
 }

 100% {
  	transform: scale(1);
 }
}

.title-en{
	position: absolute;
	z-index: 1000;
	bottom: 80px;
	left: 30px;
	font-family: "Montserrat", sans-serif;
	font-size: 1.8rem;
	letter-spacing: .08em;
	display: block;
	margin-bottom: 15px;
	transition: all 0.3s ease-in-out;
}

.title-jp{
	position: absolute;
	z-index: 1000;
	bottom: 20px;
	left: 30px;
	font-size: 3.0rem;
	font-weight: 600;
	letter-spacing: .1em;
	display: block;
	transition: all 0.3s ease-in-out;
}

.link-title:hover .title-en ,
.link-title:hover .title-jp{
 	color: #0071C5;
}

.select-item-fresh{
	background-image:url("../../img/mv_fresh.jpg");
	background-repeat:no-repeat;
	background-size: cover;
	background-position: top center;
	width: 100%;
	height: 50vh;
	position: relative;
	display: block;
}

.select-item-career{
	background-image: url("../../img/mv_career.jpg");
	background-repeat:no-repeat;
	background-size: cover;
	background-position: top center;
	width: 100%;
	height: 50vh;
	position: relative;
	display: block;
}

@media all and (max-width: 915px){
	.select-content{
	display: block;
	width: 100%;
	height: 100vh;
}

.select-left{
	width: 100%;
	text-align: center;
}

.select-right{
	width: 100%;
}

.attention-text{
	font-size: 1.1rem;
	margin: 30px 0;
}

.link-title{
	height: 80px;
}

.title-en{
	bottom: 43px;
	left: 20px;
	font-size: 1.0rem;
	margin-bottom: 0;
}

.title-jp{
	bottom: 3px;
	left: 20px;
	font-size: 1.5rem;
	letter-spacing: .1em;
}

.select-item-fresh{
	width: 100%;
	height: 100%;
	background-image: none;
}

.select-item-career{
	width: 100%;
	height: 100%;
	background-image: none;
}
}

button {
 position: relative;
 display: flex;
 justify-content: center;
 align-items: center;
 border-radius: 5px;
 background: #183153;
 font-family: "Montserrat", sans-serif;
 box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
 overflow: hidden;
 border: none;
}

button:after {
 content: " ";
 width: 0%;
 height: 100%;
 background: #FFD401;
 position: absolute;
 transition: all 0.4s ease-in-out;
 right: 0;
}

button:hover::after {
 right: auto;
 left: 0;
 width: 100%;
}

button span {
 text-align: center;
 text-decoration: none;
 width: 100%;
 padding: 18px 25px;
 color: #fff;
 font-size: 1.125em;
 font-weight: 700;
 letter-spacing: 0.3em;
 z-index: 20;
 transition: all 0.3s ease-in-out;
}

button:hover span {
 color: #183153;
 animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
 0% {
  transform: scale(1);
 }

 50% {
  transform: scale(0.95);
 }

 100% {
  transform: scale(1);
 }
}
