@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Moirai+One&display=swap');
/*
font-family: "Moirai One", system-ui;
*/

body {
  animation: fadein 1.0s forwards;
}

@keyframes fadein {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}

img {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  touch-callout: none;
  user-select: none;
}

.top {
  width: 100%;
  height: 100vh;
  background-image: url(../img/image00.jpg);
  background-size: cover;
  background-position: center center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  overflow: hidden;
}

/* .background1 {
  background-image: url(../img/image01.jpg);
}
.background2 {
  background-image: url(../img/image02.jpg);
}
.background3 {
  background-image: url(../img/image03.jpg);
}
.background4 {
  background-image: url(../img/image04.jpg);
}
.background5 {
  background-image: url(../img/image05.jpg);
}
.background6 {
  background-image: url(../img/image06.jpg);
}
.background7 {
  background-image: url(../img/image07.jpg);
}
.background8 {
  background-image: url(../img/image08.jpg);
} */

.logo {
  width: 100%;
  height: auto;
  margin-inline: auto;
  text-align: center;
}

h1 {
  font-size: clamp(34px, 11.5vw, 170px);
  margin: 44vh 0 0 0;
  position: relative;
  font-family: "Moirai One", system-ui;
  font-weight: bold;
  color: white;
  text-shadow: 0 0 16px #d3f5ff;
  transition: opacity 0.05s ease-in-out;
}

footer {
  padding: 20px;
  text-align: center;
}

.copyright {
  position: absolute;
  color: #fff;
  font-size: 8px;
  text-align: center;
  bottom: 30px;
  z-index: 2;
}

.copyright a {
  color: #fff;
  text-align: center;
}

/*==================================================
  bar
==================================================*/
.bar1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: moveUp 5s linear infinite;
  z-index: 1;
}
@keyframes moveUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(-100vh);
  }
}

.bar2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  backdrop-filter: saturate(160%);
  -webkit-backdrop-filter: saturate(160%);
  animation: moveUp2 3s linear infinite;
  z-index: 1;
}
@keyframes moveUp2 {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(-100vh);
  }
}

.bar3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  animation: moveUp3 8s linear infinite;
  z-index: 1;
}
@keyframes moveUp3 {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(-100vh);
  }
}