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

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


/*
--------------------------------------------------------------------------------
header
-------------------------------------------------------------------------------
*/
#header {
	margin: 0 0 5vw;
	border-bottom: solid 0.4vw 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 2vw;
	padding: 0 0 1vw;
	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: 1.5em;
}


#header .desc {
	text-align: center;
	font-size: 0.8em;
}


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



/*
--------------------------------------------------------------------------------
h-nav
-------------------------------------------------------------------------------
*/
#header .h-nav {
	padding: 0 0 10px;
}
#header .h-nav nav ul {
	display: flex;
	justify-content: center;
	
	width: 100%;
}
#header .h-nav nav ul li {
	margin: 0 1vw;
}
#header .h-nav nav ul li a {
	display: block;
	padding: 1vw 2vw;
	text-decoration: none;
	
	border-radius: 1vw;
	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;
}






