@charset "UTF-8";
/* ブレイクポイント設定 */
/* 色 */
/* 擬似要素の共通基盤 */
/* レスポンシブ */
.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: #fff;
  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: #fff;
  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%;
}

/* ふわふわ上下に動き続ける */
.animation01 {
  position: relative;
  z-index: -2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 12rem);
  background: url(../images/FV背景①グラデ.png) no-repeat 50% 50%/cover;
}
@media screen and (max-width: 767px) {
  .animation01 {
    height: calc(100vh - 14rem);
  }
}

.animation01__contents {
  position: relative;
  width: 60rem;
  color: blue;
  font-size: 5rem;
  animation: fuwaAnime 2.5s ease forwards infinite;
}
.animation01__contents::before {
  position: absolute;
  content: "";
  display: block;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 20rem;
  background: url(../images/FVふわふわあしらい.png) no-repeat 50% 50%/contain;
}
@media screen and (max-width: 767px) {
  .animation01__contents::before {
    height: 15rem;
  }
}

@keyframes fuwaAnime {
  0% {
    transform: translateY(-1rem);
  }
  50% {
    transform: translateY(1rem);
  }
  100% {
    transform: translateY(-1rem);
  }
}/*# sourceMappingURL=style.css.map */