@charset "utf-8";
.header {
    position: fixed;
    z-index: 9999;
    width: 100%;
      height: 94px;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}
.header__inner {
  padding: 0 clamp(1.25rem, -4.179rem + 8.48vw, 6rem);
  height: inherit;
}
.header__container {
    height: inherit;
      display: flex;
    justify-content: space-between;
    column-gap: 20px;
    align-items: center;
}
.header__left {
      display: flex;
    column-gap: clamp(0.625rem, -1.518rem + 3.35vw, 2.5rem);
    align-items: center;
}
.header__logo {
  width: clamp(3.5rem, 2.5rem + 2.08vw, 5rem);
}
  .header-left__box {
        display: flex;
    align-items: center;
    column-gap: clamp(0.625rem, -1.518rem + 3.35vw, 2.5rem);
  }
.header__title {
    font-size: clamp(0.75rem, 0.667rem + 0.17vw, 0.875rem);
    line-height: 1.1;
    font-weight: 400;
}
.header-left__content {
      display: flex;
    flex-direction: column;
    align-items: end;
}
.header__phone {
      display: flex;
    align-items: center;
    column-gap: 5px;
}
.header-phone__icon {
      width: 12px;
    object-fit: contain;
}
.header-phone__text {
    font-size: clamp(1rem, 0.75rem + 0.52vw, 1.375rem);
    font-weight: 500;
    line-height: 1.5;
    color: #656565;
}
.header-phone__bottom {
      font-size: 10px;
    font-weight: 500;
    line-height: 1;
    color: #656565;
}
.header__items {
      display: flex;
    column-gap: clamp(1rem, -1.286rem + 3.57vw, 3rem);
    align-items: center;
}
.header__item {
      display: flex;
    column-gap: 8px;
}
.header-item__icon {
      width: clamp(1rem, 0.917rem + 0.17vw, 1.125rem);
    object-fit: contain;
}
.header-item__text {
    font-size: clamp(0.75rem, 0.321rem + 0.67vw, 1.125rem);
    font-weight: 400;
    color: #5F5F5F;
}

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


@media (max-width: 1023px) {
  .header-left__box {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 8px;
  }
}

@media (max-width: 767px) {
  .header {
    height: 49px;
  }
  .header__container {
        justify-content: flex-end;
    padding-right: 65px;
  }
  .header__left {
      justify-content: space-between;
    width: 100%;
  }
  .header__title {
    display: none;
  }
  .header-phone__text {
    font-size: 22px;
  }
  .header__items {
    display: none;
  }
  
  .hamBtn {
        position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    cursor: pointer;
    z-index: 9999;
    transition: all .7s;
    color: #FAFBFF;
    background-color: #F9B1C5;
    max-width: 49px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 49px;
  }
  .hamBar {
        position: relative;
    width: 26px;
    height: 18px;
    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: 7px;
    transform: rotate(-45deg);
  }
  .hamBar.active>div:nth-child(2) {
    opacity: 0;
  }
  .hamBar.active>div:nth-child(3) {
    top: 7px;
    transform: rotate(45deg);
  }
  
  .sp__menu {
    background-color: #F8F8F8;
    padding: 105px 0;
    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;
  }
  .sp-menu__inner {
    width: 100%;
    padding: 0 40px;
  }
  .sp-menu__container {
        max-width: 312px;
    margin: 0 auto;
  }
  .sp__menu.active {
    transform: translateY(0%);
    visibility: visible;
    pointer-events: auto;
  }
  .sp-menu__items {
        display: flex;
    flex-direction: column;
    row-gap: 24px;
  }
  .sp-menu__item {
      display: flex;
    column-gap: 8px;
        padding-bottom: 24px;
    border-bottom: 1px solid #C4C4C4;
}
    .sp-menu-item__icon {
      width: 18px;
      object-fit: contain;
  }
  .sp-menu-item__text {
    font-size: 18px;
    font-weight: 400;
    color: #5F5F5F;
  }
  
  .footer__bottom {
        margin-top: 40px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    align-items: center;
  }
  .footer__logo {
    width: 161px;
  }
  .footer__title {
        font-size: 16px;
    font-weight: 700;
  }
  .footer__line {
        margin-top: 11px;
    width: 29px;
    border-bottom: 6px solid #C3C3C3;
  }
  .footer__access {
        margin-top: 16px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.5s;
  }
  .footer__access a {
    color: #919191;
  }
  .footer__access a:hover {
    opacity: 0.7;
  }
  .footer__time {
        margin-top: 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
  }
  .footer__tel {
        margin-top: 6px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    transition: all 0.5s;
  }
  .footer__tel a:hover {
    color: #000;
    opacity: 0.5;
  }
}

@media (max-width: 389px) {
  .header-phone__text {
    font-size: 18px;
  }
}