  /* 共通スタイル */

  html {
    scroll-behavior: smooth;
  }
  body {
    text-align: center;
    font-size: 16px;
    color: #333;
    font-family: ten-mincho-text, "游明朝体", "Yu Mincho", YuMincho, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    background: #FFF;
    margin: 0 auto;
    letter-spacing: 3px;
  }
  h1,h2, h3, h4 {
    display: block;
    font-weight: 700;
  }
  ul,li {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  a {
    display: block;
  }
  a:hover {
    text-decoration: none;
    opacity: 0.8;
  }
  img {
    width: 100%;
    margin: 1em auto;
    display: block;
    pointer-events: none;
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    touch-callout:none;
    user-select:none;
  }
  .lb-container img {
    margin: 0;
  }
  .img-responsive {
    width: 100%;
    display: block;
    margin: 0 auto;
  }
  .cf::after {
    content: "";
    display: block;
    clear: both;
  }
  .btn {
    display: block;
    margin: 1em auto;
    width: 100%;
    background: #FFF;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    color: #666;
    border-radius: 30px;
    border: 0;
    padding: 1em;
    font-weight: 700;
  }
  a.btn:hover {
    color: #666;
  }
  .fix_btn {
    font-size: 120%;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: #FFF;
    position: fixed;
    z-index: 999;
    padding: 10px 15px 0;
    box-shadow: 2px 2px 4px #555;  
  }
  a.fix_btn {
    color: #a492de;
    display: block;
  }
  .top_btn {
    bottom: 20px;
    right: 20px;
  }
  .only_pc {
    display: block;
  }
  .only_sp {
    display: none;
  }
  .effect-fade {
    opacity : 0;
    transform : translate(0, 45px);
    transition : all 800ms;
  }
  .effect-fade.effect-scroll {
    opacity : 1;
    transform : translate(0, 0);
}
  .protect{
    pointer-events:none;
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    touch-callout:none;
    user-select:none;
  }
  .fade_off {
    opacity: 0;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
  }
  .fade_on {
    opacity: 1;
  }

/* iPad用 */
@media (max-width: 1024px){
}

/* スマホ用CSS */
@media screen and (max-width: 768px){
  body {
    font-size: 16px;
    background-color: #FFF;
  }
  .only_sp {
    display: block;
  }
  .only_pc {
    display: none;
  }
}


/* アニメーションここから */

  /* その場で */
  .fadeIn{
    animation-name:fadeInAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeInAnime{
      from {
        opacity: 0;
      }
    
      to {
        opacity: 1;
      }
    }
  /* 左から */
  .fadeLeft {
    animation-name:fadeLeftAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    @keyframes fadeLeftAnime{
    from {
      opacity: 0;
      transform: translateX(-100px);
    }
  
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }  
  /* 右から */    
  .fadeRight {
    animation-name:fadeRightAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
  }
    @keyframes fadeRightAnime{
    from {
      opacity: 0;
      transform: translateX(100px);
    }
  
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  /* ぼかしから出現 */
  .blur{
    animation-name:blurAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    anime
  }

  @keyframes blurAnime{
    from {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.02);
    }

    to {
    filter: blur(0);
    transform: scale(1);
    }
  }

/* アニメーションここまで */
