* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	border: 0px solid gray;
	font-family: "Noto Sans Japanese", sans-serif;
	font-weight: 300;
	list-style: none;
	text-decoration: none;
	vertical-align: top;
	word-break: break-all;
}


html {
	width: 100%;
	height: 100%;
		
}
body {
	width: 100%;
	height: 100%;
}

a {
	color: black;
}
#header {
	width: 100%;
	height: 50px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-right: 0px;
	position: fixed;
	background-color: rgba(255, 255, 255, 0.97);
	/*background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));*/
	z-index: 998;
	transition: height .1s;
}

#title {
	width: calc(100% - 50px);
	height: 50px;
	float: left;
	padding-left: 10px;
}

#title h1 {
	width: 100%;
	height: 100%;
	letter-spacing: 2px;
	font-weight: normal;
	padding: 0px 0 0px 0;
	line-height: 50px;
}
#title h1 a {
	letter-spacing: 2px;
	font-weight: normal;
	font-size: 0.6em;
	color: black;
}
#header #menuButton {
	width: calc(50px);
	height: 100%;
	float: left;
	position: relative;
}
#header #menuButton #menuOpen {
	width: calc(100%);
	height: 100%;
	display: block;
	position: absolute;
	padding: 15px;
}
#header #menuButton #menuOpen #menuOpenOuter {
	width: calc(100%);
	height: 100%;
}
#header #menuButton #menuOpen #menuOpenOuter .menuLineBox {
	width: calc(100%);
	height: calc(100% / 5);
}
#header #menuButton #menuOpen #menuOpenOuter .menuLineBox .menuLine {
	width: calc(100%);
	height: calc(100%);
	position: relative;
}
#header #menuButton #menuOpen #menuOpenOuter .menuLineBox .menuLine .line {
	width: calc(100%);
	height: calc(2px);
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
#header #menuButton #menuOpen #menuOpenOuter .menuLineBox:nth-child(odd) .menuLine .line {
	background-color: black;
}
#header #menuButton #menuOpen #menuOpenOuter .menuLineBox:nth-child(even) .menuLine .line {
}
#header #menuButton #menuClose {
	width: calc(100%);
	height: 100%;
	display: none;
	position: absolute;
	padding: 15px;
}
#header #menuButton #menuClose #menuCloseOuter {
	width: calc(100%);
	height: 100%;
	position: relative;
}
#header #menuButton #menuClose #menuCloseOuter .menuLineBox {
	width: calc(100%);
	height: calc(100%);
	position: absolute;
}
#header #menuButton #menuClose #menuCloseOuter .menuLineBox .menuLine {
	width: calc(100%);
	height: calc(100%);
	position: relative;
}
#header #menuButton #menuClose #menuCloseOuter .menuLineBox .menuLine .line {
	width: calc(100%);
	height: calc(2px);
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transform: rotate(45deg);
	background-color: black;
}
#header #menuButton #menuClose #menuCloseOuter .menuLineBox:first-child .menuLine .line {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#header #menuButton #menuClose #menuCloseOuter .menuLineBox:last-child .menuLine .line {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#navigation {
	width: 200px;
	position: fixed;
	top: 50px;
	right: -100%;
	clear: both;
	opacity: 100%;
	/*animation: fadeIn 0.6s ease 0s 1 normal;*/
	transition: right 0.7s ease-in-out;
	z-index: 994;
	background-color: rgba(255, 255, 255, 0);
	display: block;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@keyframes fadeOut {
    0% {opacity: 1}
    100% {opacity: 0}
}

@-webkit-keyframes fadeOut {
    0% {opacity: 1}
    100% {opacity: 0}
}
#navigation #navigationList {
	width: 100%;
	height: 100%;
}
#navigation #navigationList ul {
	width: 100%;
	height: 100%;
	padding: 10px 20px 0 0px;
}
#navigation #navigationList ul li {
	width: calc(100%);
	text-align: right;
	clear: both;
}
#navigation #navigationList ul li a {
	width: calc(100%);
	height: 100%;
	font-size: 0.9em;
	letter-spacing: 1px;
	display: block;
	color: black;
	line-height: 30px;
}
#navigation #navigationList ul li ul{
	width: calc(100%);
	padding: 0px 0px 0 0px;
}
#navigation #navigationList ul li ul li{
	width: calc(100%);
	font-size: 0.8em;
	line-height: 40px;
	color: black;
	letter-spacing: 2px;
}
#main {
	width: 100%;
	height: 100%;
	z-index: 995;
			
}
#footer {
	width: 100%;
	height: 30px;
	text-align: center;
}
#footer p {
	width: 100%;
	height: 100%;
	line-height: 30px;
	font-size: 0.7em;
}


@media all and (min-width: 480px) {
	
	#header {
		width: 300px;
		height: 100%;
		transition: none;
		background-color: rgba(255, 255, 255, 0);
	}
	
	#title {
		width: 100%;
		height: 100px;
	}
	
	
	#header #menuButton {
		display: none;
	}
	
	#navigation {
		width: calc(300px);
		display: block;
		opacity: 1;
		z-index: 998;
		background-color: rgba(255, 255, 255, 0);
		left: 0;
	}
	#navigation #navigationList ul {
		padding: 0px 0px 0 10px;
	}
	#navigation #navigationList ul li {
		width: calc(100%);
		float: none;
		text-align: left;
	}
	#navigation #navigationList ul li a {
	}
		
	#footer {
		width: calc(100% - 300px);
		height: 30px;
		text-align: center;
		margin-left: 300px;
	}
	#footer p {
		width: 100%;
		height: 100%;
		line-height: 30px;
		font-size: 1em;
	}

}

