/* 会員ページヘッダー (Figma: header/lite)
 * tokens: bg white, icon #5c5647, text #5c5647, spacing 8/48, radius 4,
 * shadow 0 0 2px rgba(29,24,7,0.1), height 48
 */
.page-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  padding: 8px 48px;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0 0 2px 0 rgba(29, 24, 7, 0.1);
}

.page-header__menu {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.page-header__burger {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
}

.page-header__burger-line {
  position: absolute;
  left: 0;
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 4px;
  background: #5c5647;
}

.page-header__burger-line:nth-child(1) {
  top: 2px;
}

.page-header__burger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.page-header__burger-line:nth-child(3) {
  bottom: 2px;
}

.page-header__title {
  flex: 1 0 0;
  min-width: 0;
  margin: 0;
  color: #5c5647;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  word-break: break-word;
}
