/*--------------------------------------------
	header
--------------------------------------------*/
@charset "UTF-8";
.header {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 10px 10px 0px 10px;
  position: fixed;
	
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
}

.logo img {
	height:40px;
	table-layout: fixed;
	}

.fat-nav {
  display: none;
}

.nav a {
	
  font-size:14px;
  line-height:1.0em;
  letter-spacing:0.2em;
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  text-decoration: none;
  color: #000;
}

.nav a:hover {
  color: #999;
}

.nav a img {
	height:20px;
	table-layout: fixed;
	vertical-align: middle;
	}


.nav li {
  display: inline-block;
  margin: 10px 10px;
}

.nav-wrap.open {
  display: block;
}

.nav-wrap.close {
  display: none;
}

@media screen and (min-width: 901px) {
  .nav-wrap {
    display: block !important;
  }
}

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

  .nav-wrap {
    display: none;
  }
 

}