﻿@charset "utf-8";

.slide {
    position: relative;
    width: 875px;
    margin: 0px 0px 0px 0px;
}
.slide ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.slide img {
    vertical-align: bottom;
}
.slide .slideDetect {
    position: relative;
    width: 875px;
    height: 410px;
    margin-bottom: 0px;
}
.slide .slideDetect .slideItem {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.slide .slideDetect .slideItem:first-child {
    z-index: 2;
}

/* キャプション */
.slide .slideCaption {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: block;
    width: 100%;
    color: #ffffff;
    background: #000000;
    background-color: rgba(0,0,0,0.75);
}
.slide .slideCaption span {
    display: block;
    padding: 5px 10px;
}

/* インジケータ */
.slide .slideIndicator {
    text-align: center;
}
.slide .slideIndicator li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 3px;
    text-indent: -99999px;
    cursor: pointer;
    background: #cccccc;
    border-radius: 50%;
}
.slide .slideIndicator li.is_current {
    background: #000000;
}

/* ページャー */
.slide .slidePager li {
    position: absolute;
    top: 183px;
    z-index: 999;
    width: 35px;
    height: 35px;
    cursor: pointer;
    text-indent: -99999px;
    overflow: hidden;
    background: #C0C0C0 no-repeat;
    background-color: rgba(255,255,255,0.8);
    border-radius: 50%;
}
.slide .slidePager .slidePagerPrev {
    left: 10px;
    background-image: url(../image/prev.png);
    background-position: 45% 50%;
}
.slide .slidePager .slidePagerNext {
    right: 10px;
    background-image: url(../image/next.png);
    background-position: 55% 50%;
}

