@charset "UTF-8";

/*IconFont*--------------------*/
.i-small {font-size: 0.7em}

/*header*--------------------*/
#header{
  margin-top: 0px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(255,255,255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center; 
  z-index:100
}
#header .header_inner{
  max-width: 980px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#header.logo {
	flex: none;
	width: 200;
	height: 30px;
}
#header #h1{
    margin: 0;
	line-height: 0;
}

/*767pix以下の時のヘッダーの天地*/
@media screen and  (max-width: 767px) {
#header{height: 54px;}
.logo {margin: 0 auto;}
}




