
body {
	position: relative;
	width: 100%;
	height: 100%;
	background: #d6e6f2;
	background: -moz-linear-gradient(-45deg,  #d6e6f2 0%, #d5eff1 100%);
	background: -webkit-linear-gradient(-45deg,  #d6e6f2 0%,#d5eff1 100%);
	background: linear-gradient(135deg,  #d6e6f2 0%,#d5eff1 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6e6f2', endColorstr='#d5eff1',GradientType=1 );
}

#contents {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 600px;
	height: 300px;
	margin: -150px 0px 0px -300px;
	box-sizing: border-box;
	background: #fff;
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0 0 15px rgba(45,86,130,.3);
}

#contents h1 {
	text-align: center;
	color: #2d5682;
	font-weight: bold;
	font-size: 1.6rem;
	padding-bottom: 20px;
	letter-spacing: .2rem;
}

#contents p {
	font-size: .9rem;
	line-height: 160%;
	color: #333;
}

#contents strong {
	display: block;
	text-align: center;
	font-size: 1.1rem;
	line-height: 160%;
	color: #333;
	padding-top: 20px;
}

#contents .btnarea {
	overflow: hidden;
	padding-top: 10px;
}

a.btn{
	display: block;
	margin: 0 auto;
	background: #73bcdc;
	background: -moz-linear-gradient(left,  #73bcdc 0%, #337fcf 100%);
	background: -webkit-linear-gradient(left,  #73bcdc 0%,#337fcf 100%); 
	background: linear-gradient(to right,  #73bcdc 0%,#337fcf 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#73bcdc', endColorstr='#337fcf',GradientType=1 );
	text-align: left;
	color: #fff;
	padding: 15px;
	transition: .3s;
	width: 48%;
	float: left;
	box-sizing: border-box;
}

a.btn:nth-child(2){
	margin-left: 4%;
	background: #999;
	background: -moz-linear-gradient(left,  #bbb 0%, #999 100%);
	background: -webkit-linear-gradient(left,  #bbb 0%,#999 100%); 
	background: linear-gradient(to right,  #bbb 0%,#999 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bbb', endColorstr='#999',GradientType=1 );
}

a.btn:hover {
	opacity: .7;
}

a.btn span {
	display: block;
	background: url(../img/cursor_btn.png) no-repeat right center;
	background-size: 13px 18px;
}


@media only screen and (max-width: 767px) {

#contents {
	top: 25%;
	left: auto;
	width: 94%;
	height: auto;
	margin: 0 3% 0;
}

}

@media only screen and (max-width: 480px) {

#contents p {
	font-size: .85rem;
}

#contents {
	top: 20%;
	padding: 20px;
}

}

