/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
/*------------
Header
--------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  transition: 0.5s;
}
.header.is-fixed {
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}
.header.is-fixed .h-wrapper {
  padding: 0 2.5vw;
  transition: 0.5s;
}
.header.is-fixed .h-logo {
  max-width: 180px;
  transition: 0.5s;
}
.header.is-fixed .pc-navi > ul > li + li > a:not(.btn) {
  line-height: 80px;
}
.header.is-on {
  background: #fff;
}

.h-wrapper {
  padding: 0 2.5vw;
}

.h-logo {
  transition: 0.5s;
}

/*------------
G-navi
--------------*/
.pc-navi > ul {
  color: #ED9B37;
}
.pc-navi > ul > li > a {
  line-height: 100px;
}
.pc-navi > ul > li > a::after {
  content: "";
  background: #092181;
}

@media only screen and (max-width: 800px) {
  .header {
    position: static;
  }
  .page-ttl {
    margin-top: 0;
  }
}