@charset "UTF-8";

body{
  width: 100%;
  background-color: #892606;
}

html,body {
  overflow-x: hidden;
}

/* フォントのCSS */
.amiri-regular {
    font-family: "Amiri", serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 1.7px;
  }
  .shippori-mincho-medium {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-style: normal;
  }
  
/* ぼかしのアニメーション */
  .blur{
    animation-name:blurAnime;
    animation-duration:2.5s;
    animation-fill-mode:forwards;
  }
  
  @keyframes blurAnime{
    from {
    filter: blur(10px);
    /* transform: scale(1.02); */
    }
  
    to {
    filter: blur(0);
    /* transform: scale(1); */
    }
  }

/* フェードアップのアニメーション */
.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:3s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    /* transform: translateY(100px); */
    }
  
    to {
      opacity: 1;
    /* transform: translateY(0); */
    }
  }
  
  
  /* スクロールをしたら出現する要素にはじめに透過0を指定　*/
   
  .fadeUpTrigger{
      opacity: 0;
  }

   /* 下から出る */

   .fadeUp2{
    animation-name:fadeUpAnime2;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
    opacity:1;
    }
    
    @keyframes fadeUpAnime2 {
      from {
        opacity: 1;
        transform: translate(-50%, calc(100px - 50%));
      }
      to {
        opacity: 1;
        transform: translate(-50%, -50%);
      }
    }
    
    
    /* スクロールをしたら出現する要素にはじめに透過0を指定　*/
     
    .fadeUpTrigger2{
        opacity: 0;
    }


  /* テキストが流れるアニメーション */

  .eachTextAnime span{opacity: 0;}
  .eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
  @keyframes text_anime_on {
    0% {opacity:0;}
    100% {opacity:1;}
  }
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */




.bg-img{
  width: 100%;
  vertical-align: top;
  margin-top: -1px;
}

.text-css{
  left: 51%;
  transform: translateX(-50%);
  color: #fff;
  letter-spacing: 2px;
  line-height: 60px;
  font-size: 24px;
  position: absolute;
  white-space: nowrap;
}

/* CSS本体 */

/* フローティングバナー */
#floating-img{
  /* position: fixed; */
  position: absolute;
  z-index: 9999;
  right: 40px;
  bottom: 30px;
  width: 150px;
}
.floating-img-back{
  width: 750px;
  position: fixed;
  bottom: 0px;
  z-index: 9999;

}

/* FV部分 */
.contents-wrapper{
    margin: 0 auto;
    text-align: center;
    width: 750px;
}

.kaori-fv-title{
  top: 650px;
}


.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  left:50%;
  top: 1150px;
    /*全体の高さ*/
  height:100px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
    /*テキストの形状*/
  color: #eee;
  font-size: 1rem;
  /* letter-spacing: 0.05em; */
}

/* 線の描写 */
.scrolldown1::after{
  content: "";
    /*描画位置*/
  position: absolute;
  top: 10px;
    /*線の形状*/
  width: 1px;
  height: 180px;
  background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 2s ease-in-out infinite;
  opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:54px;
    opacity: 1;
  }
  100%{
    height:0;
    top:180px;
    opacity: 0;
  }
}


/* ABOUT部分 */

.about-contents{
  position: relative;
}

.about-logo{
  left: 50%;
}

.about-fragrance{
  top: 280px;
}

.fragrance-1{
  top: 800px;
}

.fragrance-2{
  top: 1600px;
}

/* 香り公開部分 */

.fragrance-contents{
  position: relative;
}

.fragrance-title-1{
  top: 100px;
}

.fragrance-title-2{
  top: 320px;
}

.fragrance-dia{
  top: 650px;
}

.top-note{
  top: 1300px;
  left: 50%;
}

.middle-note{
  top: 1830px;
}

.last-note{
  top: 2250px;
}

/* アニメ部分 */

.animation-contents{
  position: relative;
}

.animation-title{
  top: 50px;
}

.animation-push{
  top: 280px;
}

#js-lottie{
  top: 440px;
  width: 55%;
}

#container{
  top: 450px;
}

.animation-text{
  font-size: 42px;
  top: 1050px;
  left: 52.5%;
}

.count-text{
  font-size: 38px;
  letter-spacing: 2.5px;
  vertical-align: bottom;
  top: 1160px;
  left: 51.5%;
}
#count{
  font-size: 50px;
}

.none{
  opacity: 0;
  transition: opacity 2.5s ease-in; /* 1秒のフェードイン効果 */
}

.block{
  opacity: 1;
}

/* スタッフの感想部分 */

.staff-contents{
  position: relative;
}

.staff-title{
  top: 70px;
}

.staff-dia{
  top: 400px;
}

.staff-text{
  top: 550px;
}

.staff-1{
  top: 950px;
}

.staff-2{
  top: 1190px;
}

.staff-3{
  top: 1450px;
}

.staff-text-2{
  top: 1750px;
}

.staff-dia-2{
  top: 2000px;
}

/* 日程公開部分 */

.kaori-koukai-contents-1{
  position: relative;
}

.kaori-koukai-title{
  top: 150px;
}

.kaori-koukai-1029{
  top: 1000px;
}

.kaori-koukai-kaishi{
  top: 1550px;
}

.kaori-koukai-dia{
  top: 1950px;
}

/* 案内部分 */

.annai-contents-1{
  position: relative;
}

.annai-text{
  top: 100px;
}

.annai-text-2{
  top: 350px;
}

.btn-mail{
  top: 620px;
}

.btn-line{
  top: 740px;
}

.btn-insta{
  top: 860px;
}

.btn-rakuten{
  top: 1330px;
}

.annai-rakuten-text{
  top: 1500px;
  left: 49%;
}

.annai-sandgrass{
  top: 1850px;
}

.potto-btn{
  position: relative;
}
.potto-btn-inner{
  position: absolute;
  top: 27%;
  left: 20%;
  width: 435px;
}
@media screen and (max-width:798px){
  .potto-btn-inner{
    width: 52%;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }

}
.potto-btn-inner img{
  width: 100%;
}
/* 企画者の思い */

.omoi-contents-1{
  position: relative;
}

.omoi-title{
  top: 50px;
}

.omoi-kikakusya{
  top: 500px;
}

.omoi-img{
  top: 600px;
}

.omoi-text{
  top: 1200px;
}

.omoi-dia{
  top: 1500px;
}

.omoi-text-1{
  top: 1600px;
}

.omoi-text-2{
  top:1900px;
}

.omoi-text-3{
  top: 2200px;
}

.omoi-dia-2{
  top: 2400px;
}

/* オリジナルの香り */

.original-contents{
  position: relative;
}

.original-title1{
  top: 50px;
}

.original-img{
  top: 750px;
  left: 60%;
}

.original-img2{
  top: 1300px;
  left: 40%;
}

.original-text{
  top: 1650px;
  width: 80%;
  white-space: wrap;
  text-align: left;
}

.original-title2{
  top: 2200px;
}

.original-dia{
  top: 2600px;
}

/* 公開2 */

.kaori-koukai-contents-2{
  position: relative;
}

.kaori-koukai-title2{
  top: 150px;
}

.kaori-koukai-1029-2{
  top: 1100px;
}

.kaori-koukai-kaishi2{
  top: 1600px;
  left: 49.5%;
}

.kaori-koukai-dia2{
  top: 2000px;
}

/* 案内2 */
.annai-contents-2{
  position: relative;
}

.annai-text2{
  top: 80px;
}

.annai-text-2-2{
  top: 340px;
}

.btn-mail2{
  top: 610px;
}

.btn-line2{
  top: 730px;
}

.btn-insta2{
  top: 850px;
}

.btn-rakuten2{
  top:1330px;
}

.annai-rakuten-text2{
  top: 1500px;
  left: 49%;
}



/* フッター */

.footer-logo{
  top: 1850px;
}

.footer-mypage{
  top: 2000px;
}



@media screen and (max-width: 480px) {

  body{
    background-color: transparent;
  }
	.contents-wrapper{
    width: 100%;
  }

  .bg-img{
  width: 100%;
  margin-top: -1px;
  }
  .text-css{
    font-size: 14px;
    letter-spacing: 1.5px;
    line-height: 40px;
  }

  .floating-img-back{
    width: 100%;
  }

  #floating-img{
    right: 0;
    bottom: 40px;
  }

  #floating-img img{
    width: 70%;
  }

/* FV部分 */
 .kaori-fv-title{
  width: 85%;
  top: 45%;
  left: 52%;
}
  .scrolldown1{
    top: 83%;
  }

  /* about部分 */
  .about-logo{
    width: 90%;
    top: 5%;
  }

  .about-fragrance{
    width: 50%;
    top: 13%;
  }

  .fragrance-1{
    width: 80%;
    top: 28%;
  }

  .fragrance-2{
    width: 80%;
    top: 50%;
  }

  /* 香り部分 */
  .fragrance-title-1{
    width: 85%;
    top: 5%;
  }

  .fragrance-title-2{
    width: 80%;
    top: 12%;
  }

  .top-note{
    width: 85%;
    top: 48%;
  }

  .middle-note{
    width: 85%;
    top: 65%;
  }

  .last-note{
    width: 75%;
    top: 80%;
  }


  .fragrance-dia{
    width: 20%;
    top: 22%;
    left: 50%;
  }

/* アニメ部分 */
 .animation-title{
  width: 80%;
 }

 .animation-push{
  width: 75%;
  top: 20%;
 }

 #js-lottie{
  width: 55%;
  top: 30%;
 }

 #container{
  top: 30%;
 }

.animation-text{
  font-size: 5vw;
  top: 65%;
  left: 53%;
}

#count{
  font-size: 8vw;
}

.count-text{
  top: 72%;
  font-size: 4vw;
  left: 51.5%;
 }

  /* スタッフ部分 */
  .staff-title{
    width: 80%;
  }

  .staff-dia{
    width:  20%;
    top: 22%;
    left: 51%;
  }

  .staff-text{
    width: 90%;
    top: 31%;
  }

  .staff-1{
    width: 90%;
    top: 48%;
    left: 51%;
  }

  .staff-2{
    width: 90%;
    top: 59%;
  }

  .staff-3{
    width: 90%;
    top: 70%;
  }

  .staff-text-2{
    width: 70%;
    top: 83%;
    left: 52%;
  }

  .staff-dia-2{
    width: 20%;
    top: 95%;
  }

  /* 香り公開コンテンツ1 */

  .kaori-koukai-title{
    width: 90%;
    top: 7%;
    left: 51%;
  }

  .kaori-koukai-1029{
    width: 90%;
    top: 45%;
  }

  .kaori-koukai-kaishi{
    top: 70%;
    width: 50%;
  }

  .kaori-koukai-dia{
    width: 20%;
    top: 90%;
  }

  /* 案内部分1 */

  .annai-text{
    width: 70%;
    top: 4%;
  }

  .annai-text-2{
    width: 70%;
    top: 17%;
  }

  .btn-mail{
    width: 80%;
    top: 29%;
  }

  .btn-line{
    width: 80%;
    top: 35%;
  }

  .btn-insta{
    width: 80%;
    top: 41%;
  }
  
  .btn-rakuten{
    width: 80%;
    top: 64%;
  }

  .annai-rakuten-text{
    width: 70%;
    top: 72%;
  }

  .annai-sandgrass{
    width: 35%;
    top: 90%;
  }

  /* 企画者の思い */

  .omoi-title{
    width: 60%;
  }

  .omoi-kikakusya{
    width: 70%;
    top: 18%;
  }

  .omoi-img{
    width: 80%;
    top: 22%;
  }

  .omoi-text{
     width: 75%;
     top: 46%;
  }

  .omoi-dia{
    width: 20%;
    top: 58%;
  }

  .omoi-text-1{
    font-size: 3.2vw;
    top: 63%;
    line-height: 35px;
  }

  .omoi-text-2{
    font-size: 3.2vw;
    top: 75.5%;
  }

  .omoi-text-3{
    font-size: 3.2vw;
    top: 90%;
  }

  .omoi-dia-2{
    width: 20%;
    top: 98%;
  }

  /* オリジナルの香り */

  .original-title1{
    width: 80%;
    top: 5%;
    left: 52%;
  }

  .original-img{
    width:60%;
    left: 58%;
    top: 28%;
  }

  .original-img2{
    width: 50%;
    top: 46%;
  }

  .original-text{
    width: 75%;
    top: 60%;
  }

  .original-title2{
    width: 80%;
    top: 85%;
  }

.original-dia{
  width: 20%;
  top: 99%;
}

 /* 公開2 */

 .kaori-koukai-title2{
  width: 90%;
  top: 10%;
  left: 51%;
}

.kaori-koukai-1029-2{
  width: 90%;
  top: 47%;
}

.kaori-koukai-kaishi2{
  top: 70%;
  width: 50%;
}

.kaori-koukai-dia2{
  width: 20%;
  top: 90%;
}

/* 案内2 */

.annai-text2{
  width: 70%;
  top: 5%;
}

.annai-text-2-2{
  width: 70%;
  top: 15%;
}

.btn-mail2{
  width: 80%;
  top: 24.5%;
  left: 51.5%;
}

.btn-line2{
  width: 80%;
  top: 29.5%;
  left: 51.5%;
}

.btn-insta2{
  width: 80%;
  top: 34.5%;
  left: 51.5%;
}

.btn-rakuten2{
  width: 80%;
  top: 53.5%;
}

.annai-rakuten-text2{
  width: 70%;
  top: 61%;
}

.annai-sandgrass2{
  width: 35%;
  top: 90%;
}



  /* フッター */
  .footer-logo{
    top: 75%;
    width: 57%;
  }
  .footer-mypage{
    width: 55%;
    top: 82%;
  }
}

#floating-img-back {
  display: none;
  position: fixed;
    bottom: 5px;
    z-index: 1000;
    width: 100px;
    right: 5px;
}
#floating-img-back img{
  width: 100%;
}
@media screen and (max-width:798px){
  #floating-img-back {
    width: 90px;

  }
}