@charset "utf-8";


/* header
------------------------------------------- */

.headerNavWrap  {
  width: 85%;
  display: flex;
  align-items: center;
	justify-content: space-between;
  margin: 0 auto;
}
.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: 60px;
  position: relative;
  image-rendering:auto;
}
.menuClose img {
  width: 50px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width:768px), print{
	
}


@media screen and (max-width: 767px) {
  .headerNavWrap {
    width: 100%;
    height: 60px;
    display: block;
    position: relative;
	margin: 0 auto;
    /*padding: 6px 17px;*/
  }
  .headerNav {
    display: block;
    padding: 20px 5%;
  }
  .headerNav li a {
	color:#333;
}
  .header__logo {
	  padding:5px 10px;
  }
  .header__logo img.logo {
	  width:80px;
	  height:40px;
  }
  #js-closeBtnWrap {
    height: 60px;
    display: block;
    background:#FFF;
  }
  #js-openBtn {
    /*display: block;*/
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
  }
  #js-openBtn img {
    width: 50px;
	height: 50px;
  }
  #js-spNav {
    position: absolute;
    z-index: 1000;
    top: 0;
    right: 0;
    width: 100%;
    background: #FFF;
    transform: translateX(100%);
    transition: all .3s;
  }
  #js-spNav.isOpen {
    transform: translateX(0);
  }
  .headerNav li {
    margin-left: 0;
    margin-bottom: 15px;
    border-bottom: dotted 1px #BBB;
    padding-bottom: 15px;
  }
  .headerNav li a {
    color: var(--navy);
    position: relative;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
	  display:block;
  }
  .headerNav li a span {
    font-size: 1.2rem;
  }
  /*.headerNav li a::after {
    position: absolute;
    top: 0;
    right: 17px;
    bottom: 0;
    width: 7px;
    height: 7px;
    margin: auto;
    border-right: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    transform: rotate(-45deg);
    content: "";
  }*/
}
