@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@500;700&family=Noto+Sans+JP&family=Noto+Serif+JP:wght@400;700&display=swap");
body {
  font-family: "Barlow", "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 680px) {
  .pc {
    display: inline-block;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline-block;
  }
}
#main {
  position: relative;
  background-image: url(../img/back.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1.5rem;
  text-align: center;
}

.container {
  width: 100%;
}

h2 {
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.15rem;
  margin-bottom: 1rem;
}

/*== ボタン共通設定 */
.btn-area {
  display: flex;
  margin-bottom: 3rem;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  border-radius: 3px;
  width: 220px;
  height: 50px;
  letter-spacing: 0.1rem;
  margin: 0.5rem;
  transition: 0.3s;
  background-color: #1a7d1f;
}
.btn :hover {
  opacity: 0.7;
}

@media screen and (max-width: 480px) {
  h2 {
    font-size: 1.6rem;
  }
  .btn-area {
    flex-direction: column;
    margin-bottom: 0.5rem;
  }
  iframe {
    width: 100%;
  }
}/*# sourceMappingURL=daiju.css.map */