#splash {
  width: 100%;
  height: 100vh;
  display: grid;
  align-content: center;
  position: fixed;
  left: 0;
  top: 0;
  background-color: var(--background-theme-color);
  z-index: 1;
}
#splash.hidden {
  display: none;
}
#splash p {
  font-family: "ZenMaruGothic-Bold";
  font-size: var(--large);
  color: var(--off-color);
  text-align: center;
  line-height: 1;
  opacity: 0;
}

#top {
  padding: 60px 10px 100px 10px;
}
@media screen and (max-width: 1000px) {
  #top {
    padding: 30px 10px 50px 10px;
  }
}
#top #logo {
  width: 150px;
  margin: 0 auto 100px auto;
}
@media screen and (max-width: 1000px) {
  #top #logo {
    margin: 0 auto 50px auto;
  }
}
#top h1 {
  font-family: "ZenMaruGothic-Bold";
  font-size: var(--large);
  color: var(--theme-color);
  text-align: center;
  line-height: 1;
  margin: 0 0 100px 0;
}
@media screen and (max-width: 1000px) {
  #top h1 {
    margin: 0 0 50px 0;
  }
}
#top #select {
  width: min(1000px, 100%);
  margin: 0 auto;
}
#top #select ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  #top #select ul {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
#top #select ul li figure a:hover {
  transition: var(--transition);
  opacity: var(--opacity);
}
#top #select ul li figure a img {
  margin: 0 0 20px 0;
  border-radius: 30px;
}
#top #select ul li figure figcaption {
  padding: 0 20px;
}
@media screen and (max-width: 1000px) {
  #top #select ul li figure figcaption {
    padding: 0;
  }
}
#top #select ul li figure h2 {
  font-family: "ZenMaruGothic-Bold";
  font-size: var(--regular);
  color: var(--theme-color);
  line-height: 1;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 1000px) {
  #top #select ul li figure h2 {
    line-height: 1.3;
    margin: 0 0 5px 0;
  }
}
#top #select ul li figure h2 br {
  display: none;
}
@media screen and (max-width: 1000px) {
  #top #select ul li figure h2 br {
    display: block;
  }
}/*# sourceMappingURL=top.css.map */