@charset "utf-8";

/* =============================================
	受験生応援キャンペーン
============================================= */
img{
	max-width: 100%;
	height: auto;
}

.font_red{
	color: #c01920;
}

h3.ttl_lv1{
	font-size: 1.8rem;
	line-height: 1.8;
}

.present_wrap{
	max-width: 720px;
	margin: 5em auto 0 auto;
}

/***リンクボタン***/
.btn_normal{
	display: block;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	width: 100%;
	margin: 1em auto;
	border-radius: 0.25em;
	position: relative;
	z-index: 1;
	box-shadow: 0 0 2px 0 rgba(0,0,0,0.3);
	text-shadow: 0 0 2px rgba(0,0,0,0.5);
}
.btn_normal::before{
	content: '';
	display: block;
	width: 0%;
	height: 100%;
	border-radius: 0.25em;
	background-color: rgba(0,0,0,0.25);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0;
	transition: width 0.5s, opacity 0.5s;
}
.btn_normal:hover::before{
	width: 100%;
	opacity: 1;
}
.btn_normal a{
	display: block;
	color: #fff;
	padding: 0.5em 2.5em 0.5em 1em;
	border: solid 2px #fff;
	border-radius: 0.25em;
	background-image: url("/nikken/guidance/img/icon_arrow.png");
	background-repeat: no-repeat;
	background-size: 1em auto;
	background-position: right 1em center;
}
.btn_close{
	display: block;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
	width: 100%;
	max-width: 420px;
	margin: 1em auto;
	padding: 0.5em;
	border-radius: 0.25em;
	background-color: #ccc;
	box-shadow: 0 0 2px 0 rgba(0,0,0,0.3);
}
.bg_blue{
	background-color: #5e67ae;
}

.bn_wrap{
	max-width: 720px;
	margin: 5em auto 0 auto;
	padding: 20px;
	border: solid 3px #5e67ae;
}
.bn_wrap_text p{
	font-size: 2rem;
	text-align: center;
}


/* ===========================================
	MediaQueries
=========================================== */
/* PC----------------------------- */
@media screen and (min-width: 768px){

}

/* スマホ----------------------------- */
@media screen and (max-width: 767px){
	.bn_wrap{
		padding: 1em;
	}
	.bn_wrap_text p{
		font-size: 1.6rem;
	}
}