/*jsアニメーション ページ切り替え*/
/* jsアニメーション ページ切り替え */
body::before {
  content: '';
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff; /* ホワイト背景 */
  z-index: 9999;
  pointer-events: none;
  left: -100%; /* 初期状態：画面外左側 */
  -webkit-transition: left 2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff; /* ホワイト背景 */
  z-index: 9999;
  pointer-events: none;
  right: -100%; /* 初期状態：画面外右側 */
  -webkit-transition: right 2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body.is-slide-in::before {
  left: 0; /* 左からスライドイン */
}

body.is-slide::after {
  right: 0; /* 右からスライドアウト */
}




/* フォント処理*/
body{
    margin: 0;
    padding: 0;
    -webkit-font-smomthing: subpixel-antialiased;
    font-family: "Noto Serif JP", serif;
    line-height: 2em;
    font-size: 100%;
    word-break: break-all;
}
h1,h2,h3,h4{
    font-weight: 400!important;
    font-family: "Noto Serif JP", serif;
}
.huto{
    font-weight: 400!important;
    font-family: "Noto Serif JP", serif;
}


p {
    font-size: 16px;
    line-height: 1.8em;
}
