@charset "utf-8";
.header {
      background-color: #F7F5F2;
    height: clamp(5.5rem, 3.929rem + 2.46vw, 6.875rem);
  position: fixed;
  z-index: 9999;
  width: 100%;
  transition: all .5s;
}
.header__inner {
      height: inherit;
    padding-left: clamp(1rem, -1.714rem + 4.24vw, 3.375rem);
    padding-right: clamp(1rem, -4.714rem + 8.93vw, 6rem);
}
.header__container {
    position: relative;
      height: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 16px;
}
.header__logo {
  width: clamp(13.75rem, 6.75rem + 10.94vw, 19.875rem);
}
.header-left__text {
      font-size: 12px;
    font-weight: 500;
}
.header__items {
      display: flex;
    column-gap: clamp(1rem, -2.429rem + 5.36vw, 4rem);
}
.header__item {
    font-size: clamp(0.75rem, 0.464rem + 0.45vw, 1rem);
    font-weight: 500;
    color: #2E2E2E;
    white-space: nowrap;
    transition: all 0.5s;
}
.header__item:hover {
  color: #FFAF6A;
}

.hamBtn {
  display: none;
}
.sp__menu {
  display: none;
}

@media (max-width: 1023px) {
  .header-left__text {
    font-size: 10px;
  }
  .header__items {
    display: none;
  }
  .header__item {
    font-size: 16px;
  }
  .hamBtn {
        position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 100%;
    cursor: pointer;
    z-index: 9999;
    transition: all .7s;
    color: #FAFBFF;
    background-color: rgba(255,255,255,0.8);
    max-width: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
  }
  .hamBar {
        position: relative;
    width: 24px;
    height: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hamBar > div {
        position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #2E2E2E;
    transition: .7s;
  }
  .hamBar>div:nth-child(1) {
    top: 0; 
  }
  .hamBar>div:nth-child(2) {
    top: 50%;
  }
  .hamBar>div:nth-child(3) {
    top: 100%;
  }
  .hamBar.active>div:nth-child(1) {
    top: 7px;
    transform: rotate(-45deg);
  }
  .hamBar.active>div:nth-child(2) {
    opacity: 0;
  }
  .hamBar.active>div:nth-child(3) {
    top: 7px;
    transform: rotate(45deg);
  }
  
  .sp__menu {
    background-color: #F7F5F2;
    padding: 170px 0;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 100%;
    height: 100svh;
    transition: .5s;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    align-items: center;
    visibility: hidden;
    overflow: scroll;
  }
  .sp-menu__inner {
    width: 100%;
    padding: 0 40px;
  }
  .sp__menu.active {
    transform: translateY(0%);
    visibility: visible;
    pointer-events: auto;
  }
  .sp-menu__content {
        display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sp-menu__items {
        display: flex;
    flex-direction: column;
    row-gap: 48px;
        text-align: center;
    width: 100%;
  }
  .sp-menu-job__btn {
        margin-top: 56px;
    width: 240px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 16px;
    background-color: #FFDBBC;
    border: 3px solid #FFDCBC;
    border-radius: 10px;
    transition: all 0.5s;
  }
  .sp-menu-job__btn:hover {
    background-color: #fff;
  }
  .sp-menu-job-btn__icon {
    width: 40px;
  }
  .sp-menu-job-btn__text {
        font-size: 16px;
    font-weight: 500;
    color: #2E2E2E;
  }
}

@media (max-width: 389px) {
  .hamBtn {
    top: 40%;
  }
  .sp__menu {
    padding: 140px 0;
  }
  .sp-menu__items {
    row-gap: 32px;
  }
  .sp-menu-job__btn {
    margin-top: 48px;
  }
}