@charset "UTF-8";
html {
	font-size: 62.5%;
}
body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-size-adjust: 100%;
	overflow-x: hidden;
	background-color: #fff;
	color: #4d4d4d;
	font-size: 1.4em;
	line-height: 1.75;
	touch-action: manipulation;
}

.outer {
	padding: 5%;
}
.logo {
	margin-bottom: 20px;
	text-align: center;
}
.inner {
	padding: 20px;
	border: 1px solid #aaa;
}
.title {
	margin-bottom: 30px;
	font-family: 'Zen Old Mincho', sans-serif;
	font-size: 2.2rem;
	text-align: center;
	line-height: 1.5;
}
.date {
	margin-top: 2.5em;
}
.contact {
	margin: 30px -15px -15px;
	padding: 20px;
	background: #f7f7f7;
}
.contact__heading {
	font-size: 1.1em;
	font-weight: bold;
}
.btn {
	display: block;
	position: relative;
	max-width: 350px;
	margin: 40px auto -15px;
	padding: 16px;
	border: none;
	background: #808080;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
	text-decoration: none;
	transition: all .2s;
	line-height: 1;
	cursor: pointer;
}
.btn:before {
	display: inline-block;
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all .3s;
	transition: all .3s;
	opacity: 0;
}
.btn:hover:before {
	opacity: 1;
	right: 10px;
}
@media (min-width: 45em) {
	body {
		font-size: 1.5em;
		text-align: center;
	}
}
