@charset "utf-8";

html {
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  height: 100%;
  font-size: 0.67vw;
  font-size: 62.5%;
}
body {
  margin: 0;
  padding: 0;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
  color: #1e2123;
  font-size: 1.4rem;
  font-feature-settings: "palt" 1;
  background-image: url(../images/bg.jpg);
  background-size: cover;
  width: 100%;
  height: 100svh;
  position: relative;
}

h1 {
  width: 40rem;
  position: absolute;
  top: 5%;
  left: 5%;
}
p {
  width: 24rem;
  position: absolute;
  bottom: 5%;
  right: 5%;
}
img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  body {
    font-size: 1.3rem;
    background-image: url(../images/bg-smp.jpg);
    background-repeat: no-repeat;
  }
  .wrap {
    width: 100%;
    height: 100svh;
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  h1 {
    width: 70%;
    position: static;
    top: auto;
    left: auto;
  }
  p {
    width: 50%;
    position: static;
    bottom: auto;
    right: auto;
  }
}