@charset "utf-8";
.header {
  padding-top: clamp(1.25rem, 0.417rem + 1.74vw, 2.5rem);
    background-color: transparent;
  position: fixed;
  z-index: 9999;
  width: 100%;
}
.header__inner {
      height: inherit;
    padding-left: clamp(1.25rem, -1.917rem + 6.6vw, 6rem);
    padding-right: clamp(1.25rem, -1.917rem + 6.6vw, 6rem);
}
.header__container {
      height: inherit;
    display: flex;
    justify-content: flex-end;
    column-gap: 16px;
}

.header__logo {
  width: clamp(6.25rem, 2.417rem + 7.99vw, 12rem);
      position: fixed;
    left: clamp(1.25rem, -1.917rem + 6.6vw, 6rem);
}
.header__right {
      display: flex;
    column-gap: 40px;
}
.header__right a {
  height: fit-content;
}
.header__link {
      display: flex;
    column-gap: 11px;
    align-items: center;
}
.header-link__text {
      font-size: clamp(1rem, 0.917rem + 0.17vw, 1.125rem);
    color: #909090;
  transition: all .5s;
}
.header__link:hover .header-link__text {
  color: #000;
}
.header-link__icon {
      width: 16px;
    object-fit: contain;
}
.header__right--sp {
  display: none;
}

.sp__menu {
  display: none;
}

@media (max-width: 767px) {
  .header {
        height: 60px;
    padding-top: 12px;
  }
  .header__logo {
    width: 67px;
  }
  .header__right {
    display: none;
  }
  .header__right--sp {
        display: flex;
    column-gap: 16px;
  }
  .header-link-sp__icon {
        height: 26px;
    object-fit: contain;
  }
  .header-link-sp__text {
        font-size: 12px;
    margin-top: 3px;
    line-height: 1;
    color: #909090;
    white-space: nowrap;
  }
  .header-right-sp-line {
        border-right: 1px solid #909090;
    height: 39px;
  }
  
  .hamBtn {
        width: 100%;
    cursor: pointer;
    transition: all .7s;
    display: flex;
    justify-content: center;
    height: 40px;
  }
  .hamBar {
        position: relative;
    width: 36px;
    height: 21px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hamBar p {
        position: absolute;
    top: 27px;
    font-size: 12px;
    line-height: 1.5;
  }
  .hamBar > div {
        position: absolute;
    right: 0;
    width: 100%;
    height: 3px;
    background: #000;
    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: 9px;
    transform: rotate(-25deg);
  }
  .hamBar.active>div:nth-child(2) {
    opacity: 0;
  }
  .hamBar.active>div:nth-child(3) {
    top: 9px;
    transform: rotate(25deg);
  }
  
  .sp__menu {
        background-color: #fff;
    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;
    padding-top: 132px;
    padding-bottom: 82px;
    overflow: scroll;
  }
  .sp-menu__inner {
    padding: 0 20px;
  }
  .sp-menu__container {
        display: flex;
    flex-direction: column;
    row-gap: 80px;
    align-items: center;
  }
  .sp__menu.active {
    transform: translateY(0%);
    visibility: visible;
    pointer-events: auto;
  }
  .sp-menu__items {
        display: flex;
    flex-direction: column;
    row-gap: 72px;
    align-items: center;
  }
  .sp-menu-items__top {
        display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 42px;
  }
  .sp-menu__item {
        font-size: 20px;
  }
  .sp-menu-items__bottom {
        display: flex;
    flex-direction: column;
    row-gap: 40px;
    align-items: center;
  }
  .sp-menu__link {
        display: flex;
    column-gap: 8px;
    align-items: center;
  }
  .sp-menu-link__text {
        white-space: nowrap;
    font-size: 15px;
    color: #909090;
    transition: all 0.5s;
  }
  .sp-menu-link__icon {
        width: 14px;
    object-fit: contain;
  }
  .sp-menu__link:hover .sp-menu-link__text {
    color: #000;
  }
  .sp-menu__copyright {
    font-size: 16px;
  }
  .sp-menu__line {
        margin-top: 20px;
    border-bottom: 1px solid #000;
    width: 26px;
    margin-left: auto;
    margin-right: auto;
  }
}