@charset "UTF-8";
/* CSS Document */



* {
  margin: 0;
  padding: 0;
}

body {
	color: #121212;
	margin: 0;
	padding: 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.5rem;/* 15px相当 */
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}
   
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}
  
ul {
  list-style: none;
}
   
a {
  text-decoration: none;
  color: #454545;
}
a:hover, a:active, a:focus {
  color: #454545;
	text-decoration: none;
}
 
a img {
  border: none;
}
a img:hover{
	opacity: 0.9;
}

img {
  vertical-align: bottom;
}






/* フェード効果 */
.scrollfade{
	opacity: 0;
	transform: translate(0,20px); 
-webkit-transform: translate(0,20px); 
	transition: .8s;
}
.scrollfade01{
	opacity: 1.0;
	transform: translate(0,0); 
-webkit-transform: translate(0,0);
}




