@charset "UTF-8";
/* スムーズスクロールの有効化 */
html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  overflow-y: scroll;
  font-family: "M PLUS 1p", serif, "Hiragino Sans", Hiragino Kaku Gothic ProN, YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #333;
  line-height: 180%;
  text-align: justify;
}

.btn {
  opacity: 1;
}

.btn:hover {
  opacity: 0.6;
  transition: 0.5s;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
}

/*スクロールフェードイン*/
.fade-in {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

/* 上からのフェードイン */
.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
}

/* 下からのフェードイン */
.fade-in-down {
  opacity: 0;
  transform: translateY(-50px);
}

/* 左からのフェードイン */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
}

/* 右からのフェードイン */
.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
}

/* スクロールで表示されたときのスタイル */
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}/*# sourceMappingURL=common.css.map */