@charset "UTF-8";
/*
---------------------------------------------------------------------------------------------------------------------
ローディング
---------------------------------------------------------------------------------------------------------------------
*/
.loading-bg {
  width: 100%;
  height: 100vh;
  background-color: #6CAE38;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999; }

.loading-animation-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  font-size: 1.4em;
  font-weight: bold;
  line-height: 1.2;
  z-index: 6;
  color: white;
  border-right: 2px solid white;
  animation: typewriter 2s steps(40) 1s 1 normal both, blinkTextCursor 100ms steps(40) infinite normal; }

@keyframes typewriter {
  from {
    width: 0; }
  to {
    width: 7em; } }
@keyframes blinkTextCursor {
  from {
    border-right-color: white; }
  to {
    border-right-color: transparent; } }
.loader {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center; }
  .loader img {
    width: 200px; }
  .loader h2 {
    font-size: 1.5em;
    color: #fff; }

.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff; }

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0); }
  50% {
    transform-origin: left;
    transform: scaleX(1); }
  50.001% {
    transform-origin: right; }
  100% {
    transform-origin: right;
    transform: scaleX(0); } }
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgLRextendTrigger, .bgappearTrigger, .fadeUpTrigger, .flipLeftTrigger {
  opacity: 0; }
