<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */
/*--------------  Navigation Menu START ---------------*/
h3#menu_title{
	position:fixed;
	top:10px;
	left:20px;
	margin-left:20px;
	width:125px;
	height:20px;
	display:block;
	float:left;
	margin:0px;
	padding:10px 0px 0px 20px;
	background-image:url(../images/menu_closed_logo.png);
	background-repeat:no-repeat;
	background-position:left;
	transition: background-image 6s;
	z-index:3;
}
h3#menu_title img {
	position:fixed;
	z-index:1;
}
h3#menu_title:hover{
	background-image:url(../images/menu_opened_logo.png);
}
ul#menu_box {
	position:fixed;
	top:-30px;
	left:-543px;
	background-image:url(../images/menu_triangle_bg.png);
	background-repeat:no-repeat;
	
	background-position:-100px 0px;
	display:block;
	margin:0px;
	padding-top:70px;
	padding-left:20px;
	height:600px;
	width:400px;
	font-size:small;
	z-index:0;
	/*transition:left 2s;
	-webkit-transition:all 1s;*/
}

li.pagelink a:link,
li.pagelink a:visited, 
li.pagelink a:hover, 
li.pagelink a:active {
	color:black;	
	text-decoration:none;
}
li.pagelink a {
	font-size:12px;	
	font-weight:700;
}


li.pagelink {
	display:block;
	background-image:url(../images/key.png);
	background-position:left;
	background-repeat:no-repeat;
	height:20px;
	width:auto;
	padding:0px;
	padding-left:30px;
	padding-bottom:5px;
	margin-top:15px;
	
}
ul#menu_box li{
margin-top:15px;
}

ul.move_menu{
	animation-name: slidein;
	animation-duration:2s;
	animation-fill-mode:forwards;
	/*moz*/
	-moz-animation-name: slidein;
	-moz-animation-duration:2s;
	-moz-animation-fill-mode:forwards;
	/*webkit*/
	-webkit-animation-name: slidein;
	-webkit-animation-duration:2s;
	-webkit-animation-fill-mode:forwards;
	/*o*/
	-o-animation-name: slidein;
	-o-animation-duration:2s;
	-o-animation-fill-mode:forwards;
	/*ms*/
	-ms-animation-name: slidein;
	-ms-animation-duration:2s;
	-ms-animation-fill-mode:forwards;
}
h3.move_menu{
	animation-name: show;
	animation-duration:2s;
	animation-fill-mode:forwards;
	/*moz*/
	-moz-animation-name: show;
	-moz-animation-duration:2s;
	-moz-animation-fill-mode:forwards;
/*webkit*/
	-webkit-animation-name: show;
	-webkit-animation-duration:2s;
	-webkit-animation-fill-mode:forwards;
/*o*/
	-o-animation-name: show;
	-o-animation-duration:2s;
	-o-animation-fill-mode:forwards;
/*ms*/
	-ms-animation-name: show;
	-ms-animation-duration:2s;
	-ms-animation-fill-mode:forwards;
}
ul.back_menu{
	animation-name: slideout;
	animation-duration:2s;
	animation-fill-mode:forwards;
	/*moz*/
	-moz-animation-name: slideout;
	-moz-animation-duration:2s;
	-moz-animation-fill-mode:forwards;
/*webkit*/
	-webkit-animation-name: slideout;
	-webkit-animation-duration:2s;
	-webkit-animation-fill-mode:forwards;
/*o*/
	-o-animation-name: slideout;
	-o-animation-duration:2s;
	-o-animation-fill-mode:forwards;
/*ms*/
	-ms-animation-name: slideout;
	-ms-animation-duration:2s;
	-ms-animation-fill-mode:forwards;
}
h3.back_menu{
	animation-name: backposition;
	animation-duration:2s;
	animation-fill-mode:forwards;
	/*moz*/
	-moz-animation-name: backposition;
	-moz-animation-duration:2s;
	-moz-animation-fill-mode:forwards;
	/*webkit*/
	-webkit-animation-name: backposition;
	-webkit-animation-duration:2s;
	-webkit-animation-fill-mode:forwards;
	/*o*/
	-o-animation-name: backposition;
	-o-animation-duration:2s;
	-o-animation-fill-mode:forwards;
	/*ms*/
	-ms-animation-name: backposition;
	-ms-animation-duration:2s;
	-ms-animation-fill-mode:forwards;
	}
@keyframes slidein {
	to {left:0px;display:block;position:fixed;z-index:1;}
}
@-webkit-keyframes slidein {
	to {left:0px;display:block;position:fixed;z-index:1;}
}
/*moz*/
@-moz-keyframes slidein {
	to {left:0px;display:block;position:fixed;z-index:1;}
}
/*o*/
@-o-keyframes slidein {
	to {left:0px;display:block;position:fixed;z-index:1;}
}
/*ms*/
@-ms-keyframes slidein {
	to {left:0px;display:block;position:fixed;z-index:1;}
}

@keyframes show {
	to {position:fixed;top:10px;z-index:3;}
}
@-webkit-keyframes show {
	to {position:fixed;top:10px;z-index:3;}
}
/*moz*/
@-moz-keyframes show {
	to {position:fixed;top:10px;z-index:3;}
}
/*o*/
@-o-keyframes show {
	to {position:fixed;top:10px;z-index:3;}
}
/*ms*/
@-ms-keyframes show {
	to {position:fixed;top:10px;z-index:3;}
}

@keyframes slideout {
	from {left:0px;z-index:1;}
	to {left:-543px;z-index:1;}
}
@-webkit-keyframes slideout {
	from {left:0px;z-index:1;}
	to {left:-543px;z-index:1;}
}
/*moz*/
@-moz-keyframes slideout {
	from {left:0px;z-index:1;}
	to {left:-543px;z-index:1;}
}
/*o*/
@-o-keyframes slideout {
	from {left:0px;z-index:1;}
	to {left:-543px;z-index:1;}
}
/*ms*/
@-ms-keyframes slideout {
	from {left:0px;z-index:1;}
	to {left:-543px;z-index:1;}
}

@keyframes backposition {
	to {position:fixed;}
}
@-webkit-keyframes backposition {
	to {position:fixed;}
}
/*moz*/
@-moz-keyframes backposition {
	to {position:fixed;}
}
/*o*/
@-o-keyframes backposition {
	to {position:fixed;}
}
/*ms*/
@-ms-keyframes backposition {
	to {position:fixed;}
}
/*--------------  Navigation Menu END ---------------*/

/*---------------  Fotter START ------------------*/
nav.footer_navi {
	width:100%;
	height:80px;
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:center;
	background-color:#EEEEEE;
	text-align:center;
}

nav.footer_navi a {
	margin:0px 20px;
}
span.sns {
	margin-left:20px;
}
span.sns a {
	margin:0px 5px;	
}
footer h2{
	text-align:center;
	height:30px;
	width:100%;
	margin:0px;
	paddin:0px;
	display:block;
}
footer p img{
	margin:0px;
}
footer p {
	text-align:center;	
	width:100%;
	margin:0px;
	padding:0px;
}
footer {
	position:fixed;
	bottom:0px;
	width:100%;	
	background-color:#eeeeee;
}

/*------------- Footer END ---------------------*/
</pre></body></html>