@charset "utf-8";
#wrapper {
  background-attachment: fixed;
  width: 80%;
  margin: 0 auto;
}
#wrapper::before {
  position: fixed;
  top: 15%;
  left: 40%;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-image: url("../img/mainBG.png");
  background-repeat: no-repeat;
  content: "";
}
@media screen and (min-width: 768px) {
  #wrapper::before {
    content: "";
    display: none;
  }
  #wrapper {
    background-image: url(../img/mainBG.png);
    background-repeat: no-repeat;
    background-position: 80% center;
    background-attachment: fixed;
  }
}
#wrapper div {
  text-align: center;
}
h2 {
  font-size: 24px;
  color: #0E0000;
}
p {
  margin: 30px 0;
  font-size: 18px;
  color: #333333;
  line-height: 2em;
}
p:last-child {
  font-family: 'Shippori Mincho', serif;
}