@charset "UTF-8";
html, body, header, footer, article, div, main, p, figure, figcaption {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "zen-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* --- アニメーション定義 --- */
/* 本体と羽が一緒に大きく動くアニメーション */
@keyframes tnkbl_move {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  10% {
    transform: translateY(70px) rotate(-5deg);
  }
  20% {
    transform: translateY(140px) rotate(5deg);
  }
  30% {
    transform: translateY(210px) rotate(-5deg);
  }
  40% {
    transform: translateY(280px) rotate(5deg);
  }
  50% {
    transform: translateY(350px) rotate(-5deg);
  }
  60% {
    transform: translateY(280px) rotate(5deg);
  }
  70% {
    transform: translateY(210px) rotate(-5deg);
  }
  80% {
    transform: translateY(140px) rotate(5deg);
  }
  70% {
    transform: translateY(70px) rotate(-5deg);
  }
  90% {
    transform: translateY(0px) rotate(0deg);
  }
}
/* 羽だけが高速で震える（パタパタする）アニメーション */
@keyframes wing_flap {
  0%, 100% {
    /* 移動に影響を与えないよう、スケールや透明度でパタパタ感を出す */
    opacity: 1;
    filter: brightness(1.2);
  }
  50% {
    opacity: 0.7;
    filter: brightness(0.9);
    /* 少しだけ縮小させることで羽ばたきを表現 */
    transform: translateY(inherit) rotate(inherit) scale(0.95);
  }
}
html {
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  /*background-repeat: no-repeat;
  background-size: 20%,100% auto;
  background-attachment: fixed;
  background-position: 87% 6%,top;
  opacity:0.7;
  font-family: "yuji-mai", sans-serif;
  font-weight: 400;
  font-style: normal; */
}

header {
  width: 100%;
  max-width: 1280px;
  position: relative;
}
header h1 {
  font-size: 3.3rem;
  padding: 30px 0 30px 100px;
  color: #fff;
  font-family: "hot-gyoshokk", sans-serif;
  font-weight: 400;
  font-style: normal;
}
header {
  /* 1. 本体と羽、両方に共通する設定（同じ動きをさせてズレを防ぐ） */
}
header article {
  width: 100%;
  height: auto;
  background-image: url(https://dream-that-continues.site/wp-content/themes/omc/img/kai.webp), url(https://dream-that-continues.site/wp-content/themes/omc/img/kai=nano2.webp);
}
header article main {
  width: 100%;
  padding: 30px;
}
header article main H2 {
  color: #fff;
  letter-spacing: 5px;
  font-family: "hot-gyoshokk", sans-serif;
  font-weight: 400;
  font-style: normal;
}

article {
  width: 100%;
  margin: 36px auto 60px;
  background-image: url(https://dream-that-continues.site/wp-content/themes/omc/img/kai.webp), url(https://dream-that-continues.site/wp-content/themes/omc/img/kai=nano2.webp);
  background-repeat: no-repeat;
  background-size: 20%, 100% auto;
  background-position: 87% 6%, top;
  background-attachment: fixed;
  font-family: "yuji-mai", sans-serif;
  font-weight: 400;
  font-style: normal;
}
article main {
  width: 560px;
}
article main h2 {
  letter-spacing: 15px;
  padding-left: 40px;
  color: #fff;
  font-size: 1.6rem;
  font-family: "zen-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 100px;
}
article main p {
  color: #fff;
  font-size: 1rem;
  line-height: 3rem;
  font-family: "zen-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
}

footer {
  width: 1080px;
  height: 180px;
}/*# sourceMappingURL=single.css.map */