@charset "UTF-8";



/*================================================= リンクホバー アニメーション ===============================================*/

*,*::before, *::after {
    box-sizing: border-box;
  }
  
  a:hover,
  a:focus {
    opacity: 60%;
  }



  
/*================================================= ナビリンクに下線出現アニメーション ===============================================*/

/*下線出現させたい要素に「.nav」のクラスをつけるだけ*/
  
  .nav a{
    background:
        linear-gradient(currentColor 0 0)
        bottom /var(--d, 0) 2px
        no-repeat;       
    transition:0.5s;
  }
  .nav a:hover {
    --d: 100%;
  }


/*================================================= ふわっと出現アニメーション ===============================================*/

/*フワッとさせたい要素に「.fadeUpTrigger」のクラスをつけるだけ*/


.fadeUpTrigger {
    opacity: 1;
  }
  
  .fadeUp{
    animation-name:fadeUpAnime;
    animation-duration: 2s;
    animation-fill-mode:forwards;
    opacity: 0;
  }
  
  @keyframes fadeUpAnime {
    from {
      opacity: 0;
      transform: translateY(100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  
  /*--- 遅れて演出 ---*/
  
  .delay-time-02 {
    animation-delay: 0.2s;
  }
  
  .delay-time-04 {
    animation-delay: 0.4s;
  }
  
  
  
  