@charset "UTF-8";
/* CSS Document */

body {
    color:#3B3B3B;
    font-family : 'Noto Sans JP','Montserrat','Avenir','Yu Gothic','YuGothic','Century Gothic','Futura',sans-serif;
    font-style: normal;
    font-size:15px;
    font-weight: 400;    
}


@media screen and (min-width: 767px){
    /* 記事アニメーション */
    .scroll-fade{opacity: 0; transition: all 2s/*処理にかかる時間*/;}
    .scroll-up{opacity: 0; transform: translateY(20px)/*スクロールアップする距離*/; transition: all 1s/*処理にかかる時間*/;}
    .scroll-up.done, .scroll-fade.done{opacity : 1; transform : translate(0, 0);}

    .load-fade {opacity : 0; transition : all 2s/*処理にかかる時間*/;}
    .load-up{opacity: 0; transform: translateY(10px)/*スクロールアップする距離*/; transition: all 1s/*処理にかかる時間*/;}
    .load-up.done, .load-fade.done{opacity : 1; transform : translate(0, 0);}
}

@media screen and (max-width: 768px){
    /* 記事アニメーション */
    .scroll-fade{opacity: 0; transition: all 1s/*処理にかかる時間*/;}
    .scroll-up{opacity: 0; transform: translateY(10px)/*スクロールアップする距離*/; transition: all 1s/*処理にかかる時間*/;}
    .scroll-up.done, .scroll-fade.done{opacity : 1; transform : translate(0, 0);}

    .load-fade {opacity : 0; transition : all 2s/*処理にかかる時間*/;}
    .load-up{opacity: 0; transform: translateY(10px)/*スクロールアップする距離*/; transition: all 1s/*処理にかかる時間*/;}
    .load-up.done, .load-fade.done{opacity : 1; transform : translate(0, 0);}
}

/*マーカーアニメーション*/
 
.marker-animation.active{
    background-position: -100% .5em;
}
 
.marker-animation {
    background-image: -webkit-linear-gradient(left, transparent 50%, rgb(225,242,228) 10%);
    background-image: -moz-linear-gradient(left, transparent 50%, rgb(225,242,228) 10%);
    background-image: -ms-linear-gradient(left, transparent 50%, rgb(225,242,228) 10%);
    background-image: -o-linear-gradient(left, transparent 50%, rgb(225,242,228) 10%);
    background-image: linear-gradient(left, transparent 50%, rgb(225,242,228) 10%);
    background-repeat: repeat-x;
    background-size: 200% .8em;
    background-position: 0 .5em;
    transition: all 2s ease;
}

/*------------------------------------------------------------
    スクロール
------------------------------------------------------------*/
a.scroll-down {
    display: inline-block;
    position: absolute;
    right: 18px;
    bottom: 0;
    z-index: 2;
    padding: 10px 10px 40px;
    overflow: hidden;
    color: #fff;
    font-size: 9px;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1;
    letter-spacing: .2em;
    text-transform: uppercase;
    text-decoration: none;
    writing-mode: vertical-lr;
}

a.scroll-down::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 30px;
  background: #fff;
}

a.scroll-down::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, .4);
  z-index: 2;
}
a.scroll-down::after {
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
  z-index: 2;
}

 @media screen and (min-width: 768px) {
    a.scroll-down {
      right: 40px;
      padding: 10px 10px 90px;
      }

    a.scroll-down::after {
      height: 80px;
    }

    a.scroll-down::before {
      height: 80px;
    }
}
