/* 
** The Header Media Queries **
** Tweak as per your needs **
*/
.brand {
  font-weight: bold;
  font-size: 20px; }

.site-header {
  position: relative; }

.site-header__wrapper {
  padding-top: 0rem;
  padding-bottom: 0rem; }
  @media (min-width: 750px) {
    .site-header__wrapper {
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      padding-top: 0;
      padding-bottom: 0; 

    }

}
@media (min-width: 750px) {
  .nav__wrapper{
    height: 100%;
  }
  .nav__wrapper ul{
    display: flex;
	height: 100%;
	} }

@media (max-width: 749px) {
  .nav__wrapper {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 1;
    color: #2eb2ff;
        background-color: #2eb2ff;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    /*padding: 20px;*/
overflow-y: scroll;
    height: calc(100vh - 58px);
 padding-bottom: 80px;      
     }
    .nav__wrapper.active {
      visibility: visible;
      opacity: 1;
      transform: translateY(0); }
.nav__item{
    border-bottom: 2px solid #2eb2ff;
    background: #fff;  
}      
    }

.nav__item{	
    display: flex;
    align-items: center;	
	position: relative;
}
.nav__item:not(:last-child):before{
  content:'';
  display: inline-block;
  width: 1px;
  height: 20px;
  background: #000;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.nav__item:nth-last-child(2):before{
  content: none;
}
.nav__item a {
  text-align: left;
  width: 100%;
  display: block;
  padding: 1rem 1rem;   
  color: #fff;
}
.nav__item:not(:last-child):before{
      background: #fff;
}
.fixed .nav__item a {
    color: #000;
}
.fixed .nav__item:not(:last-child):before{
      background: #000;
}

/*下層ページ*/
.pages .nav__item a {
      color: #fff;
}
.pages .nav__item:not(:last-child):before{
      background: #fff;
}
.pages header.fixed .nav__item a {
      color: #000;
}
.pages header.fixed .nav__item:not(:last-child):before{
      background: #000;
}
@media (max-width: 960px) {
  .nav__item a {
    font-size: 14px;
    color:#fff;
  }
.is-fixed .nav__item a {
    color: #000;
}  
}
.nav__toggle {
  display: none; }
  @media (max-width: 750px) {
    .nav__toggle {
      display: block;
      position: absolute;
      right: 1rem;
      top: 1rem; }
      .nav__item:not(:last-child):before{
        content: none;
      }
 .nav__item a {
      color: #2eb2ff!important;
}      
       }



/*JSを使いfixedクラスが付与された際の設定*/
header.fixed{
	width: 100%;
	position: fixed;/*fixedを設定して固定*/
  z-index: 999;/*最前面へ*/
  top:0;/*位置指定*/
  left:0;/*位置指定*/
	background: #fff;
	transition: 0.4s;
box-shadow: 0 0 1px #333;	
}
