@charset "utf-8";

/**
 *
*  お申し込み index
 *
 */

/*--------------------------------------------------------------------------
   overwrite  - 共通CSSの上書き -
---------------------------------------------------------------------------*/


/*--------------------------------------------------------------------------
   apply
---------------------------------------------------------------------------*/
.apply{
	padding: 75px 0 110px;
}

/* apply__area
-----------------------------------------------------------------*/
.apply__area + .apply__area{
	margin-top: 60px;
}
.apply__ttl{
	margin-bottom: 40px;
}
.apply__list{
	overflow: hidden;
	margin: -10px;
}
.apply__item{
	float: left;
	width: 230px;
	margin: 10px;
}
.apply__item:nth-child(4n+1) {
	clear: left;
}
.apply__item a{
	display: block;
}
.apply__item .logo{
	display: table;
	box-sizing: border-box;
	position: relative;
	width: 100%;
	height: 145px;
	border: 2px solid #edeeef;
	background: #fff;
	-webkit-transition: border .3s cubic-bezier(0.165, 0.84, 0.44, 1);
					transition: border .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.modePC .apply__item a:hover .logo{
	border-color: #00aae2;
}
.apply__item .logo:before{
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 6px 6px;
	border-color: transparent transparent #151f63 transparent;
}
.apply__item .logo img{
	width: 100%;
	height: auto;
}
.apply__item .name{
	margin-top: 8px;
	color: #9189c2;
	text-decoration: underline;
}
.apply__item .name span{
	display: inline-block;
}
.modePC .apply__item a:hover .name span{
	text-decoration: underline;
}

/* media query -> sp
=================================================================*/
@media screen and (max-width: 768px){
	.apply{
		padding: 35px 15px 45px;
	}

	/* apply__area
	-----------------------------------------------------------------*/
	.apply__area + .apply__area{
		margin-top: 35px;
	}
	.apply__ttl{
		margin-bottom: 20px;
	}
	.apply__list{
		margin: -2% -1%;
	}
	.apply__item{
		width: 48%;
		margin: 2% 1%;
	}
	.apply__item .logo{
		height: 100px;
		border-width: 1px;
	}
	.apply__item .logo:before{
		border-width: 0 0 4px 4px;
	}
	.apply__item .logo span img{
		max-width: 90px;
	}
}