　charset "utf-8";"

@font-face {
    font-family: 'Bootyfont';  
    src: url('../font/Bootyfont.otf')  format('otf');
}

@import url('https://fonts.googleapis.com/css2?family=Qwitcher+Grypen&display=swap');

@import url("animation.css");

html,body {
	margin: 0;
	padding: 0;
	height: 100vh;
}	

body{
	overflow: hidden ;
	background: #000 url(../images/original.png) repeat center center/400px;
	text-shadow: 3px 3px 1px rgba(128,64,0,0.7)
}	

.animations{
	animation-timing-function: ease-on-out;
	animation-iteration-count:  infinite;
	animation-direction: alternate;
	animation-duration: 2.0s;
	width: 60%;
}

.keyframe1{
	animation-name: anim_v;
}

@keyframes anim_v {
	0% {
		transform: translate(0, 0px);
	}
	100% {
		transform: translate(0, 10px);
	}
}



.headerFixed{
min-height: 100vh; 
	position: relative; 
    padding-top : 0px; 
    box-sizing: border-box;  
}

header {
	text-align: center;
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
/*	background: #a62 ;*/
/*	height:50%;*/
  
   /*width:100%*/
  /*  justify-content:center;*/
  /* align-items:bottom;*/
}
/*
header img{
	position: absolute;
	bottom: 0
 }*/
    
main{
	text-align: center;
	font-family: "Bootyfont","Arial Rounded MT Bold","Arial","Arial Black","Helvetica Neue","ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

a {
	color: #fa0;	
	transition: all 1.5s 0s ease-in;
}

nav {
margin: 0;
padding: 0;
}

img {
border: none;
max-width: 100%;
height: auto;
vertical-align: middle;
}


#menubar a{ 
	font-family: "Bootyfont";
	font-size: 20px;
 	display: block;text-decoration: none;
	display: inline-block;
	transition: all 0.5s 0s ease-in;
	animation: opa1 1.5s both;
	animation-delay: 5.2s;	
    position: absolute;
	top: 75%;
    left: 0;
    right: 0;
   	text-decoration: none;
	color: #000;
	transition: all 1.5s 0s ease-in;
}

#menubar a:hover {
	transform: scale(1.2);	
	filter: brightness(1.3);
	opacity: 0.6;
	color: #f40;
	transition: all 1.5s 0s ease-in;
}

.footerFixed{
	min-height: 100vh; 
	position: relative; 
    padding-bottom: 30px; 
    box-sizing: border-box;  
}

footer {
	font-family: "Arial";
	font-size: 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
	text-align: center;
	text-shadow: 3px 3px 1px rgba(128,64,0,0.7);
}


.footer__social a {
   	display: inline-block;
   	width: 64px;
   	opacity: 0.2;
    animation: opa1 1.5s both;
   	svg-shadow: 3px 3px 1px rgba(0,0,0,0.7)
  }


  .footer__social a:not(:last-child) {
 	margin-right: 16px;
  	animation-delay: 2s;
  }
  
.footer__social a:first-child{
	 animation-delay: 1s;
  }
  
 .footer__social a:last-child {
 	animation-delay: 3s;
  }
     
 .footer__social a {
	color: #f60;
	opacity: 0.1;
  }
   
 .footer__social a:hover {
	color: #000;
    transform: scale(1.8);	
	filter: brightness(1.3);
	transition: all 0.5s 0s ease-in;
  }