/* ミラの画像サイズを画面サイズに合わせる */
.image-vw {
  width : 100vw ; 
}

.image-vw2 {
  width : 50vw ; 
}

ul {
  list-style:none;/*デフォルトの指定を解除*/
  margin:0;/*デフォルトの指定を解除*/
  padding:0;/*デフォルトの指定を解除*/
  display:table;
  width:100%;/*幅を100%に*/
}
li {
  display:table-cell;
  padding:0px;/*余白を指定*/
}
img {
  max-width:100%;/*画像の幅を最大100%に*/
  user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  -webkit-user-select:none;
  -khtml-user-select:none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -webkit-touch-callout: none;
}