@charset "utf-8";

.sa {
  opacity: 0;
  /*
  transition: all .5s ease;*/
  transition: all .8s ease;
}

.sa.show {
  /*
  opacity: 1;*/
  
  /* ファーストビューのものには style="opacity: 0;"を付けておくとhtml読み込み時にチラ見えしない */
  opacity: 1!important;
  transform: none;
}

.sa--lr {
  transform: translate(-100px, 0);
}

.sa--rl {
  transform: translate(100px, 0);
}

.sa--up {
  transform: translate(0, 100px);
}

.sa--down {
  transform: translate(0, -100px);
}

.sa--scaleUp {
  transform: scale(.5);
  /* 追加 */
  transition: all 1.2s ease;
}

.sa--scaleDown {
  transform: scale(1.5);
}

.sa--rotateL {
  transform: rotate(180deg);
}

.sa--rotateR {
  transform: rotate(-180deg);
}


/* ------------------------------------
/* PCのみの設定用(上書き)
------------------------------------ */
@media screen and (min-width: 768px) {
  .sa--pc--lr {
    transform: translate(-100px, 0);
  }

  .sa--pc--rl {
    transform: translate(100px, 0);
  }

  .sa--pc--up {
    transform: translate(0, 100px);
  }

  .sa--pc--down {
    transform: translate(0, -100px);
  }

  .sa--pc--scaleUp {
    transform: scale(.5);
    /* 追加 */
    transition: all 1.2s ease;
  }

  .sa--pc--scaleDown {
    transform: scale(1.5);
  }

  .sa--pc--rotateL {
    transform: rotate(180deg);
  }

  .sa--pc--rotateR {
    transform: rotate(-180deg);
  }
}

/* ------------------------------------
/* 個別設定
------------------------------------ */










