.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 28px 0;
  z-index: 111111111;
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  min-width: 270px;
}

.btn-menu {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.btn-contact {
  padding: 6px 30px;
  color: white;
  text-align: center;
  background-color: #18db7d;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.btn-contact > p:last-child {
  font-size: 10px;
}

.menu-overlay {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 99999999999;
  display: none;
  min-width: 650px;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.menu-overlay.active {
  display: block;
}

.menu-content {
  position: relative;
  max-width: 800px;
  overflow: hidden;
  border-radius: 5px;
}

.menu-nav {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  background: white;
}

.menu-nav a {
  text-decoration: none;
  color: #333;
  font-size: px;
  position: relative;
  padding: 10px 20px;
}

.menu-nav a:hover {
  background: #f5f5f5;
  border-radius: 4px;
}

.menu-nav a:hover {
  color: #00a651;
}

@media (max-width: 768px) {
  .logo {
    display: none;
  }
  .logo-sp {
    width: 120px;
    height: 60px;
  }

  .main-menu {
    flex-grow: 1;
    justify-content: space-between;
    align-items: center;
    height: 53px;
    right: 6px;
    left: 6px;
    top: 16px;
  }

  .btn-menu {
    padding: 4px 8px;
    box-shadow: 0px 4px 12px 0px #00000029;
    border-radius: 4px;
  }

  .menu-overlay {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    min-width: 0px;
    background-color: white;
  }

  .menu-content {
    position: relative;
    width: 100%;
    overflow: hidden;
    text-align: center;
  }

  .menu-nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: white;
    min-width: 0px;
  }

  .btn-contact-sp {
    background-color: #218f5a;
    padding: 12px 24px;
    border-radius: 4px;
    color: white;
    font-size: 10px;
    cursor: pointer;
    margin: 0 32px 16px;
  }
}
