@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Lancelot);

/* CSS Document */

*,
::before,
::after {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

a {
	color: inherit;
	text-decoration: none;
}

body {
	font-family: sans-serif;
	background-color: rgb(14, 14, 73);
	margin: 0;
}

h1 {
	font-size: 20px;
	margin-top: 0;
	margin-bottom: 0;
}

p {
	line-height: 1.5
}

img {
	max-width: 100%;
}

/* Header */

.header {
	top: 0;
	left: 0;
	right: 0;
  z-index: 10;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.header-image {
	margin-left: auto;
	margin-right: auto;
}

.toggle-menu-button {
	display: none;
}

.site-title {
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 24px;
	font-weight: 600;
	margin-top: 10px;
	margin-left: 15px;
	margin-right: auto;
	margin-bottom: 0;
	color: #FF9;
	text-shadow: 2px 2px 2px #000099;
	position: absolute;
	top: 10px;
}

.site-title-sub1 {
	font-family: 'Lancelot', cursive;
	font-size: 24px;
	font-weight: 700;
	margin-left: 15px;
	margin-right: auto;
	color: #FF9;
	text-shadow: 1px 1px 1px #000099;
	position: absolute;
	top: 60px;
}

.header-site-menu {
	/*	position: absolute;*/
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	height: 10px;
  z-index: 10;
}

.site-menu {
	margin-left: auto;
	margin-right: 10px;
	text-align: right;
	margin-top: 150px;
	margin-bottom: 20px;
}

.site-menu a {
	color: #F60;
	text-decoration: none;
}

.site-menu ul {
	display: flex;
	list-style-type: none;
	margin-top: 0;
	margin-bottom: 0;
	padding-left: 0;
	font-size: 0;
}

.site-menu li {
	display: inline-block;
	font-size: 14px;
	border-right: solid 1px #999999;
	padding-left: 5px;
	padding-right: 5px;
	color: #FC0;
	text-shadow: 1px 1px 1px black;
}

.site-menu li:first-child {
	border-left: solid 1px #999999;
}

/* section */

section {
	font-size: 13px;
	background-color: #CFC;
	width: 800px;
	margin-left: auto;
	margin-right: auto;
	border: solid 1px #aaaaaa;
	padding: 30px;
	box-sizing: border-box;
	margin-bottom: 15px;
	box-shadow: 2px 2px 3px black;
	border-radius: 10px;
	overflow: hidden;
}

/* Footer */

footer {
	/*	width: 800px; */
	font-size: 13px;
  margin-left: 20px;
  margin-right: 10px;
  margin-bottom: 10px;
	color: gray;
	clear: both;
	text-shadow: 1px 1px 1px black;
}

a {
	color: #966023;
}

a:hover {
	color: red;
}

@media (max-width: 800px) {
	.toggle-menu-button {
		display: block;
		width: 44px;
		height: 34px;
		background-image: url(../image/icon-menu.png);
		background-size: 50%;
		background-position: center;
		background-repeat: no-repeat;
	/*	background-color: transparent;*/
		border: none;
		border-radius: 0;
		outline: none;
		position: fixed;
		top: 0;
		right: 0;
	}

	.header {
	/*	position: fixed; */
		top: 0;
		left: 0;
		right: 0;
		height: 100px;
		z-index: 10;
	}

	.header-inner {
		padding-left: 20px;
		padding-right: 20px;
		height: 100%;
		position: relative;
		display: flex;
	}

	.header-site-menu {
		position: fixed; /* 	position: fixed; */
		top: 90px;
		left: 0;
		right: 0;
		background-color: #736E62;
		padding-top: 10px;
		padding-bottom: 50px;
		display: none;
	}

	.header-site-menu.is-show {
		display: block;
	}

	main {
		padding-top: calc( 100vw * 1500 / 5000 - 100px) ;
	}

	section {
		width: auto; 
	}

	.site-menu {
		margin-left: auto;
		margin-right: 10px;
		text-align: right;
		margin-top: auto;
		margin-bottom: 20px;
	}

	.site-menu a {
		color: yellow;
		text-decoration: none;
	}

	.site-menu ul {
		display: block;
		text-align: center;
		list-style-type: none;
	}

	.site-menu li {
		margin-top: 5px;
		display: inline;
		font-size: 14px;
	}

	.update-information {
		display: none;
	}
}