.l-header {
  width: 90vw;
  max-width: 93.75rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  overflow: hidden;
}
.l-header a {
  color: inherit;
}
.l-header__logo {
  width: 160px;
  height: auto;
  aspect-ratio: 250/44.28;
  text-indent: 101%;
  overflow: hidden;
}
@media screen and (min-width: 62em) {
  .l-header__logo {
    width: 160px;
  }
}
@media screen and (min-width: 64em) {
  .l-header__logo {
    width: 180px;
  }
}
@media screen and (min-width: 75em) {
  .l-header__logo {
    width: 250px;
  }
}
.l-header__logo img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.l-header__nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  height: calc(100dvh - 61px);
  width: 100vw;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}
.l-header__nav::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.25s;
  pointer-events: none;
}
@media screen and (min-width: 62em) {
  .l-header__nav::before {
    display: none;
  }
}
.l-header__nav.active {
  pointer-events: auto;
}
.l-header__nav.active .l-header__nav-menu {
  transform: translateX(0%);
}
.l-header__nav.active::before {
  opacity: 0.8;
}
@media screen and (min-width: 62em) {
  .l-header__nav {
    opacity: 1;
    transform: unset;
    position: static;
    width: auto;
    height: auto;
    pointer-events: auto;
  }
}
.l-header__nav-menu {
  padding: 0;
  margin: 0;
  padding-top: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style-type: none;
  font-size: 0.875rem;
  line-height: 1.4285;
  text-align: center;
  height: 100%;
  max-width: 100vw;
  width: 18.75rem;
  background-color: white;
  color: rgb(102, 102, 102);
  z-index: 1;
  transform: translateX(100%);
  transition: all 0.25s;
}
@media screen and (min-width: 62em) {
  .l-header__nav-menu {
    transform: unset;
    flex-direction: row;
    width: auto;
  }
}
@media screen and (min-width: 62em) {
  .l-header__nav-menu > *:hover .l-header__submenu {
    display: flex;
  }
}
.l-header__nav-menu > *:hover .l-header__nav-link > :first-child {
  opacity: 0;
  transform: translateY(calc(-1 * 1.1875rem));
}
.l-header__nav-menu > *:hover .l-header__nav-link > :last-child {
  opacity: 1;
  color: black;
  transform: translateY(calc(-1 * 1.1875rem));
}
.l-header__nav-link {
  display: flex;
  flex-direction: column;
  letter-spacing: 2px;
  color: inherit;
  padding: 0.9375rem 0.3125rem;
}
@media screen and (min-width: 62em) {
  .l-header__nav-link {
    padding: 0 0.3125rem 0.625rem 0.3125rem;
  }
}
@media screen and (min-width: 75em) {
  .l-header__nav-link {
    padding: 0 0.9375rem 0.625rem 0.9375rem;
  }
}
.l-header__nav-link > * {
  transition: all 0.5s ease;
}
.l-header__nav-link > :first-child {
  opacity: 1;
}
.l-header__nav-link > :last-child {
  opacity: 0;
}
.l-header__submenu {
  display: none;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
  position: absolute;
  top: calc(100% + 1px);
  background-color: white;
  width: 50vw;
  border-bottom: 1px solid #ddd;
}
.l-header__submenu::before {
  position: absolute;
  box-sizing: content-box;
  content: "";
  top: 0;
  height: calc(100% + 1px);
  right: 100%;
  width: 100vw;
  background: white;
  border-bottom: 1px solid #ddd;
}
.l-header__submenu-link {
  position: relative;
  display: block;
  padding: 22px 15px;
}
.l-header__submenu-link:hover {
  color: #888;
}
.l-header__submenu > :not(:last-child) .l-header__submenu-link::after {
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  content: "";
  width: 1px;
  height: 30%;
  transform: translateY(-50%);
  background-color: #ddd;
}
.l-header__hamburger {
  display: block;
  position: relative;
  padding: 0;
  background-color: unset;
  box-shadow: unset;
  height: 24px;
}
.l-header__hamburger:hover, .l-header__hamburger:focus {
  background-color: unset;
}
@media screen and (min-width: 62em) {
  .l-header__hamburger {
    display: none;
  }
}
.l-header__hamburger.active > :first-child {
  background-color: transparent;
}
.l-header__hamburger.active > :first-child::before {
  top: 0;
  transform: rotate(-45deg) translateY(0);
}
.l-header__hamburger.active > :first-child::after {
  top: 0;
  transform: rotate(45deg) translateY(0);
}
.l-header__hamburger > :first-child {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 2px;
  background-color: #000;
  transform: translateY(-2px) translateZ(0);
}
.l-header__hamburger > :first-child::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  transform-origin: center center;
  transition: all 0.25s ease;
}
.l-header__hamburger > :first-child::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  transform-origin: center center;
  transition: all 0.25s ease;
  bottom: -7px;
}

.l-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 64em) {
  .l-aside {
    align-items: flex-start;
    overflow: unset;
  }
}
.l-aside__nav {
  display: grid;
  grid-template-rows: repeat(1, minmax(0, 0fr));
  overflow: hidden;
  transition: all 0.5s ease;
}
@media screen and (min-width: 64em) {
  .l-aside__nav {
    overflow: unset;
    grid-template-rows: repeat(1, minmax(0, 1fr));
  }
}
.l-aside__nav.active {
  grid-template-rows: repeat(1, minmax(0, 1fr));
}
.l-aside__nav-menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 64em) {
  .l-aside__nav-menu {
    margin-bottom: 0;
  }
}
.l-aside__nav-link {
  position: relative;
  color: #777;
  transition: all 0.25s ease;
  letter-spacing: 3px;
}
.l-aside__nav-link::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 1px;
  background-color: #8c8c8c;
  bottom: 45%;
  right: -10px;
  transition: all 0.25s ease;
}
.l-aside__nav-link:hover, .l-aside__nav-link:focus, .l-aside__nav-link.active {
  color: #000;
}
.l-aside__nav-link:hover::after, .l-aside__nav-link:focus::after, .l-aside__nav-link.active::after {
  width: 50px;
  right: -60px;
}
.l-aside__trigger {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.5s ease;
}
@media screen and (min-width: 64em) {
  .l-aside__trigger {
    display: none;
  }
}
.l-aside__trigger.active {
  transform: rotate(225deg);
}
.l-aside__trigger span {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 2px;
  background-color: #000;
  right: 0;
  margin: 0 auto;
}
.l-aside__trigger span::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 30px;
  background-color: #000;
  left: 14px;
  top: -14px;
}/*# sourceMappingURL=style.css.map */