/* ========== Header ========== */
.l_header {
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  z-index: 50;
  width: 100%;
}

.l_header__inner {
  max-width: 1200px;
  margin: 0 auto;
      padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.l_header__brandLink {
  display: inline-flex;
  align-items: center;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  color: #333;
}

.l_header__logo {
  height: 42px;
  width: auto;
  display: block;
}

.l_header__nav {
  margin-left: auto;
}

.l_header__menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.l_header__link {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .06em;
  position: relative;
  padding: 8px 2px;
}

.l_header__link:hover {
  opacity: .75;
}

.l_header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 18px;
  border-radius: 0;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  white-space: nowrap;
}

.l_header__btn--recruit {
  background: var(--cp-color);
  color: #fff;
}

.l_header__btn--contact {
  background: var(--cp-color);
  /* 青 */
  color: #fff;
}

/* ========== SP toggle ========== */
.l_header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.l_header__toggleLines {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  position: relative;
  margin: 0 auto;
}

.l_header__toggleLines::before,
.l_header__toggleLines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #111;
}

.l_header__toggleLines::before {
  top: -7px;
}

.l_header__toggleLines::after {
  top: 7px;
}

/* ========== Drawer ========== */
html.is-locked,
html.is-locked body {
  overflow: hidden;
}

.l_drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.l_header.is-drawer-open .l_drawer {
  display: block;
}

.l_drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
}

.l_drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  /* width: min(86vw, 360px); */
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 18px 18px 22px;
  box-shadow: -12px 0 32px rgba(0, 0, 0, .16);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
}

.l_drawer__close {
  align-self: flex-end;
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.l_drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto;
  width: 100%;
  /* align-items: center; */
}

.l_drawer__link {
  text-decoration: none;
  color: #111;
  font-weight: 700;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  text-align: center;
}

.l_drawer__btn {
  margin-top: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 14px;
  font-weight: 800;
  letter-spacing: .06em;
}

.l_drawer__btn--recruit {
  background: var(--cp-color);
  color: #fff;
}

.l_drawer__btn--contact {
  background: #000;
  color: #fff;
}

/* ========== Responsive ========== */
@media (max-width:768px) {
  .l_header__nav {
    display: none;
  }

  .l_header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}