/*-----------------------------------
フェードイン
------------------------------------*/
.js-fadeIn {
  translate: 0 0;
  opacity: 1;
}

.js-fadeIn.is-start {
  translate: 0 20px;
  opacity: 0;
}

.js-fadeIn.is-show {
  translate: 0 0;
  opacity: 1;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
