@charset "utf-8";

/*------------------------------
	fonts
------------------------------*/


@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap&subset=japanese');

/*
"Noto Serif JP"
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP&display=swap&subset=japanese');
*/

/*------------------------------
	contents
------------------------------*/

html {
}

body {
	color: #000;
	font: 16px/1.6 "Noto Sans JP", meiryo, sans-serif;
}

header .container,
#topicpath,
main > section,
footer .container {
	width: 1000px;
	margin: auto;
}

a {
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}

/*--------------------------------------
	header
--------------------------------------*/
header {
}

header nav {
}

header nav li {
}

header nav li a {
}

header nav li a:hover,
header nav li a:focus {
}

/*--------------------------------------
	topicpath
--------------------------------------*/
#topicpath {
	list-style: none;
}

#topicpath li {
	display: inline;
	margin: 0;
}
#topicpath li+li::before {
	content: ">";
	padding: 0 10px;
}

/*--------------------------------------
	main
--------------------------------------*/
main {
	display: block;
	padding-top: 20px;
}

main > section {

}

main > section > section {

}


h2 {
	margin-bottom: 5px;
	font-size: 1.5em;
	text-align: center;
}

h3 {

}

/*--------------------------------------
	header
--------------------------------------*/
header {
	border-bottom: double 5px #000;
}

header .container {
	padding: 10px 0;
}

header .brand {
	font-size: 2em;
}

/*--------------------------------------
	footer
--------------------------------------*/
footer {
	margin-top: 30px;
	text-align: center;
	border-top: solid 1px #000;
}

footer .container {
	width: 1000px;
	padding: 10px 0;
	text-align: right;
}
footer .container a {
	display: inline-block;
	margin-left: 20px;
	padding: 5px 10px;
	border: solid 2px #ccc;
	border-radius: 10px;
	color: inherit;
	text-decoration: none;
	background: #eee;
}
footer .container a:hover {
	border-color: #aaa;
	background: #ccc;
}