@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;
  z-index: 9999;
    width: 100%;
  height: clamp(3rem, -0.429rem + 5.36vw, 6rem);
  background-color: rgba(0,0,0,0.54);
  border-bottom: 1px solid #Fff;
}
.header__inner {
  height: inherit;
}
.header__container {
      height: inherit;
    display: flex;
    align-items: center;
}
.header__left {
        height: inherit;
    padding-left: clamp(1.25rem, -1.036rem + 3.57vw, 3.25rem);
    padding-right: clamp(1.25rem, -0.321rem + 2.46vw, 2.625rem);
    display: flex;
    align-items: center;
    border-right: 1px solid #fff;
}
.header__logo {
        width: clamp(6.25rem, -4.25rem + 16.41vw, 15.438rem);
    min-width: clamp(6.25rem, -4.25rem + 16.41vw, 15.438rem);
    object-fit: contain;
}
.header__right {
      display: flex;
    align-items: center;
    height: inherit;
  width: 100%;
}
.header-item,
.header-contact {
    height: inherit;
    display: flex;
    align-items: center;
  justify-content: center;
  flex: 1;
}
.header-item {
  border-right: 1px solid #fff;
}
.hrader__item {
      font-size: clamp(0.75rem, 0.179rem + 0.89vw, 1.25rem);
    font-weight: 900;
    color: #fff;
  text-align: center;
      white-space: nowrap;
    padding: 0 8px;
}
.header__contact {
      font-size: clamp(0.75rem, 0.179rem + 0.89vw, 1.25rem);
    font-weight: 900;
    color: #fff;
  text-align: center;
      white-space: nowrap;
    padding: 0 8px;
}

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

@media (max-width: 1023px) {
  .header {
    height: auto;
  }
  .header__container {
        flex-direction: column;
    align-items: flex-start;
  }
  .header__left {
        height: 40px;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #fff;
  }
  .header__logo {
    width: 147px;
  }
  .header__right {
    height: 40px;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: row;
    justify-content: space-between;
  }
  .header__left {
        width: fit-content;
    border-bottom: 0;
    border-right: 1px solid #fff;
    height: 55px;
  }
  .header__logo {
    width: 123px;
  }
  .header__right {
    width: fit-content;
        margin-right: 60px;
    height: 55px;
    border-right: 1px solid #fff;
  }
  .header-item {
    display: none;
  }
  .header__contact {
        font-size: 14px;
    padding: 0 27px;
  }
  
  .hamBtn {
        position: fixed;
        right: 20px;
    top: 20px;
    height: 20px;
    width: 20px;
    cursor: pointer;
    z-index: 9999;
    transition: all .7s;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hamBar {
        position: relative;
    height: 20px;
    width: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hamBar > div {
        position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    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: 5px;
    transform: rotate(-45deg);
    border-radius: unset;
  }
  .hamBar.active>div:nth-child(2) {
    opacity: 0;
  }
  .hamBar.active>div:nth-child(3) {
    top: 5px;
    transform: rotate(45deg);
    border-radius: unset;
  }
  
  .sp__menu {
        position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 100%;
    height: 100svh;
    transition: .5s;
    z-index: 9995;
    display: flex;
    flex-direction: column;
    align-items: center;
    visibility: hidden;
    overflow: scroll;
        background-image: url(https://kisatosandworld.com/system_panel/uploads/images/sp-menu-bg.png);
    background-size: cover;
    background-color: #fff;
    background-position: center;
  }
  .sp-menu__inner {
    width: 100%;
    padding: 112px 60px 8px;
        height: inherit;
    display: flex;
    flex-direction: column;
  }
  .sp-menu__container {
        display: flex;
    flex-direction: column;
    row-gap: 30px;
  }
  .sp__menu.active {
    transform: translateY(0%);
    visibility: visible;
    pointer-events: auto;
  }
  .sp-menu__text {
        font-size: 20px;
    font-weight: 900;
        max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .sp-menu__copyright {
        text-align: center;
    margin-top: 84px;
    font-size: 14px;
    font-weight: 900;
  }
}

@media (max-width: 389px) {
  .header__contact {
    padding: 0 clamp(0.625rem, -4.303rem + 24.64vw, 1.688rem);
  }
}