@charset "utf-8";

* {
margin:0;
padding:0;
}

*, *::before, *::after {
box-sizing: border-box;
}

#slideshow {
position: relative;
width:  100%; /* ボックスの横幅 */
height: auto;
max-height: 90px;
}

#slideshow:before {
content: "";
display: block;
padding-top: 1.2636%;
}


#slideshow .slideshow-bn {
position: absolute;
top:  0;
left: 0;
z-index: 8;
opacity: 0.0;
margin: 0;
background-color: white; /* ボックスの背景色(必須) */
}

#slideshow .slideshow-bn.active {
z-index: 10;
opacity: 1.0;
}

#slideshow .slideshow-bn.last-active {
z-index: 9;
}

#slideshow .slideshow-bn img {
width:  100%;
display: block;
border: 0;
}

@media only screen and (min-width: 461px) and (max-width: 769px) {#slideshow {min-height: 64px;}
}

@media screen and (max-width: 460px) {
#slideshow {min-height: 30px;}
}
