@import url("https://fonts.googleapis.com/css2?family=Besley:wght@400&family=Noto+Sans+JP:wght@500&display=swap");
@media screen and (min-width: 680px) {
  .pc {
    display: inline;
  }
  .sp {
    display: none;
  }
}

@media screen and (max-width: 680px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline;
  }
}

body {
  font-family: 'Noto Sans JP','Besley',sans-serif;
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

p {
  line-height: 1.9;
  padding: 1rem;
}

#intro-area {
  background-image: url(img/crt-screen.gif), url(img/topback.jpg);
  background-size: auto,cover;
  background-repeat: repeat,no-repeat;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 7rem;
}

#intro-area #intro-box {
  border-radius: 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 3rem;
}

@media (max-width: 768px) {
  #intro-area #intro-box {
    padding: 2rem;
    margin: 1rem;
  }
}

.jougecenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

a {
  color: #555;
  text-decoration: none;
}

a:hover {
  color: black;
}
/*# sourceMappingURL=style.css.map */