
body {
	margin: 0 0 100px;
	padding: 0;
	line-height: 1.5;
	text-size-adjust: 100%;
	font-weight: 400;
	font-size: 16px;
	color: rgba(50, 50, 50, 1);
	background: #eee;
}

/*
--------------------------------------------------------------------------------
container
-------------------------------------------------------------------------------
*/
#container {
	padding: 10px;
}
#container .container-inner {
	padding: 20px;
	border-radius: 5px;
	border-top: solid 5px rgba(100, 150, 230, 1);
	background: #fff;
}


/*
--------------------------------------------------------------------------------
header
-------------------------------------------------------------------------------
*/
#header {
	margin: 0 0 5em;
	border-bottom: solid 2px rgba(100, 150, 230, 1);
}


/*
----------------------------------------
h-logo
----------------------------------------
*/
#header .h-logo {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	
	text-align: center;
}
#header .h-logo h1 {
	margin: 0 0 20px;
	padding: 0 0 10px;
	position: relative;
}
#header .h-logo h1::after {
	content: '';
	
	position: absolute;
	bottom: 0;
	right: 0;
	left: calc(100% / 2 - 25px);
	display: block;
	width: 50px;
	height: 2px;
	background: rgba(100, 150, 230, 1);;
}
#header .h-logo h1 a {
	text-decoration: none;
	font-weight: 300;
	font-size: 2em;
}


#header .h-logo {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	
	text-align: center;
}


/*
----------------------------------------
desc
----------------------------------------
*/
#header .desc {
	padding: 0 0 1em;
	text-align: center;
}



/*
--------------------------------------------------------------------------------
h-nav
-------------------------------------------------------------------------------
*/
#header .h-nav {
	padding: 0 0 0.3em;
}
#header .h-nav nav ul {
	display: flex;
	justify-content: center;
	
	width: 100%;
}
#header .h-nav nav ul li {
	margin: 0 5px;
}
#header .h-nav nav ul li a {
	display: block;
	padding: 10px 20px;
	text-decoration: none;
	
	border-radius: 5px;
	background: rgba(255, 255, 255, 1);
}
#header .h-nav nav ul li a:hover {
	background: rgba(230, 230, 230, 1);
}



/*
--------------------------------------------------------------------------------
copyright
-------------------------------------------------------------------------------
*/
#footer .copyright {
	border-top: solid 1px #ccc;
	padding: 10px;
	text-align: center;
}
#footer .copyright small {
	font-size: 12px;
}






