/*  リセット & ベース  */
/****************** 
⬛︎ここに書くもの
  リセットCSS
  bodyのフォント
  共通のタグ設定（img, a ,pなど）
******************/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: sans-serif;
  line-height: 1.6;
  color: #333;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* 全ページフェードイン */
/* 親要素の中にあるすべての子要素の初期状態 */
.parent > * {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 親要素にクラスがついたら表示 */
.parent.is-show > * {
  opacity: 1;
  transform: translateY(0);
}
