/* =========================================================
   HQ Background: Layout
   key: header-thick
   name: ヘッダー｜少し厚めの縦幅
   group: set
   type: layout
   layer: header
   value:
   selector:
   ========================================================= */

/* =========================================================
   Header Layout
   ========================================================= */

#fixed_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.l-header__inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.l-header__logo {
  margin: 0;
  flex: 0 0 auto;
}

.l-header__logoLink {
  display: block;
  text-decoration: none;
}

.l-header__logoImage {
  display: block;
  height: 56px;
  width: auto;
}

.l-header__nav {
  flex: 1 1 auto;
}

.l-header__menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.l-header__menu > li > a {
  display: block;
  padding: 28px 24px;
  text-decoration: none;
  line-height: 1;
}

.l-header__actions {
  display: none;
  align-items: center;
}

.l-header__toggle,
.l-header__phone {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  width: 60px;
  height: 70px;
  display: grid;
  place-items: center;
  text-decoration: none;
  cursor: pointer;
}

.l-header__toggleIcon--close {
  display: none;
}

/* =========================================================
   SP Layout
   ========================================================= */

@media (max-width: 767px) {

  .l-header__inner {
    min-height: 70px;
    gap: 12px;
  }

  .l-header__logoImage {
    height: 44px;
  }

  .l-header__nav {
    display: none;
  }

  .l-header__actions {
    display: flex;
    flex: 0 0 auto;
  }

}
