@charset "utf-8";

html {
  overflow-y: scroll;
}

/********************
  mainVisual
********************/

#mainvisual {
	width:          100%;
}

#mainvisual ul {
	position:       relative;
}

#mainvisual ul li {
	display:        none;
	position:       absolute;     /* 背面の画像にはposition: absoluteを指定 */
	top:            0;            /* 背面の画像をtop: 0に移動し、画像を重ねる */
	z-index:        1;            /* 背面の画像のz-indexを1に指定 */
	width:          100%;
}
#mainvisual ul li:first-child {
	display:        block;
	position:       relative;     /* 前面の画像にはposition: relativeを指定 */
	z-index:        1000;         /* 前面の画像のz-indexを1000に指定 */
}
