.header{
  background-color: #ffffffc4;
  filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 1px 5px);
}
.header__inner{
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.5vw;
  padding: 30px 0;
}
.header__nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .2vw;
  font-size: 23px;
  font-weight: 500;
}
.header__logo{
  cursor: pointer;
  width: 21%;
  max-width: 294px;
}
.header__nav li{
  cursor: pointer;
}
.header__call{
  display: flex;
  align-items: center;
  gap: .3vw;
}
.header__call__icon--mobile{
    display: none;
}
.header__call__icon{
  width: 45px;
  aspect-ratio: 1 / 1;
}
.header__call__num{
  font-size: 23px;
  display: flex;
  align-items: center;
}
.header__call__num span{
  position: relative;
  color: var(--color-main);
  font-weight: 700;
  font-size: 30px;
  margin-left: 4px;
}
.header .ham__btn{
  display: none;
}

.header.fixed{
  position: fixed;
  top: 0;
  left: 0;right: 0;
  z-index: 99;
  overflow: hidden;
}

@media screen and (max-width: 1450px) {
  .header__inner{
    padding: 25px 0;
    gap: 1vw;
  }
  .header__nav{
  font-size: 1.6vw;
  }
  .header__call__icon{
    width: 3.4vw;
  }
  .header__call__num{
  font-size: 1.6vw;
  }
  .header__call__num span{
    font-size: 1.9vw;
  }
}

@media screen and (max-width: 768px) {
  body{
    padding-top: 15%;
    padding-bottom: calc(69px + 2vh);
  }
  .header{
    position: fixed;
    left: 0;right: 0;
    top: 0;
    display: flex;
  }
  .header__inner{
    width: 100%;
    padding: 0;
  }
  .header nav{
    display: none;
  }
  .header__call__icon{
    display: none;
  }
  .header__call__icon--mobile{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .header__call__num{
    display: none;
  }
  .header .ham__btn{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: 15%;
    order: 2;
  }
  .header .ham__btn span{
    width: 100%;
    max-width: 40px;
    height: 4px;
    display: block;
    background-color: #605e5f;
    border-radius: 50px;
    transition: .2s;
  }
  .header__call{
    width: 15%;
    order: 0;
    aspect-ratio: 1 / 1;
    background: var(--color-main);
  }
  .header__logo{
    width: 55%;
    order: 1;
  }

  .showMenu .header .ham__btn span:nth-child(1){
    transform-origin: left;
    transform: rotate(45deg) translateY(-2px);
  }
  .showMenu .header .ham__btn span:nth-child(3){
    transform-origin: left;
    transform: rotate(-45deg) translateY(2px);
  }
  .showMenu .header .ham__btn span:nth-child(2){
    opacity: 0;
    transform: translateX(100%);
  }
}

/* hamMenu */
.hamMenu{
  display: none;
  position: fixed;
  left: 0;right: 0;
  top: 15vw;
  align-items: center;
  justify-content: center;
  z-index: 99;
  background-color: var(--color-main);
  overflow: hidden;
  max-height: 0;
  transition: .4s max-height;
}
.showMenu .hamMenu{
  max-height: calc(4.5vh * 5 + 3vh);
}

.hamMenu ul{
  padding: 1.5vh 0;
  width: 100%;
}
.hamMenu li{
  width: 100%;
  /* border-bottom: 1px solid #fff; */
  text-align: center;
  font-size: 2.5vh;
  padding: 1vh 0;
  color: #fff;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .hamMenu{
    display: flex;
  }
}
@media screen and (max-width: 450px) {
  .header .ham__btn{
    gap: 6px;
  }
  .header .ham__btn span{
    max-width: 30px;
    height: 3px;
  }
}

/* aside */
.aside{
  position: fixed;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  transition: .4s;
}
.aside ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.aside li{
  filter: drop-shadow(rgba(0, 0, 0, 0.1) 4px 2px 5px);
}

@media screen and (max-width: 768px) {
  .aside{
    left: 0;right: 0;
    bottom: 0;top: unset;
    transform: translateY(0);
  }
  .aside ul{
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    background-color: #fff;
    filter: drop-shadow(rgba(0, 0, 0, 0.1) 4px 2px 5px);
    padding: 1vh 0;
  }
  .aside li{
    position: relative;
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    filter: unset
  }
  .aside li::after{
    content: "";
    background-color: #605e5f;
    width: 1px;
    position: absolute;
    right: 0;top: 50%;
    transform: translateY(-50%);
    height: 80%;
    opacity: .2;
  }
  .aside li.insta::after{
    display: none;
  }
  .aside li.scrollToTop{
    display: none;
  }
}

@media screen and (max-width: 380px) {
    .aside li p{
        font-size: .8em;
    }
}