@charset "UTF-8";
.header-content {
  display: none;
}

.header {
  border-bottom: 1px solid #e2e1e0;
}
.header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
}
.header .header-logo {
  width: 81px;
  height: auto;
  margin-left: 20px;
  position: relative;
  z-index: 4;
}
.header .drawer {
  width: 70px;
  height: 70px;
  margin-right: 5px;
  position: relative;
  z-index: 4;
}
.header .drawer.-active .drawer-icon {
  background-color: transparent;
}
.header .drawer.-active .drawer-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.header .drawer.-active .drawer-icon::after {
  top: 0;
  transform: rotate(-45deg);
}
.header .drawer.-active .drawer-text::before {
  content: "閉じる";
}
.header .drawer .drawer-icon {
  width: 25px;
  height: 2px;
  background-color: #333;
  border-radius: 1px;
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.header .drawer .drawer-icon::before, .header .drawer .drawer-icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #333;
  border-radius: 1px;
  position: absolute;
  transition: inherit;
}
.header .drawer .drawer-icon::before {
  top: -7px;
}
.header .drawer .drawer-icon::after {
  top: 7px;
}
.header .drawer .drawer-text {
  width: 100%;
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
}
.header .drawer .drawer-text::before {
  content: "メニュー";
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}
.header .drawer-content {
  width: 100%;
  height: 100vh;
  background-color: #fdfcfa;
  border-top: 1px solid #e2e1e0;
  margin-top: 70px;
  position: fixed;
  top: 0;
  left: -100%;
  visibility: hidden;
  z-index: 3;
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.header .drawer-content.-active {
  left: 0;
  visibility: visible;
}
.header .drawer-content .drawer-content-inner {
  padding: 30px 20px 0 20px;
}
.header .drawer-content .drawer-search {
  position: relative;
  margin-bottom: 10px;
}
.header .drawer-content .drawer-search .drawer-search-input {
  font-size: 1.6rem;
  width: 100%;
  height: 52px;
  border: 1px solid #e2e1e0;
  border-radius: 26px;
  padding: 0 62px 0 15px;
}
.header .drawer-content .drawer-search .drawer-search-button {
  width: 50px;
  height: 52px;
  background-color: #ba5100;
  border-radius: 0 26px 26px 0;
  position: absolute;
  top: 0;
  right: 0;
}
.header .drawer-content .drawer-search .drawer-search-button img {
  width: 16px;
  height: auto;
  margin: 0 auto;
}
.header .drawer-content .drawer-search .drawer-search-button img:nth-child(2) {
  display: none;
}
.header .drawer-content .drawer-nav {
  margin-bottom: 20px;
}
.header .drawer-content .drawer-nav .drawer-nav-item {
  border-bottom: 1px solid #e2e1e0;
}
.header .drawer-content .drawer-nav .drawer-nav-item a {
  display: block;
  font-weight: 500;
  background: url(../../images/icon_arrow_right.svg) right center no-repeat;
  background-size: 8px 14px;
  padding: 20px 0;
}
.header .drawer-content .drawer-subnav-item:not(:last-child) {
  margin-bottom: 15px;
}
.header .drawer-content .drawer-subnav-item a {
  font-size: 1.4rem;
}
.header .drawer-content .drawer-subnav-item:not(:last-child) a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 8px;
  background-image: url(../../images/icon_arrow_right_small.svg);
  background-repeat: no-repeat;
  background-size: 6px 8px;
  margin-left: 5px;
  vertical-align: middle;
}/*# sourceMappingURL=header.css.map */