@charset "utf-8";
.header.UpMove{
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
.header.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header {
      position: fixed;
  top: 0;
    z-index: 9999;
    width: 100%;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.16);
  background-color: #fff;
}
.header__top {
      background-color: #F7F7F7;
    padding: 10px clamp(0.625rem, -2.958rem + 7.47vw, 6rem);
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
}
.header-top__left {
      font-size: clamp(0.875rem, 0.732rem + 0.22vw, 1rem);
    font-weight: 400;
    line-height: 1.5;
}
.header-top__rihgt {
      display: flex;
    column-gap: clamp(1.25rem, -0.179rem + 2.23vw, 2.5rem);
}
.header-bottom__right a {
      display: flex;
    align-items: center;
}
.header-top__link {
      white-space: nowrap;
    font-size: clamp(0.875rem, 0.732rem + 0.22vw, 1rem);
}
.header__bottom {
      padding: 12px clamp(1.25rem, -4.179rem + 8.48vw, 6rem);
    display: flex;
    justify-content: space-between;
  align-items: center;
  column-gap: 20px;
  
      padding-top: 0;
    padding-bottom: 0;
    height: clamp(4.5rem, 1.5rem + 3.75vw, 6rem);
}
.header__logo {
       width: clamp(11.875rem, 7.375rem + 7.03vw, 15.813rem);
    min-width: 190px;
}
.header-bottom__right {
      display: flex;
    column-gap: clamp(1.25rem, -0.607rem + 2.9vw, 2.875rem);
    row-gap: 10px;
  
  height: 100%;
}
.header-bottom-right__wrap {
      display: flex;
    column-gap: clamp(1.25rem, -0.607rem + 2.9vw, 2.875rem);
}
.header-bottom__link {
      font-size: clamp(0.875rem, 0.589rem + 0.45vw, 1.125rem);
  font-weight: 700;
    white-space: nowrap;
  position: relative;
  z-index: 100;
}
.header__toggle {
      position: relative;
    display: flex;
  transition: .5s;
  cursor: pointer;
}
.header-toggle__box {
    visibility: hidden;
  opacity: 0;
    position: absolute;
   top: clamp(4.5rem, 1.5rem + 3.75vw, 6rem);
    left: -35px;
      display: flex;
    flex-direction: column;
  transition: .5s;
}
.header__toggle:hover .header-toggle__box {
    visibility: visible;
  opacity: 1;
    transition: .5s;
}
.header__toggle:hover .header-bottom__link--toggle {
  opacity: 0.5;
}
.header__item--sub {
      background-color: #fff;
    padding: 6px 33px;
  margin-top: 10px;
    white-space: nowrap;
    transition: .5s;
    font-size: clamp(0.875rem, 0.589rem + 0.45vw, 1.125rem);
  pointer-events: auto;
}
.header-bottom__orange {
      font-size: clamp(0.875rem, 0.589rem + 0.45vw, 1.125rem);
    font-weight: 700;
    color: #fff;
    background-color: #FFA143;
    border: clamp(0.125rem, 0.054rem + 0.11vw, 0.188rem) solid #fff;
    border-radius: 51px;
    padding: clamp(0.25rem, -0.179rem + 0.67vw, 0.625rem) clamp(0.625rem, -0.518rem + 1.79vw, 1.625rem);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px;
    transition: .5s;
}
.header-bottom__orange:hover {
  box-shadow: unset;
  transform: translateY(3px);
}

.header-top__rihgt--sp {
    display: none;
}

.sp__menu {
  display: none;
}

@media (max-width: 1279px) {
  .header-bottom__right {
    flex-direction: column;
    justify-content: center;
    row-gap: 0;
  }
  .header__bottom {
    height: 96px;
  }
  .header-bottom-right__wrap {
        height: 100%;
    align-items: center;
  }
  .header__toggle {
    height: 100%;
  }
  .header-toggle__box {
    top: 48px;
  }
}

@media (max-width: 1023px) {
  .header__top {
        flex-direction: column;
    row-gap: 10px;
  }
  .header-top__rihgt {
    margin-left: auto;
  }
}

@media (max-width: 767px) {
  .header__container {
        display: flex;
    flex-direction: column-reverse;
  }
  .header-top__left {
    font-size: 10px;
  }
  .header-top__rihgt {
    display: none;
  }
  .header__bottom {
        padding: 0 20px;
    height: 50px;
  }
  .header__logo {
    width: 100px;
    min-width: unset;
  }
  .header-bottom__right {
    display: none;
  }
  .header-top__rihgt--sp {
    display: flex;
  }
  .header-bottom__orange--sp {
        position: absolute;
    right: 50px;
    top: 0;
    display: flex;
    align-items: center;
    column-gap: 5px;
    background-color: #FFA143;
    padding: 0 10px;
    height: 50px;
    border: 1px solid #fff;
  }
  .text-vertical {
    writing-mode: vertical-lr;
  }
  .header-bottom__orange--sp-sub {
        font-size: 13px;
    font-weight: 700;
    color: #FFA143;
    background-color: #fff;
    border-radius: 11px;
    padding: 4px;
    line-height: 1;
  }
  .header-bottom__orange--sp-main {
        font-size: 13px;
    color: #fff;
    text-align: center;
    font-weight: 700;
  }
  .hamBtn {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    cursor: pointer;
    z-index: 9999;
    transition: all .7s;
    color: #FAFBFF;
    background-color: #fff;
    max-width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
  }
  .hamBar {
        position: relative;
    width: 30px;
    height: 23px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hamBar > div {
        position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #FFA143;
    transition: .7s;
  }
  .hamBar>div:nth-child(1) {
    top: 0; 
  }
  .hamBar>div:nth-child(2) {
    top: 45%;
  }
  .hamBar>div:nth-child(3) {
    top: 100%;
  }
  .hamBar.active>div:nth-child(1) {
    top: 10px;
    transform: rotate(-45deg);
    border-radius: unset;
  }
  .hamBar.active>div:nth-child(2) {
    opacity: 0;
  }
  .hamBar.active>div:nth-child(3) {
    top: 10px;
    transform: rotate(45deg);
    border-radius: unset;
  }
  
  .sp__menu {
        background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 100%;
    height: 100vh;
    transition: .5s;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    align-items: center;
    visibility: hidden;
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: scroll;
  }
  .sp-menu__inner {
        width: 100%;
    padding: 0 20px;
        display: flex;
    justify-content: center;
  }
  .sp__menu.active {
    transform: translateY(0%);
    visibility: visible;
    pointer-events: auto;
  }
  .sp-menu__items {
        display: flex;
    flex-direction: column;
    row-gap: 40px;
  }
  .sp-menu__item {
     display: flex;
    column-gap: 15px;
    align-items: flex-start;
  }
  .sp-menu-item__icon {
      width: 26px;
    object-fit: contain;
  }
  .sp-menu-item__text {
      font-size: 18px;
    font-weight: 700;
  }
  .sp-menu-item-sub__wrap {
        padding-top: 16px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
  }
  .sp-menu-item__text--sub {
    font-size: 14px;
  }
}

@media (max-width: 539px) {
  .header__top {
        padding-top: 5px;
    padding-bottom: 5px;
  }
}