#nav {
  position: fixed;
  top: 0;
  left: 50%;
  max-width: 375px;
  width: 100%;
  background: #f2e9d6;
  margin-bottom: 0;
  transform: translate(-50%, 0);
  z-index: 3;
}
@media (max-width: 767px) {
  #nav {
    max-width: none;
    background: #fff;
  }
}
#nav .header_menu {
  background: #fff;
  display: none;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 4;
  max-height: calc(100vh - 83px);
  overflow-y: auto;
  overflow-x: hidden;
}
#nav .header_menu.is-active {
  display: block;
}
#nav .header_menu .menu-item-has-children a.is-active:after,
#nav .header_menu .menu-item-has-children-wrap a.is-active:after {
  transform: rotate(-135deg);
}
#nav .header_menu .menu-item-has-children.is-active > a:after,
#nav .header_menu .menu-item-has-children-wrap.is-active > a:after {
  transform: rotate(-135deg);
}
#nav .header_menu .menu-item-has-children > a:after,
#nav .header_menu .menu-item-has-children-wrap > a:after {
  display: block;
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  top: 50%;
  right: 15px;
  margin: -5px 0 0 0;
  border-bottom: solid 2px #bda75d;
  border-right: solid 2px #bda75d;
  transform: rotate(45deg);
}
#nav .header_menu .menu-item {
  border-top: 1px solid #eee;
}
#nav .header_menu .menu-item .sub-menu {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
#nav .header_menu .menu-item .sub-menu.is-active {
  display: block;
}
#nav .header_menu .menu-item .sub-menu li {
  border-top: 1px solid #eee;
  background: #f8f4eb;
}
#nav .header_menu .menu-item .sub-menu li a {
  padding: 10px 15px 10px 20px;
}
#nav .header_menu .menu-item .nav_icon img {
  vertical-align: middle;
  margin-left: 1rem;
}
#nav .header_menu a {
  position: relative;
  display: block;
  text-decoration: none;
  line-height: 1.5;
  font-size: 1.6rem;
  color: #333;
  padding: 15px;
  cursor: pointer;
  transition: 0.3s;
}
#nav .header_menu a:hover {
  background: #887454;
  color: #fff;
}
.sp_nav {
  font-size: 1.4rem;
  background: #fff;
  padding: 10px 0;
  text-align: center;
  border-bottom: solid 2px #ff7888;
}
@media (max-width: 767px) {
  .sp_nav {
    margin: 0 auto;
  }
}
.sp_nav .header_nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
@media (max-width: 767px) {
  .sp_nav .header_nav {
    width: calc(100% - 20px);
    margin: 0 auto;
  }
}
.sp_nav .header_nav-item {
  display: flex;
  flex: 1;
  align-items: center;
}

.sp_nav .header_nav-item:first-child a {
  border-left: none;
}
.sp_nav .header_nav-item a {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  color: #333;
  text-decoration: none;
  font-size: 1.7rem;
  font-weight: bold;
  transition: 0.3s;
}
.sp_nav .header_nav-item span {
  flex: 0 0 100%;
  width: 100%;
  display: block;
  letter-spacing: 0;
}
.sp_nav .header_nav-item span.sp_nav_icon img {
  max-height: 30px;
  margin-bottom: 1px;
}

.container,
.gutters {
  margin-left: 20px;
  margin-right: 20px;
}
.container {
  max-width: 50pc;
  margin: 0 auto;
}

.js-overlay {
  background: rgba(0, 0, 0, 0.7);
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}
.js-overlay.is-active {
  display: block;
}
