#header{
  width: 100%;
  background: #fff;
  position: fixed;
  z-index: 99999999;
  top: 0;
  background: #FFF;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.10);
}
.header-inner{
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1440px;
  width: 95%;
  align-items: center;
  padding: 1.6rem 0;
  position: relative;
  z-index: 999999999;
}
@media (max-width: 480px){
  .header-inner{
    width: calc( 100% - 3.2rem ) ;
    margin: 0 1.6rem;
  }
}

{# logo #}
.header--logo{
  display: flex;
  height: 100%; 
  align-items: center;
  gap: 1.6rem;
}
.header--logo .header--logoImage{
  max-width: 12rem;
  width: 12rem; 
  display: flex;
  align-items: center;
}
.header--logo .header--logoImage > a{
  display: flex;
  align-items: center;
}
.header--logo .header--logoImage img{
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}
.header--logoSuffix{
  display: inline-block;
  font-size: 1.2rem;
  position: relative;
  font-weight: bold;
  white-space: nowrap;
  color: #202020;
}
.header--logoBar{
  height: 20px;
  width: 1px;
  display: block;
  background: #6C6C6C;
}


{# menu items #}
.header--menu{
  display: flex;
  align-items: center;
  gap: 4rem;
}

.header--menuItems{
  list-style: none;
  padding: 0;
  display: flex;
  gap: 4rem;
  margin: 0;
}
.header--menuItems > li{
  display: flex;
  align-items: center;
}
.header--menuItems > li > a,
.header--menuItems > li:hover > a{
  color: var(--black, #202020);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: bold;
}
.header--menuItems > li:hover > a{
  opacity: 0.8;
}
.header--menuButton,
.header--menuButton:hover{
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  border-radius: 100px;
  border-radius: 400px;
  border: 1px solid var(--main, #00B395);
  background: var(--main, #00B395);
  padding: 0.8rem 2.4rem;
}
.header--menuButton:hover{
  opacity: 0.8;
}

@media(max-width: 1330px){
  .header--menuItems{
    gap: 2rem;
  }
}

.header--menu.mobile{
  position: fixed;
  flex-direction: column;
  justify-content: center;
  width: 100vw;
  height: calc( 100vh - 6rem );
  height: calc( 100dvh - 6rem );
  background: #fff;
  bottom: 0;
  padding-top: 12rem;
  padding-bottom: 3rem;
  overflow-y: scroll;
  z-index: 9999;
  left: 120%;
  transition: all 0.2s;
}
@media(max-width: 1124px){
  .header--menu.pc{
    display: none;
  }
  .humburger-menu {
    align-items: center;
    display: flex;
  }

  .header--menu.active{
    left: 0;
  }
  .header--menuItems{
    flex-direction: column;
    gap: 0;
    max-width: 1024px;
    width: 90%;
  }
  .header--menuItems > li{
    border-top: solid #E2E2E2 1px;
    padding: 1.6rem 0;
    text-align: center;
    flex-grow: 1;
  }
  .header--menuItems > li > a{
    width: 100%;
  }
  .header--menuItems > li:last-child {
    border-bottom: solid #E2E2E2 1px;
  }
  .header--menuButton, .header--menuButton:hover{
    width: 90%;
    max-width: 45rem;
    text-align: center;
  }
}

@media(max-width: 480px){
  .header--logo{
    gap: 1rem;
  }
  .header--logo .header--logoImage{
    width: 10rem;
  }
}