@charset "UTF-8";
/* ブレイクポイント設定 */
/* transition */
/* レスポンシブ */
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/* 基盤 */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3037809648vw;
  }
}

body {
  color: black;
  background-color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  width: 100%;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

/* ヘッダー(タイトル) */
.header {
  height: 12rem;
  color: white;
  background: orange;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .header {
    height: 14rem;
    font-size: 2.2rem;
  }
}

.page-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* パララックス */
.parallax {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 130vh;
  margin-bottom: 10vh;
}

.parallax__content {
  width: 100%;
  height: 50rem;
  background: url(../images/pexels-kensei-11324960.webp);
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: 100%;
  animation: parallax linear both;
  animation-timeline: view();
}
@media screen and (max-width: 767px) {
  .parallax__content {
    height: 30rem;
    background-size: 150%;
  }
}

@keyframes parallax {
  100% {
    background-position: center -60rem;
  }
}/*# sourceMappingURL=style.css.map */