


/**
 * 03-06 スライドショー
 */
/* スライドショー全体のスタイル */
.wrapper-slide{
	background-image:url(file:///E|/users/saito.ayaka/desktop/mainimage-back.png);
	background-repeat:no-repeat;
	
}

.slide {
	position: relative;
	margin: 0 auto;
	max-width: 1073px;
	font-size: 0; /* 画像下の隙間を埋めるため */
}
.slide img {
	width: 1073px;
}
.slide > .container {
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
	list-style: none;
}
/* 写真の配置 */
.slide > .container > li {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 1s linear;
}
.slide > .container > li.current {
	position: relative;
	z-index: 1;
	opacity: 1;
}
/* スライドショーのボタン */
.slide a.prev,
.slide a.next {
	position: absolute;
	display: block;
	top: 45%;
	width: 40px;
	height: 40px;
	text-indent: -5000px;
	z-index: 10; /* ボタンを常に画像より上に配置 */
}
.slide a.prev {
	background: url(http://jalcf.com/wp-content/themes/kvki/slider/arrow-left1.png) 50% 50% no-repeat;
	left: 0;
}
.slide a.prev:hover {
	background: url(http://jalcf.com/wp-content/themes/kvki/slider/arrow-left2.png) 50% 50% no-repeat;
}
.slide a.prev:active {
	background: url(http://jalcf.com/wp-content/themes/kvki/slider/arrow-left3.png) 50% 50% no-repeat;
}
.slide a.next {
	background: url(http://jalcf.com/wp-content/themes/kvki/slider/arrow-right1.png) 50% 50% no-repeat;
	right: 0;
}
.slide a.next:hover {
	background: url(http://jalcf.com/wp-content/themes/kvki/slider/arrow-right2.png) 50% 50% no-repeat;
}
.slide a.next:active {
	background: url(http://jalcf.com/wp-content/themes/kvki/slider/arrow-right3.png) 50% 50% no-repeat;
}

/**
 * RESPONSIVE: スマートフォン向けウィンドウ幅600px以下
 */
