@charset "utf-8";

@font-face {
  font-family: yugothic;
  src: url('../ref/yugothic.woff') format("woff");
}

/* CLOSED */
h1 {
  width: 100%;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 600;
}

#log {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translateX(-50%);
}

/* 本番 */
body {
  width: 100dvw;
  height: 100dvh;
  overflow: hidden;
  position: relative;
  color: #fff;
  font-family: yugothic, sans-serif;
  background-image: url(../img/kv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right 5% bottom;
  animation: loading 0.6s;
}

@keyframes loading {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

header {
  width: 200px;
  position: absolute;
  top: 20px;
  left: 20px;
}

ul li {
  font-size: 1rem;
  width: 100px;
}

#logo {
  width: 180px;
  height: auto;
  aspect-ratio: 704 / 172;
  background-image: url(../img/hgb.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-bottom: 20px;
}

footer {
  font-size: 0.8rem;
  width: 200px;
  position: absolute;
  bottom: 5px;
  left: 20px;
}