@charset "utf-8";
.header {
    width: 100%;
    position: absolute;
    z-index: 9999;
    background-color: transparent;
    padding-top: 12px;
    padding-bottom: 12px;
    pointer-events: none;
}
.header__inner {
    padding-left: clamp(1.25rem, -1.917rem + 6.6vw, 6rem);
}
.header__text--sp {
  display: none;
}
.header__container {
      display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 16px;
}
.header__logo {
  width: clamp(3.5rem, -1.857rem + 8.37vw, 8.188rem);
  pointer-events: auto;
}
.header__text {
    font-size: clamp(0.75rem, 0.607rem + 0.22vw, 0.875rem);
    font-weight: 700;
    margin-right: clamp(1.25rem, -0.179rem + 2.23vw, 2.5rem);
    text-align: center;
        position: absolute;
    top: clamp(1.25rem, 0.583rem + 1.39vw, 2.25rem);
    right: clamp(26.25rem, 14.679rem + 18.08vw, 36.375rem);
        text-shadow: 1px 1px 2px rgba(0,0,0,0.9);
    color: #fff;
}
.header__fixed {
      display: flex;
    position: fixed;
    top: 20px;
    right: 30px;
        pointer-events: auto;
    z-index: 9999;
}
.header-btn__text {
  font-size: clamp(0.75rem, 0.179rem + 0.89vw, 1.25rem);
}

.hamBtn {
       margin-left: clamp(1rem, 0.667rem + 0.69vw, 1.5rem);
    width: 48px;
    height: 48px;
    background-color: #000;
    cursor: pointer;
    transition: all .5s;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.hamBar {
        position: relative;
    display: flex;
    flex-direction: column;
    width: 31px;
    height: 24px;
}
.hamBar>div {
        position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    border-radius: 25px;
    background: #FFF;
    transition: .5s;
}
.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: 10px;
  transform: rotate(-45deg);
}
.hamBar.active>div:nth-child(2) {
  opacity: 0;
}
.hamBar.active>div:nth-child(3) {
  top: 10px;
  transform: rotate(45deg);
}

.sp__menu {
      width: 390px;
  background-color: #000;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  height: 100svh;
  transition: .5s;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: center;
  visibility: hidden;
  padding-top: 80px;
  text-align: center;
  overflow: scroll;
}
.sp__menu.active {
  transform: translateY(0%);
  visibility: visible;
  pointer-events: auto;
}
.header__fixed--btn.active {
  display: none;
}
.sp-menu__container {
  display: flex;
  flex-direction: column;
  row-gap: clamp(1.25rem, -0.179rem + 2.23vw, 2.5rem);
  width: 100%;
}
.sp-menu__logo {
  width: 200px;
}
.sp-menu__link {
  font-weight: 700;
  color: #fff;
  transition: all .5s;
}
.sp-menu__link:hover {
  opacity: 0.6;
}
.sp-menu-btn__wrap {
  margin-top: 40px;
}
.sp-menu__btn {
      display: flex;
    align-items: center;
    column-gap: 16px;
    padding: 10px 16px;
    border: 1px solid #fff;
    transition: all .5s;
}
.sp-menu__btn:hover {
  background-color: #747474;
}
.sp-menu-btn__text {
      font-size: 20px;
    font-weight: 700;
    color: #fff;
}
.sp-menu-btn__icon {
  width: 24px;
}

@media (max-width: 1023px) {
  .header__text {
    width: 200px;
  }
}

@media (max-width: 767px) {
  .sp__menu {
    width: 100%;
  }
  .header__text--sp {
        height: 24px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background-color: #000;
    display: flex;
    align-items: center;
    padding-left: 20px;
  }
  .header__text {
    display: none;
  }
  .header__fixed {
        right: 8px;
    top: 36px;
  }
  .header__fixed--btn {
    display: none;
  }
}