/*jsアニメーション ページ切り替え*/
#page-animate::before {
 content: '';
 position: fixed;
 left: 0; /* 左右に合わせる */
 width: 100%;
 height: 100%;
 background-image: linear-gradient(215deg, rgba(8, 0, 88, 1), rgba(8, 0, 55, 1));
background-repeat: no-repeat; 
background-position: center;
 z-index: 9999;
 pointer-events: none;
  top: 100%;
 -webkit-transition: top 2s cubic-bezier(0.4, 0, 0.2, 1);
 transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#page-animate::after {
 content: '';
 position: fixed;
 left: 0; /* 左右に合わせる */
 width: 100%;
 height: 100%;
 background-image: linear-gradient(215deg, rgba(8, 0, 88, 1), rgba(8, 0, 55, 1));
background-repeat: no-repeat; 
background-position: center;
 z-index: 9999;
 pointer-events: none;
 bottom: 100%;
 -webkit-transition: bottom 2s cubic-bezier(0.4, 0, 0.2, 1);
 transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#page-animate.is-slide-in::before {
 top: 0; /* 上から下へスライドイン */
}

#page-animate.is-slide::after {
 bottom: 0; /* 上から下へスライドイン */
}



/* フォント処理*/
body{
    margin: 0;
    padding: 0;
    -webkit-font-smomthing: subpixel-antialiased;
    font-family: "Noto Sans JP",sans-serif;
    line-height: 2em;
    font-size: 100%;
    word-break: break-all;
}
h1,h2,h3,h4{
    font-weight: 600!important;
    font-family: "Poppins","Noto Sans JP",sans-serif;
}
.huto{
    font-weight: 600!important;
    font-family: "Poppins","Noto Sans JP",sans-serif;
}


p {
    font-size: 16px;
    line-height: 1.8em;
}
