@charset "UTF-8";
@font-face {
  font-family: "MyFont";
  src: url(font/GT-Ultra-Standard-Regular.woff);
}
body {
  overflow: hidden;
  background-color: #A4DFEB;
  position: relative;
  width: 100vw;
  display: flex;
}

header {
  position: absolute;
  margin: 30px 30px;
}

main {
  width: 100%;
  height: 60vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1 {
  font-family: "MyFont";
  font-weight: normal;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #5A3729;
  font-size: 48px;
  letter-spacing: 0.4px;
  text-align: center;
  line-height: 110%;
}

br {
  display: none;
}

.button {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 35px auto 0;
}

button {
  width: 180px;
  height: 50px;
  border-radius: 70px;
  background-color: #FAF7E6;
  font-family: "MyFont";
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: #5A3729;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #5A3729;
  color: #FAF7E6;
  transition: 0.3s;
}

.enjp {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04rem;
}

.jp {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.4rem;
}

.bg {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -1;
}

video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.pcbg {
  display: block;
}

.spbg {
  display: none;
}

@media screen and (max-width: 959px) {
  /* 959px以下に適用されるCSS（タブレット用） */
  main {
    height: 55vh;
  }
  h1 {
    font-size: 50px;
  }
  br {
    display: flex;
  }
  video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .pcbg {
    display: none;
  }
  .spbg {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  /* 480px以下に適用されるCSS（スマホ用） */
  header {
    margin: 20px 20px;
  }
  header img {
    width: 53px;
  }
  main {
    height: 52vh;
  }
  h1 {
    font-size: 32px;
  }
  br {
    display: flex;
  }
  .button {
    display: flex; /* 横並び */
    flex-wrap: wrap; /* 折り返し対応 */
    justify-content: center; /* 横中央揃え */
    margin: 30px auto 0;
  }
  button {
    width: 140px;
    height: 45px;
    font-size: 18px;
  }
  .enjp {
    font-size: 15px;
    letter-spacing: 0.05rem;
  }
  .jp {
    font-size: 15px;
    letter-spacing: 0.4rem;
  }
  video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .pcbg {
    display: none;
  }
  .spbg {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */