@charset "utf-8";
/* CSS Document */
* {
	margin: 0;
	padding: 0;
}
html {
	height: 100%;
	width: 100%;
	overflow: auto;
}
body {
	margin: 0;
	padding: 0;
	height: 100%;
	font: 12px 'Trebuchet MS', 'Arial', 'Helvetica', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	line-height: 16px;
	color: #333;
}
/* slider (base)
--------------------------------------------------------- */
.slideFrame {
  overflow: hidden;
  width: 200px;
  height: 800px;
}

.slideCell {
  display: block;
}

.slideGuide .slideCell {
  float: left;
  margin-right: 5px;
}
.slideGuide.up .slideCell, .slideGuide.down .slideCell {
  float: none;
  margin-right: 0;
  margin-bottom: 10px;
}

/* controller */
.slideCtrl {
  position: absolute;
  background-color: #333;
  background-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}
.slideCtrl.left, .slideCtrl.right {
  top: 0;
  width: 90px;
  height: 100%;
}
.slideCtrl.up, .slideCtrl.down {
  left: 0;
  width: 100%;
  height: 60px;
  font-size: 14px;
  line-height: 60px;
}

.slideCtrl.left {
  left: 0;
}

.slideCtrl.right {
  right: 0;
}

.slideCtrl.up {
  top: 0;
}

.slideCtrl.down {
  bottom: 0;
}

.slideCell{
	border:#CCCCCC solid 1px;
}
.slideCell img{
	width:100%;
	height:auto;
}
.slideCell a{
	width:180px;
	padding:9px;
	overflow:hidden;
	display:block;
	text-decoration: none;
	font-size:12px;
	line-height:18px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-color:rgba(243,35,87,0);
}
.slideCell a:hover{
	background-color:rgba(243,35,87,1.00);
}
.slideCell a p{
	padding:0 5px;
	color:rgba(51,51,51,1.00);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.slideCell a:hover p{
	color:rgba(255,255,255,1.00);
	text-decoration:none;
}
