/* body */
/* safariのスクロールを禁止する */
body{
    position: fixed;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  
  /* stage */
  .nxa-stage{
      width:300px;
      height: 250px;
      background-color: #000;
      position: relative;
  }
  
  /* panel */
  .panelSwipe{
      width:300px;
      height: 250px;
      position: absolute;
      z-index: 999;
  }
  .panelButton{
      width:45px;
      height: 250px;
      position: absolute;
      z-index: 1000;
      right:0;
  }
  
  /* arrow */
  .nxa-navArrow{
      position: absolute;
      top: 125px;
      left: 285px;
      z-index: 2;
      width: 8px;
      height: 13px;
  }
  
  /* carousel */
  .nxa-carousel__wrap{
      width:300px;
      height: 250px;
      overflow: hidden;
      position:relative;
      z-index: 1;
  }
  .nxa-carousel{
      width:300px;
      height: 250px;
      position: absolute;
      top:0;
      left:300px;
  }
  .nxa-carousel.transition{
      transition: transform 0.6s ease;
  }
  .nxa-carousel.show{
      transform:translateX(-300px);
  }
  .nxa-carousel.hide{
      transform:translateX(-600px);
  }
  