@charset "UTF-8";

body{
    background-color:rgb(58,60,60);
    width: 100vw;
    
}
.logo {
    margin-top: 1vh;
    width: 44vw;
}



.slide {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  text-align: center;
}

@keyframes slideshow{
  0%{
    opacity: 0;
  }
  10%{
    opacity: 1;
  }
  28%{
    opacity: 1
  }
  38%{
    opacity: 0;
  }
  100%{
    opacity: 0;
  }

}

.slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  opacity: 0;
  animation :slideshow 24s linear infinite;
}

.slide img:nth-child(2){
  animation-delay: 8s;
}

.slide img:last-child{
  animation-delay: 16s;
}


#copyright {
    border-top: solid #fff;
    clear: both;
    width: 100vw;
    text-align: center;
    font-size: 17px;
    font-family: 'notosan';
}


/*メニュー部分*/
.girlsrule{
    list-style: none;
     width: 90vw;
    
    margin: -height: vw 0 15vw;

}
.girlsrule li{
    float: left;
    border-right: 2px dashed #ffffff;    
    }

.girlsrule li:last-child{
    border-right: none;
}



.girlsrule li a{
    display: block;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    
}

.girlsrule li a strong{font-size: 16px;
    font-family: 'honoka';
    
}

#wrpper{width:100vw; }
