/* 
	Resets defualt browser settings
	reset.css
*/
/* 
:focus { outline:0; }
a:active { outline:none; }
zbody { line-height:1; color:black; background:white; }
ol,ul { list-style:none; }
table { border-collapse:separate; border-spacing:0; }
caption,th,td { text-align:left; font-weight:normal; }
blockquote:before,blockquote:after,q:before,q:after { content:""; }
blockquote,q { quotes:"" ""; }
*/

/*	Page style	*/
#container {
	position: relative;
	z-index: 0;
	float: left;
	margin: 0;
	padding: 9px 4px;
	width: 425px;
	border: 1px solid #ff6285;
	background-color: #ffecf0;
}
#products_example {
	position: relative;
	margin: 0;
	padding: 0;
	width: 375px;
	height: 500px;
}

/*	Slideshow	*/
#products {
	margin-left: 25px;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/
#products .slides_container {
	width: 375px;
	overflow: hidden;
	float: left;
	position: relative;
	box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	-moz-box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	-webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	-o-box-shadow: 1px 1px 1px  rgba(0,0,0,0.2);
	-ms-box-shadow: 1px 1px 1px  rgba(0,0,0,0.2);
	behavior: url(https://www.miraclegirls.net/PIE.htc);	/* IE用CSS3表示 ※後でフルパスに変更 */
	display: none;
}

/*
	Each slide
	Important:
	Set the width of your slides
	If height not specified height will be set by the slide content
	Set to display block
*/

.slides_container a {
	width: 375px;
	height: 500px;
	display: block;
}

/*	Next/prev buttons	*/
#products .next,#products .prev {
	position: absolute;
	top: 240px;	/* 写真の高さの半分-10 */
	left: 0;
	width: 20px;
	height: 0;
	padding-top: 20px;
	overflow: hidden;
	display: block;
	z-index: 101;
}
#products .prev {
	background: url(../img/arrow-prev.png);
}
#products .next {
	left: 405px;	/* 写真の横幅+10+20 */
	background: url(../img/arrow-next.png);
}

/*	Pagination	*/
#products .pagination {
	background: #fff;
	width: 335px;	/* 写真の横幅-40 */
	margin: 10px auto;
	padding: 10px 20px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	float: left;
}
#products .pagination ul {
	margin: 0;
	padding: 0;
	line-height: 0;	/* 隙間対策 */
	text-align: center;	/* 中央揃え */
}
#products .pagination li {
	display: table-cell;	/* table風表示 */
	vertical-align: top;	/* 縦の位置設定 */
	display: inline-block;
	margin: 0;
	margin-right: 5px;
	padding: 0;
	list-style: none;
	width: 60px;
}
#products .pagination li:last-child {	/* 最終行 */
	margin-right: -5px;	/* 隙間対策 */
}
#products .pagination li a {
	display: block;
	width: 60px;
	height: 80px;
	margin: 1px;
	float: left;
}
#products .pagination li.current a {
	border: 1px solid #543f32;
	margin:0;
}

/*	Anchors
a:link,a:visited {
	color: #599100;
	text-decoration: none;
}
a:hover,a:active {
	color: #599100;
	text-decoration: underline;
}
*/