@charset "UTF-8";

header {
	padding:10px 20px;
	border-bottom:solid 1px #ccc;
	text-align:right;
}
header .logo {
	width:300px;
	margin-left:auto;
}

section {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
}
.block	{
	text-align:center;
	padding:50px;
	border:solid 1px #666;
	box-sizing:border-box;
}
.block h2	{
	font-size:3rem;
	text-align:center;
	margin-bottom:3rem;
	line-height:120%;
}
.block p	{
	font-size:1.5rem;
	text-align:center;
	margin-bottom:3rem;
	line-height:120%;
}
.block .btn	{
	font-size:2rem;
	margin-bottom:2rem;
}
.block .btn a	{
	text-decoration:underline
}
.block .btn a:hover	{
	text-decoration:none
}
@media screen and (max-width: 1024px) {
	header .logo {
		width:200px;
		margin-left:auto;
	}
	.block	{
		padding:50px 15px;
	}
	.block .btn	{
		font-size:1.5rem;
	}
}