@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
.Header__nav {
  align-items: center;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  padding: 32px 40px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 30;
}
@media screen and (max-width: 640px) {
  .Header__nav {
    padding: 18.5px 20px 17.5px 22px;
  }
}
.Header__nav-menu {
  align-items: center;
  -moz-column-gap: 32px;
       column-gap: 32px;
  display: flex;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: space-between;
  line-height: 22px;
  list-style: none;
}
@media screen and (max-width: 640px) {
  .Header__nav-menu {
    display: none;
  }
}
.Header__nav-menu-item a {
  color: #1a1a1c;
  text-decoration: none;
}
.Header__nav-menu-item::after {
  background-color: #1a1a1c;
  content: "";
  display: block;
  height: 2px;
  transition: width 0.3s;
  width: 0;
}
.Header__nav-menu-item:hover::after {
  width: 100%;
}
.Header__nav-menu--contact {
  align-items: center;
  box-shadow: inset 0 0 0 1px #D8D8DB;
  color: #1a1a1c;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 22px;
  overflow: hidden;
  padding: 8px 25.5px;
  position: relative;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.Header__nav-menu--contact:hover {
  color: #ffffff;
}
.Header__nav-menu--contact::after {
  background-color: #1a1a1c;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease-out;
  width: 100%;
  z-index: -1;
}
.Header__nav-menu--contact:hover::after {
  transition: 0.3s ease-out;
  transform: translateX(0);
}

.Hamburger {
  background-color: #ffffff;
  display: block;
  height: 100vh;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: opacity 0.3s ease-in-out;
  width: 100%;
  z-index: 40;
}
.Hamburger ul {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 100%;
  justify-content: flex-start;
  padding: 24px 16px;
}
.Hamburger li {
  color: #1a1a1c;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  list-style: none;
}
.Hamburger li a {
  color: #1a1a1c;
  text-decoration: none;
}
.Hamburger__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 18.5px 20px 17.5px 22px;
  width: 100%;
}
.Hamburger__menu--opened {
  opacity: 1;
  pointer-events: auto;
}
.Hamburger__open-button, .Hamburger__close-button {
  display: none;
}
@media (max-width: 640px) {
  .Hamburger__open-button, .Hamburger__close-button {
    display: block;
    height: 16px;
    width: 16px;
  }
}
.Hamburger__menu--contact {
  align-items: center;
  box-shadow: inset 0 0 0 1px #D8D8DB;
  color: #1a1a1c;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 22px;
  overflow: hidden;
  padding: 8px 25.5px;
  position: relative;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.Hamburger__menu--contact:hover li {
  color: #ffffff;
}
.Hamburger__menu--contact::after {
  background-color: #1a1a1c;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease-out;
  width: 100%;
  z-index: -1;
}
.Hamburger__menu--contact:hover::after {
  transition: 0.3s ease-out;
  transform: translateX(0);
}
@media screen and (max-width: 640px) {
  .Hamburger__menu--contact {
    padding: 16px 0;
    width: 100%;
  }
}

.SiteLogo {
  color: #1a1a1c;
  text-decoration: none;
}
.SiteLogo h1 {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  .SiteLogo h1 {
    font-size: 18px;
  }
}/*# sourceMappingURL=header.css.map */