html, body {
  margin: 0;
  padding: 0;
  color: #333;
  font-family: 'Quicksand', sans-serif;
  font-size: 12px;
}

header {
  position: relative;
  max-width: 1040px;
  margin: 0 auto 30px;
  text-align: center;
  padding: 20px 20px 0;
}

header a {
  position: absolute;
  top: 20px; right: 20px;
  text-decoration: none;
  color: #666;
}
a { color: inherit; }

#lv1 {
  padding: 0 20px;
  max-width: 800px;
  margin: 0 auto;
}

h1, h2, h3 {
  text-align: center;
  font-family: 'Prata', serif;
  font-weight: 400;
}
h1 { margin-top: 1.5em; }
h2 { font-size: 20px; margin-top: 1.6em; line-height: 1.6em; }

p {
  font-family: 'Noto Sans JP';
  font-weight: 300;
  font-size: 18px;
  line-height: 1.8em;
  color: #444;
}

p.big {
  font-family: 'Lato';
  font-weight: 300;
  font-size: 28px;
  line-height: 1.2em;
  text-indent: 0;
}

figure {
  margin: 35px 10%;
}

figure.signature {
  margin-left: 0;
  margin-right: 0;
}

figcaption {
  font-family: 'Noto Sans JP';
  font-weight: 300;
  font-size: 12px;
  text-align: left;
}

h1 { font-size: 45px; margin-left: 5%; margin-right: 5%; }

@media (max-width: 450px) {
  h1 { font-size: 9vw; }
  p { font-size: 16px; }
  p.big { font-size: 25px; }
}

@media (min-width: 450px) {

}

img { max-width: 100%; }



#loader {
  opacity: 0;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: white;
  transition: opacity 1s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.loading #loader {
  opacity: 1;
}
#loader img {
  max-width: 100%;
  max-height: 100%;
}
#content { opacity: 1; transition: opacity 2s; }

.loading #content {
  max-height: 100vh; overflow: hidden; opacity: 0;
}