@charset "utf-8";

/* Eric Meyer’s “Reset CSS” 2.0
----------------------------------------------------------- */
/* header
------------------------------------------- */
.header__leadWrap {
  background: #0285c1;
  color: #000;
  font-size: 11px;
}
.headerNavWrap,
.headerNav  {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.headerNavWrap {
  padding: 20px 0 15px;
}
.header__logo {
  width: 171px;
  line-height: 50px;
}
.headerNav {
  max-width: none;
  font-size: 13px;
  font-weight: bold;
}
.headerNav li {
  margin-left: 30px;
}
.headerNav li:first-child {
  margin-left: 0;
}
.headerNav li a {
  display: block;
  line-height: 48px;
}
#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 {
  display: inline-block;
  padding: 10px;
}
.menuClose img {
  width: 17px;
}

@media screen and (max-width: 1100px) {
  .header__leadWrap {
    padding: 0 10px;
  }
  .headerNavWrap {
    padding: 20px 10px 15px;
  }
  .headerNav li {
    margin-left: 20px;
  }
}
@media screen and (max-width: 900px) {
  .headerNavWrap {
    display: block;
    position: relative;
    padding: 6px 17px;
  }
  .headerNav {
    display: block;
  }
  .header__logo img {
    width: 124px;
  }
  #js-closeBtnWrap {
    display: block;
    background: #fff;
  }
  #js-openBtn {
    display: block;
    position: relative;
    width:100%;
    height:auto;
    overflow:hidden;
    top: 8px;
    left:0;
    right: 3px;
    bottom: 0;
    margin: auto;
    padding: 0;
    text-align:center;
  }
  #js-openBtn img {
    width: 50%;
    vertical-align: bottom;
    border:1px #FFF solid;
  }
  #js-spNav {
    position: fixed;
    z-index: 3;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(41,34,18,.9);
    transform: translateX(100%);
    transition: all .3s;
	overflow:auto;
	-webkit-overflow-scrolling: touch;
  }
  #js-spNav.isOpen {
    transform: translateX(0);
  }
  .headerNav li {
    margin-left: 0;
    margin-bottom:2px;
    background: #f7f7f7;
    list-style:none;
    border-bottom: 1px solid #dbdbdb;
  }
  .headerNav li:first-child {
    border-top: 1px solid #dbdbdb;
  }
  .headerNav li a {
    position: relative;
    display: block;
    padding: 0 15px;
    font-size:4vw;
    font-weight: normal;
    line-height: 50px;
    color:#584b29;
  }
	.headerNav li a span{
		font-size:3vw;
		color:#584b29;
		margin-left:1%;
	}
  
  .headerNav li a::after {
    position: absolute;
    top: 0;
    right: 17px;
    bottom: 0;
    width: 7px;
    height: 7px;
    margin: auto;
    border-right: 1px solid #584826;
    border-bottom: 1px solid #584826;
    transform: rotate(-45deg);
    content: "";
  }
}
