#cssでz-indexが効かないの事態を解決する方法
cssにて、position: relative; を追記する。
.class1{z-index:0;
position: relative;}
.class2{z-index:1;
position: relative;}
参考:[http://cafe.76bit.com/creative/web-design/2259/ z-index が効かない!入れ子でも階層構造でもz-indexを効かしてデザインしたい!]
(http://cafe.76bit.com/creative/web-design/2259/)