.header {
  max-width: 120rem;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 99;
}
.header.is-scroll-hidden {
  pointer-events: none;
}
.header::before {
  content: "";
  width: 0;
  height: 0.0625rem;
  background-color: #303030;
  position: absolute;
  left: 0;
  top: var(--header-height);
  z-index: 2;
}
.header-container {
  padding: 0 6.88rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: var(--header-height);
  transition: background-color 0.2s ease;
}
.header.is-pinned .header-container {
  background-color: #fff;
}
.header-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.87rem;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}
.header-menu li a {
  color: #636363;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  position: relative;
}
.header-menu li a::after {
  content: "";
  width: 0;
  height: 0.125rem;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: calc(-1 * (var(--header-height) / 2 - 0.625rem));
}
.header-menu li a.active {
  color: #fff;
}
.header-menu li a.active::after {
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.header-menu-tab {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #121212;
  padding: 0 6.88rem;
  margin: 0 auto;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  transition: grid-template-rows 0.5s ease, padding 0.5s ease, visibility 0s 0.5s;
}
.header-menu-tab-head {
  display: flex;
  gap: 5.37rem;
  align-items: center;
  position: absolute;
  right: 6.87rem;
  top: calc(var(--header-height) / 2 - 1.81rem);
}
.header-menu-tab-head .header-craw {
  margin-right: unset !important;
}
.header-menu-tab-head .tab-logo {
  width: 7.0625rem;
  height: 2.4375rem;
}
.header-menu-tab-main {
  min-height: 0;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.header-menu-tab-main-menu {
  display: flex;
  gap: 4.09rem;
}
.header-menu-tab-main-menu .menu {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 2.44rem;
}
.header-menu-tab-main-menu .menu li {
  overflow: hidden;
  padding: 0.2rem 0;
  margin: -0.2rem 0;
}
.header-menu-tab-main-menu .menu li a {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 0.25s ease, transform 0.25s ease;
  text-decoration: unset;
  color: #fff;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 2.6rem;
  position: relative;
}
.header-menu-tab-main-menu .menu li a::before {
  content: "";
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwLjU1MSA3Ljk4MTg5QzEwLjU1MTEgOS41MDA2NiA5LjMyMDA2IDEwLjczMTggNy44MDEyOCAxMC43MzE2TC0wLjAwMDM2ODgzNSAxMC43MzAyTC0wLjAwMDM2ODcwOSA5LjIzMDM3TDcuODAxMjggOS4yMzE3NUM4LjQ5MTU2IDkuMjMxODEgOS4wNTExMiA4LjY3MjE0IDkuMDUxMTUgNy45ODE4OUw5LjA1MDQ2IDUuNjAyMzdlLTA2TDEwLjU1MDMgNS43Mjg4ZS0wNkwxMC41NTEgNy45ODE4OVpNMTIuMzAzNiAxMC43NTUxQzExLjg4OTQgMTAuNzU1IDExLjU1MzcgMTAuNDE5MyAxMS41NTM2IDEwLjAwNTJDMTEuNTUzOCA5LjU5MTA3IDExLjg4OTQgOS4yNTUxOSAxMi4zMDM2IDkuMjU1MjNMMTkuNDI2NCA5LjI1NTkyTDE5LjQyNjQgMTAuNzU1OEwxMi4zMDM2IDEwLjc1NTFaTTkuMjg4IDE5LjQyNzVMOS4yODczMSAxMi4zMDQ2QzkuMjg3MjcgMTEuODkwNCA5LjYyMzAyIDExLjU1NDggMTAuMDM3MiAxMS41NTQ3QzEwLjQ1MTIgMTEuNTU0OSAxMC43ODcxIDExLjg5MDYgMTAuNzg3MiAxMi4zMDQ2TDEwLjc4NzggMTkuNDI3NUw5LjI4OCAxOS40Mjc1WiIgZmlsbD0iI0ZGNjUxMyIvPgo8L3N2Zz4K");
  background-size: 100% 100%;
  width: 1.4rem;
  height: 1.4rem;
  display: inline-flex;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.header-menu-tab-main-menu .menu li a:hover::before {
  transform: translateY(-50%) rotate(180deg);
}
.header-menu-tab-main .text {
  margin: 8.62rem 0 0 0;
  color: #a8a8a8;
  text-align: right;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 329.92px;
  transform: translateX(15rem);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.header.active::before {
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.header.active .header-menu-tab {
  grid-template-rows: 1fr;
  padding: calc(var(--header-height) + 3.88rem) 6.88rem 4.25rem;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.header.active .header-menu-tab .menu li a {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.25, 0.74, 0.22, 0.99), transform 0.7s cubic-bezier(0.25, 0.74, 0.22, 0.99);
}
.header.active .header-menu-tab .menu:nth-child(1) li:nth-child(1) a {
  transition-delay: 0.2s;
}
.header.active .header-menu-tab .menu:nth-child(1) li:nth-child(2) a {
  transition-delay: 0.28s;
}
.header.active .header-menu-tab .menu:nth-child(1) li:nth-child(3) a {
  transition-delay: 0.36s;
}
.header.active .header-menu-tab .menu:nth-child(2) li:nth-child(1) a {
  transition-delay: 0.36s;
}
.header.active .header-menu-tab .menu:nth-child(2) li:nth-child(2) a {
  transition-delay: 0.44s;
}
.header.active .header-menu-tab .menu:nth-child(2) li:nth-child(3) a {
  transition-delay: 0.52s;
}
.header.active .header-menu-tab .menu:nth-child(3) li:nth-child(1) a {
  transition-delay: 0.52s;
}
.header.active .header-menu-tab .menu:nth-child(3) li:nth-child(2) a {
  transition-delay: 0.6s;
}
.header.active .header-menu-tab .menu:nth-child(3) li:nth-child(3) a {
  transition-delay: 0.68s;
}
.header.active .header-menu-tab .text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}
.header-craw {
  padding: 0.94rem 2.49rem 0.94rem 2.56rem;
  border-radius: 4.375rem;
  border: 1px solid #636363;
  display: flex;
  align-items: center;
  gap: 1.37rem;
  color: #636363;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  margin-left: auto;
  margin-right: 4.81rem;
  transition: all 0.5s ease;
}
.header-craw:hover {
  color: #ff6513;
  border-color: #ff6513;
}
.header-craw::after {
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAyNCAyNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIxLjgxOTMgMTEuODQ5NkMyMy42MDExIDExLjg0OTYgMjQuNDkzMyAxNC4wMDM3IDIzLjIzMzQgMTUuMjYzN0wxMi45NzE3IDI1LjUyNjRMMTEuNTU3NiAyNC4xMTEzTDIxLjgxOTMgMTMuODQ5NkwwIDEzLjg0OTZMMCAxMS44NDk2TDIxLjgxOTMgMTEuODQ5NlpNMjAuMTY2IDcuMzE2NDFDMjAuNTU2MyA3LjcwNjgyIDIwLjU1NjEgOC4zMzk5NiAyMC4xNjYgOC43MzA0N0MxOS43NzU1IDkuMTIwOTQgMTkuMTQyNSA5LjEyMDg2IDE4Ljc1MiA4LjczMDQ3TDExLjQzNTUgMS40MTQwNkwxMi44NDk2IDBMMjAuMTY2IDcuMzE2NDFaIiBmaWxsPSIjRkY2NTEzIi8+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 1.48894rem;
  height: 1.59538rem;
  display: inline-block;
}
.header-logo {
  width: 7.06rem;
  height: 2.44rem;
  overflow: hidden;
  color: #ff6513;
  transition: all 0.5s ease;
}
.header-logo svg {
  width: auto;
  height: 100%;
  object-fit: contain;
}
.header.home-fix.is-logo-returning:not(.logo-fix) .header-logo {
  transition: top 0.5s ease, width 0.5s ease 0.5s, height 0.5s ease 0.5s, color 0.5s ease 0.5s;
}
.header.home-fix .header-craw {
  margin-right: 0;
}
.header.home-fix .header-logo {
  position: absolute;
  top: calc(var(--home-video-height) - 2.5rem);
  right: 5.5rem;
  width: 25.625rem;
  height: 2.4375rem;
  color: #fff;
}
.header.home-fix.logo-fix .header-craw {
  margin-right: 11.88rem;
}
.header.home-fix.logo-fix .header-logo {
  width: 7.06rem;
  height: 2.44rem;
  color: #ff6513;
  top: calc(var(--header-height) / 2 - 1.085rem);
}
.header.home-fix.logo-fix.is-scroll-logo-transition .header-logo {
  transition: width 0.5s ease, height 0.5s ease, top 0.5s ease, color 0.5s ease;
}
.header.home-fix.logo-fix.is-video-logo-transition .header-logo {
  transition: width 0.5s ease, height 0.5s ease, top 0.5s ease 0.5s, color 0.5s ease;
}
.header.home-fix.logo-fix.is-logo-following .header-logo {
  top: max(calc(var(--header-height) / 2 - 1.085rem), calc(var(--home-video-height) - 2.5rem) - var(--header-logo-scroll, 0px));
  transition: width 0.5s ease, height 0.5s ease, color 0.5s ease;
}

@media (prefers-reduced-motion: reduce) {
  .header-container {
    transition: none;
  }
}
@media (min-width: 992px) {
  .header.home-fix.logo-fix .header-menu-tab .tab-logo {
    visibility: hidden;
  }
}
.header-navigation {
  display: contents;
}

.header-hamburger {
  display: none;
}

@media (max-width: 991px) {
  .header::before {
    display: none;
  }
  .header-container {
    background-color: #f6f5f3;
    height: 4.5rem;
    padding: 0.75rem 1.25rem;
    justify-content: space-between;
  }
  .header-logo, .header.home-fix .header-logo, .header.home-fix.logo-fix .header-logo {
    position: static;
    width: 7.06rem;
    height: 2.44rem;
    color: #ff6513;
    flex-shrink: 0;
  }
  .header-logo svg, .header.home-fix .header-logo svg, .header.home-fix.logo-fix .header-logo svg {
    width: 100%;
  }
  .header-hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }
  .header-hamburger span {
    width: 20px;
    height: 2px;
    background: #ff6513;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .header-hamburger[aria-expanded=true] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .header-hamburger[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
  }
  .header-hamburger[aria-expanded=true] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .header-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: calc(100dvh - 4.5rem);
    overflow-y: auto;
    padding: 1rem 1.25rem 1.5rem;
    background: #f6f5f3;
    border-top: 1px solid #d4d4d4;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    gap: 0;
  }
  .header-navigation > .header-craw {
    order: 3;
    margin: 1.25rem 0 0 !important;
    align-self: flex-start;
    padding: 0.75rem 1rem;
  }
  .header.is-mobile-open .header-navigation {
    display: flex;
  }
  .header-menu {
    display: contents;
  }
  .header-menu li {
    order: 2;
    border-bottom: 1px solid #e6e4e1;
  }
  .header-menu li:first-child {
    order: 0;
  }
  .header-menu li a {
    display: flex;
    align-items: center;
    min-height: 52px;
    font-size: 1.0625rem;
    color: #3a3a3a;
  }
  .header-menu li a::after {
    display: none;
  }
  .header-menu li a.active {
    color: #ff6513;
  }
  .header-menu li a[data-header-menu-toggle]::after {
    content: "";
    display: block;
    position: static;
    width: 0.5rem;
    height: 0.5rem;
    margin: -0.25rem 0.25rem 0 auto;
    background: none;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.25s ease, margin 0.25s ease;
  }
  .header-menu li a[data-header-menu-toggle][aria-expanded=true]::after {
    margin-top: 0.25rem;
    transform: rotate(-135deg);
  }
  .header-menu-tab, .header.active .header-menu-tab {
    position: static;
    display: none;
    order: 1;
    margin: 0 0 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 0.875rem;
    flex-shrink: 0;
  }
  .header-menu-tab-head, .header.active .header-menu-tab-head {
    display: none;
  }
  .header-menu-tab-main, .header.active .header-menu-tab-main {
    flex-direction: column;
    gap: 0;
  }
  .header-menu-tab-main-menu, .header.active .header-menu-tab-main-menu {
    flex-direction: column;
    gap: 0;
  }
  .header-menu-tab-main-menu .menu, .header.active .header-menu-tab-main-menu .menu {
    gap: 0;
  }
  .header-menu-tab-main-menu .menu li a, .header.active .header-menu-tab-main-menu .menu li a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding-left: 1.75rem;
    font-size: 0.9375rem;
  }
  .header-menu-tab-main .text, .header.active .header-menu-tab-main .text {
    display: none;
  }
  .header.active .header-menu-tab {
    display: block;
    animation: headerMobileTabOpen 0.28s ease-out both;
  }
}
@media (min-width: 992px) {
  @keyframes headerLogoSwapToFixed {
    0% {
      top: calc(var(--home-video-height) - 2.5rem - var(--header-logo-scroll, 0px));
      width: 25.625rem;
      color: #fff;
    }
    48% {
      top: calc(var(--home-video-height) - 2.5rem - var(--header-logo-scroll, 0px));
      width: 0;
      color: #fff;
    }
    52% {
      top: calc(var(--header-height) / 2 - 1.085rem);
      width: 0;
      color: #ff6513;
    }
    100% {
      top: calc(var(--header-height) / 2 - 1.085rem);
      width: 7.06rem;
      color: #ff6513;
    }
  }
  @keyframes headerLogoSwapToHome {
    0% {
      top: calc(var(--header-height) / 2 - 1.085rem);
      width: 7.06rem;
      color: #ff6513;
    }
    48% {
      top: calc(var(--header-height) / 2 - 1.085rem);
      width: 0;
      color: #ff6513;
    }
    52% {
      top: calc(var(--home-video-height) - 2.5rem - var(--header-logo-scroll, 0px));
      width: 0;
      color: #fff;
    }
    100% {
      top: calc(var(--home-video-height) - 2.5rem - var(--header-logo-scroll, 0px));
      width: 25.625rem;
      color: #fff;
    }
  }
  .header.home-fix .header-logo {
    transition: none !important;
  }
  .header.home-fix.is-logo-swapping.logo-fix .header-logo {
    animation: headerLogoSwapToFixed 1s ease both;
  }
  .header.home-fix.is-logo-swapping:not(.logo-fix) .header-logo {
    animation: headerLogoSwapToHome 1s ease both;
  }
}
@keyframes headerMobileTabOpen {
  from {
    opacity: 0;
    transform: translateY(-0.375rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 991px) and (prefers-reduced-motion: reduce) {
  .header.active .header-menu-tab {
    animation: none;
  }
}