/* Slider 
http://black-flag.net/jquery/20121219-4407.html

ex)
<div class="wideslider">
<ul>
<li><a href="#1"><img src="img/image01.png" width="960" height="573" alt="image" /></a></li>
<li><a href="#2"><img src="img/image02.png" width="960" height="573" alt="image" /></a></li>
<li><a href="#3"><img src="img/image03.png" width="960" height="573" alt="image" /></a></li>
</ul>
</div><!--/.wideslider-->

*/


.wideslider {
   width: 100%;

   height: 494px;
   text-align: left;
   position: relative;
   overflow: hidden;

}

 
.wideslider ul,
.wideslider ul li {
    float: left;
    display: inline;
    overflow: hidden;
}
 
.wideslider_base {
    top: 0;
    position: absolute;
}
.wideslider_wrap {
    top: 0;
    position: absolute;
    overflow: hidden;
 
}
.slider_prev,
.slider_next {
    top: 0;
    overflow: hidden;
    position: absolute;
    z-index: 50;
    cursor: pointer;

}
.slider_prev {background: #fff url(../img/prev.png) no-repeat center center;}
.slider_next {background: #fff url(../img/next.png) no-repeat center center;}
 

/* ページ遷移dot ----------------*/
.pagination {
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    text-align: center;
    position: absolute;
    z-index: 200;

}
 
.pagination a {
    margin: 0 5px;
    width: 15px;
    height: 15px;
    display: inline-block;
    overflow: hidden;
    background: #333;
}
.pagination a.active {
    filter:alpha(opacity=100)!important;
    -moz-opacity: 1!important;
    opacity: 1!important;
}
 
/* 今回は非表示 */
.pagination{
	display:none;
}

/* =======================================
    ClearFixElements
======================================= */
.wideslider ul:after {
    content: ".";
    height: 0;
    clear: both;
    display: block;
    visibility: hidden;
}
 
.wideslider ul {
    display: inline-block;
    overflow: hidden;
}

