@charset "utf-8";
.header {
      position: absolute;
    width: 100%;
    padding-top: 20px;
    z-index: 1000;
}
.header__inner {
      padding-left: clamp(1.25rem, -4.179rem + 8.48vw, 6rem);
    padding-right: clamp(6rem, 4.333rem + 3.47vw, 8.5rem);
}
.header__container {
      display: flex;
    justify-content: space-between;
    column-gap: 20px;
}
.header__logo {
  width: clamp(6.25rem, 0.125rem + 12.76vw, 15.438rem);
}
.header__right {
      display: flex;
    column-gap: clamp(2rem, -0.286rem + 3.57vw, 4rem);
}
.header__items {
      display: flex;
    column-gap: clamp(2rem, -0.286rem + 3.57vw, 4rem);
}
.header__items a {
  height: fit-content;
}
.header__item {
      font-size: clamp(0.875rem, 0.446rem + 0.67vw, 1.25rem);
    font-weight: 700;
}

.header__fixed {
      position: fixed;
    right: 14px;
    top: 11px;
   display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  z-index: 9999;
}
.header__fixed a {
  width: 100%;
      display: flex;
    justify-content: center;
}
.hamBtn {
    width: clamp(3.125rem, 2.583rem + 1.13vw, 3.938rem);
    height: clamp(3.125rem, 2.583rem + 1.13vw, 3.938rem);
    background-color: #000;
    border-radius: 50%;
    cursor: pointer;
    transition: all .5s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hamBar {
      position: relative;
    display: flex;
    flex-direction: column;
    width: clamp(1.313rem, 1.104rem + 0.43vw, 1.625rem);
    height: clamp(1.125rem, 0.917rem + 0.43vw, 1.438rem);
}
.hamBar>div {
    position: absolute;
    right: 0;
    width: 100%;
    height: clamp(0.125rem, 0.083rem + 0.09vw, 0.188rem);
    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: 8px;
  transform: rotate(-45deg);
}
.hamBar.active>div:nth-child(2) {
  opacity: 0;
}
.hamBar.active>div:nth-child(3) {
  top: 8px;
  transform: rotate(45deg);
}

.header__btn {
  writing-mode: vertical-lr;
      display: flex;
    align-items: center;
    column-gap: 8px;
    padding: 8px;
    border-radius: 32px;
    padding-bottom: 20px;
}
.header__btn--pink {
    border: 2px solid #FF0062;
    background-color: #fff;
    transition: all 0.5s;
}
.header__btn--black {
    border: 2px solid #000;
    background-color: #fff;
    transition: all 0.5s;
}
.header-btn__icon {
  width: 48px;
}
.header-btn__text {
    font-size: clamp(1rem, 0.714rem + 0.45vw, 1.25rem);
    font-weight: 700;
}
.header-btn__text--pink {
    color: #FF0062;
    transition: all 0.5s;
}
.header-btn__text--black{
    color: #000;
    transition: all 0.5s;
}
.header-btn__arrow {
      width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 16px;
}
.header-btn__arrow--pink {
    border-color: transparent transparent transparent #FF0062;
    transition: all 0.5s;
}
.header-btn__arrow--black {
    border-color: transparent transparent transparent #000;
    transition: all 0.5s;
}

.header__btn--pink:hover {
  background-color: #FF0062;
}
.header__btn:hover .header-btn__text--pink {
  color: #fff;
}
.header__btn:hover .header-btn__arrow--pink {
  border-color: transparent transparent transparent #FFF;
}

.header__btn--black:hover {
  background-color: #000;
}
.header__btn--black:hover .header-btn__text--black {
  color: #fff;
}
.header__btn--black:hover .header-btn__arrow--black {
  border-color: transparent transparent transparent #FFF;
}

.sp__menu {
        background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: clamp(24.375rem, 17.292rem + 14.76vw, 35rem);
    height: 100vh;
    transition: .5s;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    align-items: center;
    visibility: hidden;
    padding-top: 100px;
    padding-bottom: 80px;
    margin-bottom: 80px;
    overflow: scroll;
}
.sp-menu__inner {
       width: 100%;
    padding-left: clamp(2.5rem, -1.5rem + 6.25vw, 6rem);
    padding-right: clamp(2.5rem, -1.5rem + 6.25vw, 6rem);
}
.sp__menu.active {
    transform: translateY(0%);
    visibility: visible;
    pointer-events: auto;
}
.sp-menu__items {
        display: flex;
    flex-direction: column;
    row-gap: clamp(1.25rem, -0.25rem + 3.13vw, 3.5rem);
}
.sp-menu__item {
     display: flex;
    column-gap: 40px;
    align-items: center;
}
.sp-menu-item__icon {
      width: clamp(1.25rem, 1.042rem + 0.43vw, 1.563rem);
    object-fit: contain;
}
.sp-menu-item__text {
      font-size: clamp(1.125rem, 0.875rem + 0.52vw, 1.5rem);
    font-weight: 700;
}

@media (max-width: 1023px) {
  .header__right {
        flex-direction: column;
    row-gap: 10px;
  }
}

@media (max-width: 767px) {
  .header__right {
    display: none;
  }
  .header__fixed {
        flex-direction: row-reverse;
    column-gap: 16px;
        right: 20px;
    top: 20px;
  }
  .header__fixed a {
  width: unset;
  }
  .header__btn {
    writing-mode: unset;
        border: none;
    padding: 0;
  }
  .header-btn__text {
    display: none;
  }
  .header-btn__arrow {
    display: none;
  }
  
  .sp__menu {
    width: 100%;
  }
  .sp-menu__inner {
    padding: 0 20px;
  }
  .sp-menu__items {
        width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 389px) {
  .header__fixed {
    column-gap: 8px;
  }
}