.header {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  color: #ffffff;
  font-size: 1.125rem;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}

.layout__header {
  width: 1600px;
  padding: 0 50px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  height: 110px;
}

/* 간격 */

.header__logo {
  width: 20%;
}

.header__gnb {
  width: 60%;
}

.header__user {
  width: 20%;
}

/* 로고 */

.header__logo {
  padding-left: 20px;
}

.header__logo img {
  height: 83px;
}

/* gnb */

.header__gnb_menu {
  display: flex;
  justify-content: start;
  gap: 10vw;
}

/* user menu */

.header__user {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 2rem;
}

.header__user_list {
  display: flex;
}

.header__user_list li {
  margin-right: 1rem;
}

/**
.header__user_list li:last-child::before {
  content: "|";
  margin-right: 1rem;
}**/

.header__btn_store {
  color: #ffffff;
  border: 1px solid #fff;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
}

/* 모바일 메뉴 */

.header__mobile {
  display: none;
}

.header__btn_mobile {
  width: 28px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 100;
}

.header__btn_mobile span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  /* 흰색 */
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header__btn_mobile span:nth-child(1) {
  transform-origin: top left;
}

.header__btn_mobile span:nth-child(3) {
  transform-origin: bottom left;
}

.header__btn_mobile.is_active span:nth-child(1) {
  transform: rotate(45deg);
}

.header__btn_mobile.is_active span:nth-child(2) {
  opacity: 0;
}

.header__btn_mobile.is_active span:nth-child(3) {
  transform: rotate(-45deg);
}

.header__menu_mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 99;
}

.header__menu_mobile.is_show {
  opacity: 1;
  visibility: visible;
}

.header__mobile_layout {
  width: 100%;
  height: 100%;
  position: relative;
}

.header__menu_mobile_list {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}




@media screen and (max-width: 1700px) {
  .layout__header {
    width: 100%;
  }
}

@media screen and (max-width: 1280px) {
  .header__gnb_menu {
    display: flex;
    justify-content: center;
    gap: 5vw;
  }
}

@media screen and (max-width: 1024px) {
  .header__logo {
    width: auto;
  }

  .header__gnb {
    width: auto;
  }

  .header__user {
    width: auto;
  }

  .header__gnb {
    display: none;
  }

  .header__user_list {
    display: none;
  }

  .header__mobile {
    display: block;
  }

  .header__logo {
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .layout__header {
    padding: 0 24px;
  }

  .header__btn_store {
    color: #ffffff;
    border: 1px solid #fff;
    padding: 0.5rem 1rem;
    font-weight: 700;
  }
}

@media screen and (max-width: 390px) {}