@charset "utf-8";
/* 共通設定およびスマートフォン向けのスタイル */
body {
  margin: 0;
  padding: 0;
  /*font-family: 'Noto Sans JP', sans-serif;*/
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif!important;
  background-color: #d6cdc4; /* 背景色 */
  background-image: url("../img/kv-pc.jpg"); /* 画像 */
  background-size: cover; /* 全画面 */
  background-attachment: fixed; /* 固定 */
  background-position: center center; /* 縦横中央 */
}
#wrap {
  width: 100%;
}
#wrap #contents {
  text-align: center;
}
#wrap #contents h1 {
  max-width: 80%;
  height: auto;
  padding: 40% 0;
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  height: auto;
  letter-spacing: 0.05em;
  line-height: 0.9;
  justify-content: flex-start;
}

#wrap #contents h1 span{
  font-size: 12px;
}

#footer {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0 10px 10px 10px;
  font-size: 12px;
  color: #fbe8e4;
  position: absolute; /*←絶対位置*/
  bottom: 0; /*下に固定*/
}
/*  Media Queries による切り替え */
/*  PC向けのスタイル：769px～960px */
@media only screen and (min-width: 769px) {
  #wrap #contents h1 {
    max-width: 100%;
    padding: 20% 0;
  }
}
/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time02 {
  animation-delay: 0.2s;
}
.delay-time04 {
  animation-delay: 0.4s;
}
.delay-time06 {
  animation-delay: 0.6s;
}
.delay-time08 {
  animation-delay: 0.8s;
}
/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/
.box {
  opacity: 0;
}
/*==================================================
動き自体の指定：今回は「ふわっ」
===================================*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* タブレット向けのスタイル：481px ～ 768px */
@media only screen and (min-width: 480px) {}