@charset 'UTF-8';





/*

	Base

*/
@font-face {
	font-family: 'tsukushi';
	font-style: normal;
	font-weight: normal;
	src: url("fonts/tsukushi-regular.woff") format('woff');
}
@font-face {
	font-family: 'tsukushi';
	font-style: normal;
	font-weight: bold;
	src: url("fonts/tsukushi-bold.woff") format('woff');
}

body {
	background: repeating-linear-gradient(
		90deg,
		#d9f2e5,
		#d9f2e5 2px,
		#ffffff 2px,
		#ffffff 4px
		);
	font-family: 'tsukushi', sans-serif;
	color: #333333;
	font-size: 16px;
	font-size: 1.6rem;
}
.container {
	width: 100%;
	max-width: 1020px;
	margin: 0 auto;
	padding: 1em 0;
	box-sizing: border-box;
}





/*

	header

*/
header {
	position: relative;
	display: block;
	background-color: #FFFFFF;
}
header:after {
	position: absolute;
	bottom: 0;
	display: block;
	content: "";
	width: 100%;
	height: 4em;
	background-image: url('./images/bar.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom;
}
header .description {
	background-color: #7bc49b;
	color: #FFFFFF;
	text-align: center;
}
header>.container {
	position: relative;
	max-width: 700px;
	padding-bottom: 4.5em;
}
header .container a {
	display: block;
	margin: 3em 0;
	width: 75%;
	color: inherit;
	text-align: center;
}
header .container a h1,
header .container a p {
	display: inline;
	font-family: 'tsukushi';
	font-size: 2em;
	font-weight: bold;
	text-align: center;
	color: #6B5D51;
}
header .container a h1 span,
header .container a p span {
	display: block;
	margin-top: 1em;
	font-size: 0.5em;
}
header .container img {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 35%;
	height: auto;
}





/*

	footer

*/

/*  links  */
footer .links .container {
	overflow: hidden;
}
footer .links .container a {
	float: left;
	display: block;
	width: 25%;
	padding: 0.5em;
	box-sizing: border-box;
}
footer .links .container a.rsn,
footer .links .container a.assistone {
	width: 50%;
}
footer .links .container a img {
	width: 100%;
	height: auto;
}

/*  copyright  */
footer .copyright {
	background-color: #FFFFFF;
}
footer .copyright .container {
	position: relative;
}
footer .copyright .container a {
	display: inline-block;
	line-height: 0;
}
footer .copyright .container a.twc img {
	width: auto;
	height: 3em;
}
footer .copyright .container small {
	position: absolute;
	top: 2.5em;
	right: 0;
	display: block;
	text-align: right;
}




