@charset "UTF-8";

/*-------------------------------------------------
	共通設定
	数字	font-family: 'Lato', sans-serif;
	Gothic	font-family: 'Noto Sans JP', sans-serif;
	明朝	font-family: 'Noto Serif JP', serif;
*/
body {
	font-family: 'Noto Serif JP', serif;
	max-width: 800px;
	margin: 0 auto;
}

a {
	text-decoration: none;
}
img {
	max-width: 100%;
}

.container {
	display: flex;
	flex-direction: row;
}
aside {
	width: auto;
}

main {
	width: 100%;
	margin-top: 5px;
	margin-left: 5px;
}
article {
	border-width: 1px;
	border-style: solid;
	padding: 10px;
	border-radius: 10px;
}

/*-------------------------------------------------
	Page Header
*/
.page-header-top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	background: #0bd;
	color:#fff;
	padding: 10px;
	border-radius: 10px 10px 0px 0px;
	margin-top: 5px;
}

.page-header-top a	{
	background: #0bd;
	color:#fff;
	border-radius: 10px;
	margin-top: 5px;
	margin-left: 5px;
	cursor: pointer;
	display: block;
}

.page-header-top p {
	display: flex;
	flex-direction: row;
}
/*-------------------------------------------------
	Page Footer
*/
.page-footer {
	display: flex;
	flex-direction: column;
	justify-items: center;
	background: #0bd;
	color:#fff;
	padding: 10px;
	border-radius: 0px 0px 10px 10px;
	margin-top: 5px;
}

.page-footer p {
	text-align: center;
}

/*-------------------------------------------------
	Access counter
*/
.AccessCnt {
	font-family: 'Lato', sans-serif;
	display: flex;
	flex-direction: column;
}
.AccessCnt strong {
	font-size: 1.5em;
}
.AccessCnt-item {
	display: flex;
	flex-direction: row;
	text-align: right;
	align-items: flex-end;
	white-space: nowrap;
	padding: 3%;
}

/*-------------------------------------------------
	Main link 設定
*/
.main-link {
	display: flex;
	flex-direction:column;
	font-size: 1.25rem;
	list-style: none;
	justify-content: center;
}
.main-link div {
	text-align: center;
	width: 150px;
}
.main-link a	{
	background: #0bd;
	color:#fff;
	border-radius: 10px;
	margin-top: 5px;
	margin-left: 5px;
	cursor: pointer;
	display: block;
}
.main-link a:hover	{
	background: #0090aa;
}

/*-------------------------------------------------
	Responsive Web Design
*/
@media (max-width: 570px) {
.main-link {
	flex-direction: row;
}
.container {
	flex-direction: column-reverse;
}

.page-header-top {
	flex-direction: column;
}

.AccessCnt {
	flex-direction: row;
}

.AccessCnt strong {
	font-size: 1em;
}
}



/*-------------------------------------------------
	
*/


