main {
  font-family: "Noto Sans JP", system-ui, sans-serif;
}

html, html, body {
  margin: 0 !important;
  padding: 0 !important;;
  overflow-x: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  scroll-behavior: smooth;
}

#loading-screen {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #F6FAFF;
  display: flex;
  justify-content: center;
  align-items: center;
    opacity: 1;
  transition: opacity 0.5s ease;
}
.loader {
  font-size: 24px;
  color: #333;
	width:98px;
	height:auto;
}

.loader img{
	width:100%;
	height:auto;
}

#loading-screen.hide {
  opacity: 0;
  pointer-events: none;
}