@charset "utf-8";


#all{
  overflow-x: hidden;
}
body{
  font-family: "Noto Serif JP";
  background-color: #342B24;
  z-index: -99;
  overflow-x: hidden;
}

.main_container{
  width: 50%;
  max-width: 500px;
  text-align: center;
  margin: 0 auto;
}

p{
  color: #fff;
}

.main_wrapper{
  width: 90%;
  margin: 50px auto;
}

iframe {
  width: 100%;
}

img{
  width: 100%;
}

h3{
  font-family: "Shippori Mincho" , serif;
  color: #fff;
  font-size: 24px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1rem;
  margin: 100px 0 100px;
}

body .black{
  color: #342B24;
}

.price_wrapper{
  text-align: center;
  font-size: 18px;
  padding: 10px;
  margin: 30px;
  border: #fff solid 2px;
  border-radius: 5px;
}

.mini{
  font-size: 15px;
  margin-left: 5px;
}

.price{
  font-size: 30px;
  padding-top: 10px;
}

.note{
  background-image: url(../images/back_note.jpg);
  background-repeat: repeat;
  padding: 10px 0;
  transform: rotate(-8deg);
}

.note .main_wrapper{
  transform: rotate(8deg);
}

.text{
  font-family: "Noto Serif JP";
  font-size: 15px;
  color: #fff;
  text-align: left;
  margin-bottom: 1.5em;
  line-height: 1.8em;
}

.text_wrapper{
  text-align: left;
  margin: 30px 0;
  /* margin-bottom: 20px; */
}

.center{
  text-align: center;
}

.right{
  text-align: right;
}

.px20{
  font-size: 20px;
}

.fa-list {
  list-style: none;
  padding: 0;
  font-family: "Noto Serif JP";
  font-size: 15px;
  color: #fff;
  text-align: left;
  margin-bottom: 1.5em;
  line-height: 1.6em;
}

.fa-list li {
  position: relative;
  padding-left: 1.5em; /* アイコンの分だけ左に余白を取る */
  margin-bottom: 20px;
}

.fa-list li::before {
  content: "\f0c3"; /* Font AwesomeのUnicode（例：exclamation-circle） */
  font-family: "Font Awesome 6 Free"; /* 使用するFont Awesomeの種類に合わせて変える */
  font-weight: 600; /* Solidアイコン用 */
  position: absolute;
  left: 0;
}

.ttl{
  text-align: center;
}

.ttl img{
width: 100%;
}

.buy-btn{
  margin-top: 50px;
}

.buy-btn img{
  width: 60%;
}

.container{
  width: 100%;
  display: flex;
}

.column{
  width: calc(33%);
}

footer{
  margin: 100px 0 20px;
  text-align: center;
}



#icon_hiyomori{
  width: 200px;
  margin-bottom: 30px;
}

#share-button{
  position: fixed;
  z-index: 9999;
  background: #ffffffb8;
  top: 20px;
  right: -2px;
  width: 50px;
  padding: 15px 0 0;

  display: none;

}

.active{
  opacity: 1;
  visibility: visible;
}

#share-button i {
  font-size: 26px;
  display: block;
  width: 50px;
  margin-bottom: 15px;
}

.fa-x-twitter{
  color: #0F1419;
}

.fa-line{
  color: #00B900;
}


#buy-button{
  position: fixed;
  z-index: 9999;
  bottom: 10px;
  right: 5px;
  width: 100px;
}

#buy-button img{
  width: 100%;
}

/* うごき */
/* その場で */
.fadeIn{
  animation-name:fadeInAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
  }

  @keyframes fadeInAnime{
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }

  /* fadeUp */

.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(20px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }

    /* スクロールをしたら出現する要素にはじめに透過0を指定　*/
   
    .flip-horizontal {
      transform: scale(-1, 1);
  }
  
  .fadeUpTrigger {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1s ease, transform 1s ease;
  }
  
  .fadeUpTrigger.active {
      opacity: 1;
      transform: translateY(0);
  }
  
  .flip-horizontal.fadeUpTrigger {
      transform: scale(-1, 1) translateY(20px); /* 初期状態 */
  }
  
  .flip-horizontal.fadeUpTrigger.active {
      transform: scale(-1, 1) translateY(0); /* アクティブ状態 */
  }



/* 以下　スマホ用 */

@media screen and (max-width: 640px) {
  
  .main_container{
    width: 100%;
  }
  
  #icon_hiyomori{
    width: 40%;
    margin-bottom: 30px;
  }

}