/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
/*------------
Header
--------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header.is-fixed {
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}
.header.is-fixed .h-wrapper {
  padding: 0 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header.is-fixed .h-logo {
  max-width: 180px;
  -webkit-transition: 0.5s;
  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 25px;
}

.h-logo {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/*------------
G-navi
--------------*/
.pc-navi > ul {

}
.pc-navi > ul > li > a {
  line-height: 100px;
}
.pc-navi > ul > li > a::after {
  content: "";
  background: #CAA070;
}

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

  .page-ttl {
    margin-top: 0;
  }
}
