/*このファイルはtopページの設定（ヘッダーとフッターを除く）*/
  .mainVisual img{
    width: 100%;
  }

  /*スライダー（swiper）設定　ここから*/
  .swiper-container{
    position: relative;
  }

  .swiper-button-prev{
    position: absolute;
    top: 50%;
    left: 5%;
    width: 40px;  /*デフォルトの2倍*/
    height: 40px;  /*デフォルトの2倍*/
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    border-left: 3px solid #ededed;
    border-top: 3px solid #ededed;
    transform: rotate(-45deg);
    background-image: none;
  }

  .swiper-button-next{
    position: absolute;
    top: 50%;
    right: 5%;
    width: 40px;
    height: 40px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    border-left: 3px solid #ededed;
    border-top: 3px solid #ededed;
    transform: rotate(135deg);
    background-image: none;
  }

  .swiper-button-prev:hover,
  .swiper-button-next:hover{
    border-left: 3px solid rgba(200,200,200,0.6);
    border-top: 3px solid rgba(200,200,200,0.6);
    transition: 0.2s;
  }

  .swiper-pagination{
    margin-bottom: /*20px*/2%;
  }

  .swiper-pagination-bullet{
    background: #fff;
    width: 10px;
    height: 10px;
    opacity: 0.8;
    margin: 50px;
  }

  .swiper-pagination-bullet-active{
    background: transparent;
    border: 2px solid #fff;
    width: 15px;
    height: 15px;
  }

  .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 20px;
    vertical-align: middle;
  }
  /*スライダー（swiper）設定　ここまで*/


@media screen and (max-width:640px){
  .mainVisual img{
    width: 200%;
    position: relative;
    left: -50%;
  }

  .swiper-button-prev{
    width: 20px;
    height: 20px;
  }

  .swiper-button-next{
    width: 20px;
    height: 20px;
  }

  .swiper-container-horizontal>
  .swiper-pagination-bullets
   .swiper-pagination-bullet {
    margin: 0 20px;
  }

  .swiper-pagination-bullet{
    width: 5px;
    height: 5px;
  }

  .swiper-pagination-bullet-active{
    width: 10px;
    height: 10px;
  }
}
