@charset "utf-8";
/* CSS Document */



/* screenwidth less than 1305px
--------------------------------------------------------------------- */
@media only screen and (max-width: 1305px) {

#gallery article {
    width: 90%;
}
#gallery article ul{
    width:99%;
  /* 縦並びにする（1カラム） */
    flex-direction: column; 
    /* 子要素を中央に寄せる */
    align-items: center;
}

}


/* screenwidth less than 900px
--------------------------------------------------------------------- */
@media only screen and (max-width: 900px) {

#gallery article ul li{
    margin:0 auto 80px auto;
    width:90%;

}
}
