

/* 画面全体(下地) */

.wholeface {
  margin:0;
  padding:0;
	height:100vh;
	width: 100vw;
	background-size: cover; 
	background-repeat: no-repeat;
	background-position: center; 
/*	background-color: palevioletred; */
	background-image: url(../img/opening.jpg);
	overflow: hidden;
}
.wholeface::-webkit-scrollbar {
   display: none;
}

