#header {
  position: fixed;/*absolute不可*/
  width:100%;
  height:80px;
  padding:0;
  top:0;
  left:0;
  z-index: 20;
  /*background:rgba(255,255,255, 1);*/
  /*box-shadow:1px 1px 3px #ccc;*/
  transition: all 500ms ease;
}

body.trigger-open #header::before,
#header.scroll::before,
body.header-hover__active #header::before,
body.home #header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: .9;
}
body.trigger-open #header,
#header.scroll,
body.header-hover__active #header {
  box-shadow:1px 1px 3px #ccc;
  z-index: 25;
}
body.trigger-open #header::before,
body.header-hover__active #header::before {
  background: #fff;
  opacity: 1;
}
#header-inner {
  /* margin:0 2vw; */
  position:relative;
	-webkit-box-align: center;
	-ms-flex-align: center;
  align-items: center;
  height: 80px;
  transition: all 500ms ease;
}
#header-inner__logo {
  position: relative;
  width: 200px;
}
#header-inner__logo a,
#header-inner__navi a{
  text-decoration: none;
}
#header-inner__navi a:hover{
  color: var(--color-accent);
}
#header h1{
  position: absolute;
  top: 3px;
  left: 0;
  width: 100%;
  font-size: 1rem;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  #header h1{
    top: 7px;
  }

}
#header-inner__navi {
  display: none;
}
@media only screen and (min-width: 768px) {
}
@media only screen and (min-width: 1040px) {
  #header {
    height:100px;
  }
  #header-inner {
    height:100px;
  }
  #header-inner__navi {
    display: block;
    margin-right: 0;
    margin-left: auto;
  }
  #header-inner__navi  > nav {
  }
  #header-inner__navi  > nav > ul{
    margin: 0 -10px;
    position:relative;
    height:100px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
    transition: all 500ms 0s ease;
  }
  #header-inner__navi  > nav > ul > li{
    margin-left:10px;
    margin-right:10px;
    font-weight: bold;
  }
  #header-inner__navi  > nav > ul > li a{
    padding: 10px;
    text-align: center;
    display: inline-block;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 16px;
  }
  #header-inner__navi  > nav > ul > li.entry-link a{
    background: #185aa5;
    border: 1px solid #185aa5;
    color: #fff;
    border-radius: 19px;
    padding: 10px 20px;
  }
  #header-inner__navi  > nav > ul > li.entry-link a:hover{
    color: #185aa5;
    background: #fff;
  }
}