@charset "UTF-8";
/*スマホ用オーバーレイナビゲーション*/
/*ナビゲーションの背景*/
.overlay {
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 0;
 background: url(../../_img/bg_menu_sp.jpg) no-repeat center top /100% auto #FFF;
  padding: 0;
  top: 0;
  right: 0;
  opacity: 0;
  /*透明度、表示を変更、高さを変更する際のアニメーション設定*/
  -webkit-transition: opacity .35s, visibility .35s, height .35s;
  z-index: 101;
  /*スクロールをスムーズに設定*/
  -webkit-overflow-scrolling: touch;
}

/*----------------------------------------------------------------*/
/*#toggleをクリックで.overlayに追加するクラス*/
.nav-active {
  opacity: .96;
  visibility: visible;
  overflow: auto;
  height: 100%; /*max-height: 340px;*/
}
/*----------------------------------------------------------------*/
/*ハンバーガーメニュー*/
#navToggle {
  position: fixed;
    width: 15%;
    height: auto;
    padding-top:calc(100%*38/260)!important;
    background: url(../../_img/sp_menu.png) no-repeat center top /100% auto;
    margin: 0;
  top: 1%;
  /*fixedで親要素を起点にする場合はleftを指定しない*/
  right: 5px;
  z-index: 200;
  text-indent: -99999px;
  box-sizing: border-box;
  cursor: pointer;
}
/*ハンバーガーメニュー 閉じるボタンに切り替え*/
#navToggle.toggle-active {
  background: url(../../_img/sp_menu_on.png) no-repeat center top /100% auto;
  z-index: 200;
}
#nav2 ul {
  width: 120%;
  margin: 0 0 0 2%;
    padding:0;
    display: flex;
    flex-wrap: wrap;
}
#nav2 ul li {
  width: 33%;
  margin: 0 -3%;
  text-align: center;
position:relative;
}


#splogo{
width:70%;
display: block;
margin: 5vh auto 0;
}
#splogo img{width:100%;
}


/*----------------------------------------------------------------*/
@media screen and (min-width:480px) and (max-width:600px) {
  /*--------------------------------------------------------end@media*/
}
@media screen and (min-width:600px) and (max-width:960px) {
  /*　iPad用 画面サイズが600pxから960pxまではここを読み込む　*/
  /*--------------------------------------------------------end@media*/
}
@media screen and (min-width:960px) and (max-width:1280px) {
  /*　小型PC用 画面サイズが960pxから1280pxまではここを読み込む　*/
  /*--------------------------------------------------------end@media*/
}
@media screen and (min-width:1280px) {
  /*　大型PC用 画面サイズが1280pxからはここを読み込む　*/
  /*--------------------------------------------------------end@media*/
}
@media screen and (min-width:668px) {
  /*　PC用 画面サイズが668pxからはここを読み込む　*/
  .overlay {
    display: none!important;
  }
  /*PCではボタンを非表示*/
  #navToggle {
    display: none;
  }
  /*--------------------------------------------------------end@media*/
}
@media screen and (max-width: 320px) {
  /*　iPhone5用 画面サイズが320px以下はここを読み込む　*/
  /*--------------------------------------------------------end@media*/
}