@charset "utf-8";
/*スライドショー*/
.slideshow{
    width:100%;
    min-width:288px;
    height:158px;
    overflow:hidden;
    position:relative;
}
.slideshow img{
    display:none;
    width:100%;
    position:absolute;
    left:50%;
    margin-left:-144px;
}
/*768px以上*/
@media only screen and (min-width:767px), print {
    .slideshow{
        width:100%;
        min-width:748px;
        height:417px;
    }
    .slideshow img{
        display:block;
        min-width:768px;
        margin-left:-384px;
    }
}
@media only screen and (min-width:1024px), print {
    .slideshow{
        width:100%;
        min-width:714px;
        height:401px;
    }
    .slideshow img{
        display:block;
        min-width:714px;
        margin-left:-357px;
    }
}