@charset "utf-8";
.header {
      width: 100%;
    position: fixed;
    z-index: 9990;
  background-color: #fff;
}
.header__inner {
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  max-width: unset;
}
.header__top {
      display: flex;
    align-items: center;
    padding-left: clamp(1.25rem, 0.083rem + 2.43vw, 3rem);
}
.header__logo {
      width: clamp(6.25rem, -0.333rem + 13.72vw, 16.125rem);
    object-fit: contain;
}
.header__main {
    margin-left: clamp(1rem, 2.08vw, 2.5rem);
    font-size: clamp(0.625rem, 0.542rem + 0.17vw, 0.75rem);
}
.header__right {
      margin-left: auto;
    display: flex;
    align-items: center;
    column-gap: clamp(1rem, 0.5rem + 1.04vw, 1.75rem);
}
.header__insta {
      width: clamp(1.25rem, 0.75rem + 0.78vw, 1.688rem);
    object-fit: contain;
}
.header__map {
      width: clamp(1rem, 0.714rem + 0.45vw, 1.25rem);
    object-fit: contain;
}
.header__phone {
      display: flex;
    align-items: center;
    column-gap: clamp(0.5rem, -0.071rem + 0.89vw, 1rem);
}
.header-phone__icon {
      width: clamp(1rem, 0.714rem + 0.45vw, 1.25rem);
    object-fit: contain;
}
.header-phone__right {
      display: flex;
    flex-direction: column;
    row-gap: 4px;
    align-items: flex-end;
}
.header-phone__number {
      font-size: clamp(1rem, 0.714rem + 0.45vw, 1.25rem);
    font-weight: 700;
    line-height: 1;
}
.header-phone__text {
      font-size: clamp(0.625rem, 0.482rem + 0.22vw, 0.75rem);
    font-weight: 700;
    line-height: 1;
}
.header__contact {
      padding: clamp(1rem, 0.143rem + 1.34vw, 1.75rem) clamp(1rem, -0.333rem + 2.78vw, 3rem);
    background-color: #0070C3;
    color: #fff;
}
.header__items {
      border-top: 1px solid #000;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}
.header__item {
      padding: clamp(0.625rem, 0.196rem + 0.67vw, 1rem) 0;
    text-align: center;
    font-weight: 700;
    border-right: 1px solid #000;
}
.header__item--last {
  border-right: none;
}

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

@media (max-width: 767px) {
  .header__inner {
    padding-left: 20px;
  }
  .header__top {
        padding: 14px 0 20px;
    flex-direction: column-reverse;
    align-items: flex-start;
    row-gap: 8px;
  }
  .header__logo {
    width: 118px;
  }
  .header__main {
    margin-left: 0;
  }
  .header__right {
    display: none;
  }
  .header__items {
    display: none;
  }
  
  .hamBtn {
    position: fixed;
    right: 0;
    top: 0;
    width: 47px;
    height: 47px;
    cursor: pointer;
    z-index: 9999;
    transition: all .7s;
    color: #fff;
    background-color: #0070C3;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hamBar {
        position: relative;
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hamBar > div {
        position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    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: 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 {
    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;
    overflow: scroll;
    background-color: rgba(0,0,0,0.7);
  }
  .sp-menu__inner {
    width: 100%;
  }
  .sp-menu__container {
        display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
        row-gap: 32px;
    padding: 80px 0;
  }
  .sp__menu.active {
    transform: translateY(0%);
    visibility: visible;
    pointer-events: auto;
  }
  .sp-menu__item {
        font-size: 18px;
    font-weight: 700;
    color: #fff;
  }
}

@media (max-width: 389px) {
  .header__top {
    flex-direction: column;
  }
}