[canvas] {
z-index: 1;
text-align: left;
}

[canvas=container] {
width: 100%;
height: 100%;
overflow-y: auto;
position: relative;
background-color: white; /* Basic background color, overwrite this in your own css. */
-webkit-overflow-scrolling: touch; /* Enables momentum scrolling on iOS devices, may be removed by setting to 'auto' in your own CSS. */
}

[canvas=container]:before, [canvas=container]:after {
clear: both;
content: '';
}

/**
* Off-Canavs
*/

[off-canvas] {
display: none;
position: fixed;
overflow: hidden;
overflow-y: auto;
background-color: #FFF; /* Basic background color, overwrite this in your own css. */
color: white; /* Basic colors, overwrite this in your own css. */
-webkit-overflow-scrolling: touch; /* Enables momentum scrolling on iOS devices, may be removed by setting to 'auto' in your own CSS. */
}

[off-canvas*=top] {
width: 100%;
height: 300px;
top: 0;
}

[off-canvas*=right] {
width: 300px;
height: 100%;
top: 0;
right: 0;
}

[off-canvas*=bottom] {
width: 100%;
height: 300px;
bottom: 0;
}

[off-canvas*=left] {
width: 300px;
height: 100%;
top: 0;
left: 0;
}

[off-canvas*=reveal] {
z-index: 0;
}

[off-canvas*=push] {
z-index: 1;
}

[off-canvas*=overlay] {
z-index: 9999;
}

[off-canvas*=shift] {
z-index: 0;
}

/**
* Animation
*/

[canvas], [off-canvas] {
-webkit-transform: translate( 0px, 0px );
    -ms-transform: translate( 0px, 0px );
        transform: translate( 0px, 0px );
-webkit-transition: -webkit-transform 300ms;
        transition:         transform 300ms;
-webkit-backface-visibility: hidden; /* Prevents flickering, may be removed if experiencing problems with fixed background images in Chrome. */
}

[off-canvas*=shift][off-canvas*=top] {
-webkit-transform: translate( 0px, 50% );
        transform: translate( 0px, 50% );
}

[off-canvas*=shift][off-canvas*=right] {
-webkit-transform: translate( -50%, 0px );
        transform: translate( -50%, 0px );
}

[off-canvas*=shift][off-canvas*=bottom] {
-webkit-transform: translate( 0px, -50% );
        transform: translate( 0px, -50% );
}

[off-canvas*=shift][off-canvas*=left] {
-webkit-transform: translate( 50%, 0px );
        transform: translate( 50%, 0px );
}
#overlayShadow {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.5); /* Tweak the transparency here. */
  z-index: 1; /* Just something higher than your content inside the container. */
}
.menu_overview_box{
  text-align: left;
}
@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);
  }
}

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










