#customer_header {
  /* 共通 */
  font-family: "Forum", serif;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  color: #383838;
}
#customer_header a {
  color: #383838;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  opacity: 1;
}
#customer_header a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#customer_header .flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
#customer_header .customer_ {
  /* 個別 */
}
#customer_header .customer_hd-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 44px 0 44px;
  height: 125px;
  border-bottom: 1px solid #D1D1D1;
}
@media (max-width: 892px) {
  #customer_header .customer_hd-wrapper {
    height: 80px;
    padding: 0 24px 0 16px;
  }
}
#customer_header .customer_logo {
  width: 215px;
}
@media (max-width: 892px) {
  #customer_header .customer_logo {
    width: 139px;
  }
}
#customer_header .customer_logo img {
  width: 100%;
}
#customer_header .customer_menu {
  height: 100%;
  flex-grow: 1;
  justify-content: space-between;
}
@media (max-width: 892px) {
  #customer_header .customer_menu {
    justify-content: center;
    flex-grow: 0;
  }
}
#customer_header .customer_menuList {
  display: flex;
  height: 100%;
  padding: 0px 30px;
  flex-grow: 1;
  justify-content: center;
  margin-left: -20px;
}
@media (max-width: 892px) {
  #customer_header .customer_menuList {
    display: none;
  }
}
#customer_header .customer_menuList li {
  list-style: none;
  padding: 0 18px;
}
#customer_header .customer_menuList li a {
  color: #383838;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  height: 100%;
  margin-top: 5px;
}
#customer_header .customer_sns {
  margin: 5px 0 0 0;
  display: flex;
  gap: 21px;
}
@media (max-width: 892px) {
  #customer_header .customer_sns {
    margin: 5px 25px 0 0;
    gap: 12px;
  }
}
#customer_header .customer_sns svg path {
  fill: #383838;
}
#customer_header .customer_access {
  height: 100%;
  display: none;
}
@media (max-width: 892px) {
  #customer_header .customer_access {
    display: block;
  }
}
#customer_header .customer_access a {
  font-size: 18px;
  height: 100%;
}
@media (max-width: 892px) {
  #customer_header .customer_access a {
    font-size: 16px;
  }
}