@charset "UTF-8";
/*
---------------------------------------------------------------------------------------------------------------------
ローディング
---------------------------------------------------------------------------------------------------------------------
*/
#loader {
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #008442;
  z-index: 9999; }
  #loader ul#loader-logo {
    text-align: center; }
    #loader ul#loader-logo li {
      animation: fadeUp 1.5s ease forwards;
      animation-delay: .10s;
      opacity: 0; }
      #loader ul#loader-logo li:nth-of-type(2) {
        animation-delay: .30s; }
      #loader ul#loader-logo li:nth-of-type(3) {
        animation-delay: .50s; }
    #loader ul#loader-logo .mark img {
      width: 120px;
      height: auto; }
      @media (min-width: 768px) {
        #loader ul#loader-logo .mark img {
          width: 160px; } }
    #loader ul#loader-logo h2 img {
      width: 120px;
      margin-top: 15px; }
      @media (min-width: 768px) {
        #loader ul#loader-logo h2 img {
          width: 160px; } }

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(10px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
/* ローディングアニメーション */
@keyframes sk-scaleout {
  0% {
    opacity: 0;
    transform: scale(1.4); }
  100% {
    opacity: 1;
    transform: scale(1); } }
