@charset "utf-8";

.header {}
.header-upper {
  min-height: 40px;
  background: #675539;
}
.header-upper .page-size {
  display: flex;
  justify-content: space-between;
}
.header-catch {
  font-size: 1.3rem;
  line-height: 1.2;
  color: #fff;
  display: flex;
  align-items: center;
}
.header-btns {
  display: flex;
  max-width: 300px;
  width: 80%;
}
.header-btns li {
  width: 50%;
  min-height: 40px;
}
.header-btns li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.3rem;
  text-align: center;
  color: #fff;
}
.header-btns li a:hover {
  opacity: 1;
}
.header-btns li.cart-btn {
  background: #673939;
}
.header-btns li.cart-btn:hover {
  background: #7e4a4a;
}
.header-btns li.login-btn {
  background: #4a6739;
}
.header-btns li.login-btn:hover {
  background: #5b7b48;
}
.header-btns li.cart-btn a::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(../images/common/cart_icon.png) 50% 50% / cover no-repeat;
  margin-right: 5px;
}
.header-btns li.login-btn a::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 19px;
  background: url(../images/common/login_icon.png) 50% 50% / cover no-repeat;
  margin-right: 5px;
}
.header-lower {
  /* height: 110px; */
}
.header-lower .page-size {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 110px;
}
.header-logo {
  max-width: 194px;
}
.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  width: 100%;
  margin: 0 10px;
}
.header-nav li {
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  position: relative;
}
.header-nav li.current::before,
.header-nav li:hover::before {
  position: absolute;
  content: "";
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 8px;
  background: url(../images/common/gnav_icon.png) 50% 50% / cover no-repeat;
}
.header-nav li:first-of-type {
  margin-bottom: 1em;
}
.header-nav li .small {
  display: inline-block;
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.header-nav li.current a,
.header-nav li a:hover {
  opacity: 1;
  color: #89662d;
}
.header-lower .more-btn {
  font-size: 14px;
  max-width: 190px;
  height: 40px;
  margin: 0;
}
.header-lower .more-btn::before {
  content: none;
}

@media screen and (max-width:767px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #fff;
    z-index: 100;
  }
  .sp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
  .header-logo {
    max-width: 220px;
    margin-left: 3vw;
    margin-right: 3vw;
  }
  .header-logo img {
    width: 100%;
  }
  .header-btns {
    max-width: 200px;
    height: 100%;
  }
  .header-btns li {
    height: 100%;
  }
  .header-btns li a {
    font-size: 1.7rem;
    flex-direction: column;
  }
  .header-btns li.login-btn a::before {
    width: 28px;
    height: 38px;
    margin-right: 0;
    margin-bottom: 10px;
    background: url(../images/common/login_icon_sp.png) 50% 50% / cover no-repeat;
  }
  .header-btns li.menu-btn {
    background: #2f2a25;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    padding-top: 22px;
    cursor: pointer;
  }
  .header-btns li.menu-btn span {
    font-size: 1.7rem;
    color: #fff;
  }
  .header-btns li.menu-btn .hamburger {
    width: 50px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 14px;
  }
  .header-btns li.menu-btn .hamburger span {
    background: #8f7153;
    display: block;
    width: 100%;
    height: 2px;
  }
  .sp-menu {
    /* display: none; */
    opacity: 0;
    position: fixed;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(47,42,43,0.95);
    transition: .3s;
    overflow: hidden;
    z-index: -1;
  }
  .sp-menu.is-open {
    /* display: block; */
    height: 100vh;
    padding-top: 150px;
    padding-bottom: 50px;
    opacity: 1;
    overflow-y: scroll;
    z-index: 100;
  }
  .sp-menu .close-btn {
    width: 100px;
    height: 100px;
    position: fixed;
    top: 0;
    right: 0;
    background: url(../images/common/close_btn.png) 50% 50% / cover no-repeat;
    cursor: pointer;
    z-index: 101;
  }
  .sp-menu-inner {
    display: none;
  }
  .sp-menu.is-open .sp-menu-inner {
    display: block;
  }
  .header-nav {
    flex-direction: column;
    max-width: none;
    margin-bottom: 20px;
  }
  .header-nav li {
    /* font-size: 4vw; */
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.6em;
  }
  .header-nav li:first-of-type {
    margin-bottom: 1.6em;
  }
  .header-nav li.current::before,
  .header-nav li:hover::before {
    content: none;
  }
  .header-nav.sub li {
    font-size: 2rem;
  }
}
@media screen and (max-width:480px) {
  .header-nav li {
    font-size: 2rem;
  }
  .header-nav.sub li {
    font-size: 1.6rem;
  }
}