@charset "utf-8";
/* HTML================================= */


.banner {
    border:1px solid #aaa;
    background:rgba(255,255,255,.5);
    position:absolute;
    width: calc(100% - 2px);
    top:0;
    left:0;
    transition: all .5s;
    overflow: hidden;
    max-height:276px;
}
.banner:hover{
    border:1px solid #5637a4;
}
.banner:nth-child(n+2){
    opacity:0;
}
.banner > a > div{
    width:100%;
    padding-bottom:29.1%;
    background-size:cover;
    background-position:top center;
}
#slideBannerArea{
    margin:0px 0px 20px;
    padding-top:20px;
    text-align: center;
}
.slideBanner {
    max-width:952px; 
    width: 100%;
    position: relative;
    margin: auto;
}


.slideBanner > div:nth-child(1){
opacity: 1;
height: 41vw;
}
.slideBanner > div:nth-child(n+2){
opacity: 0;
height: 0px;
}
.slideBanner > div:last-child{
    padding-top:30%;
    opacity: 1;
height: auto;
}
.text {
  display:none;
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 0px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
.dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #5637a4;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #ffd72d;
}

@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}