@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  height: -webkit-fill-available;
}
body {
  color: #707070;
  font-family: 'Raleway', sans-serif, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ";
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 0.05em;
  text-align: center;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

a:hover {
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}
/*.box {
  min-height: 100vh;
  min-height: -webkit-fill-available;
}*/
.fadeIn {
  transition: 3s;
  opacity: 0;
}
.fadeIn.animated {
  opacity: 1;
}

