@charset "utf-8";


/* header
------------------------------------------- */

.header__logo {
}

.header__logo img {
	height:60px;
}
#js-menuBk {
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.6);
}
#js-closeBtnWrap {
  display: none;
}
#js-openBtn {
  display: none;
}
.menuClose {
  width: 100%;
  height: 50px;
  position: absolute;
  image-rendering:auto;
	top: 0;
	right: 0;
}
.menuClose img {
  width: 20px;
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width:768px), print{
	
}


@media screen and (max-width: 767px) {

  .headerNav {
    display: block;
    padding: 8px 8% 30px;
  }
  .headerNav li a {
	color:#333;
}
  .header__logo {
	  padding:5px 10px;
  }
  .header__logo img.logo {
	  width:60px;
	  height:40px;
    background: var(--primary);
  }
  #js-closeBtnWrap {
    height: 50px;
		display: flex;
		align-items: center;
  }
	
  #js-openBtn {
    /*display: block;*/
    position: absolute;
    top: 0;
    right: 8%;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
		width: 20px;
    height: 14px;
  }
  #js-openBtn img {
    width: 20px;
		height: 14px;
  }
  #js-spNav {
    position: absolute;
    z-index: 1000;
    top: 0;
    right: 0;
    width: 100%;
    background: var(--navy);
    transform: translateX(100%);
    transition: all .3s;
  }
  #js-spNav.isOpen {
    transform: translateX(0);
		overflow-y: auto;
  	-webkit-overflow-scrolling: touch; /* iOS対応 */
  }
  .headerNav li {
		color: #FFF;
    margin-left: 0;
		border-bottom: solid 1px rgba(255,255,255,0.2);
		padding: 24px 0;
  }
	.headerNav li:last-child {
		border-bottom: none;
	}
  .headerNav li a {
		color: #FFF;
    font-size: 1.6rem;
		font-weight: 500;
    line-height: 1.5;
	  display:block;
  }
  .headerNav li a span {
    font-size: 1.2rem;
  }


}