html {
  scroll-behavior: auto !important;
}
html.has-modal-l {
  overflow: hidden;
}
html.has-modal-l body, html.has-modal-l #localnav {
  padding-inline-end: var(--modal-scrollbar-buffer);
}

body {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}

.html-text-component {
  overflow: inherit;
}

.has-localnav .header-component nav {
  position: absolute;
  transform: none !important;
  border-bottom: 0 !important;
  background-color: transparent !important;
  backdrop-filter: none;
}

#localnav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  max-height: 50px;
  line-height: 50px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), max-height 0.6s cubic-bezier(0.52, 0.16, 0.24, 1);
  transform: translateY(-100%);
  background-color: rgba(0, 0, 0, 0.8);
}
@supports (backdrop-filter: none) {
  #localnav {
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: saturate(150%) blur(20px);
  }
}
.localnav-show #localnav {
  transform: translateY(0%);
}
#localnav .ln-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 50px;
}
#localnav .ln-content::before, #localnav .ln-content::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background-color: #414141;
}
#localnav .ln-content::before {
  top: 50px;
}
#localnav .ln-content::after {
  bottom: 0;
}
#localnav .ln-title {
  flex-grow: 1;
  height: 50px;
  padding-left: 160px;
}
#localnav .ln-title .ln-link {
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: bold;
}
#localnav .button {
  overflow: visible;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-align: center;
  vertical-align: inherit;
  color: inherit;
  border: 0;
  outline: 0;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#localnav svg {
  display: block;
}
#localnav .ln-menu-trigger {
  display: none;
  width: 40px;
  padding: 16px 8px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#localnav .ln-menu {
  display: flex;
  margin-left: 12px;
}
#localnav .ln-menu-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#localnav .ln-link {
  position: relative;
  display: block;
  padding: 0 20px;
  font-size: 14px;
  line-height: 50px;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  color: #fff;
}
#localnav .ln-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 50px;
  margin-left: 20px;
  padding-right: 160px;
}
.localnav-collapse #localnav {
  max-height: 56px;
  line-height: 56px;
}
.localnav-collapse #localnav .ln-content {
  height: 100%;
}
.localnav-collapse #localnav .ln-content::before {
  top: 56px;
}
.localnav-collapse #localnav .ln-title {
  display: flex;
  flex-grow: 0;
  height: 56px;
  padding-left: 24px;
}
.localnav-collapse #localnav .ln-menu {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  height: auto;
  margin-left: 0;
  padding-right: 16px;
  padding-left: 16px;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.localnav-collapse #localnav .ln-menu::-webkit-scrollbar {
  display: none;
}
.localnav-collapse #localnav .ln-link {
  height: 56px;
  line-height: 56px;
}
.localnav-collapse #localnav .ln-action {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 56px;
  margin-left: 0;
  padding-right: 24px;
}
.localnav-collapse #localnav .ln-menu-item {
  transition: opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  opacity: 0;
}
.localnav-collapse #localnav .ln-menu-item .ln-link {
  padding: 0 8px;
}
.localnav-collapse #localnav .ln-menu-trigger {
  display: block;
}
#localnav.ln-expanded {
  max-height: 100%;
}
#localnav.ln-expanded .ln-menu-trigger {
  transform: rotate(180deg);
}
#localnav.ln-expanded .ln-menu {
  visibility: visible;
  transition-delay: 0s;
}
#localnav.ln-expanded .ln-menu-item {
  opacity: 1;
}
@media only screen and (min-width: 1200.01px) {
  #localnav .ln-link::after {
    position: absolute;
    right: 20px;
    bottom: 1px;
    left: 20px;
    height: 2px;
    content: "";
    transition: transform 0.55s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: scaleX(0);
    transform-origin: center;
    background-color: #fff;
  }
  #localnav .ln-link:hover::after {
    transform: scaleX(1);
  }
  #localnav .ln-title .ln-link::after {
    display: none;
  }
}
@media only screen and (max-width: 1919px) {
  #localnav .ln-title {
    padding-left: 80px;
  }
  #localnav .ln-action {
    padding-right: 80px;
  }
}
@media only screen and (max-width: 1200px) {
  #localnav .ln-title {
    padding-left: 32px;
  }
  #localnav .ln-menu {
    margin-left: 20px;
  }
  #localnav .ln-link {
    padding: 0 12px;
  }
  #localnav .ln-link.current::after {
    right: 12px;
    left: 12px;
  }
  #localnav .ln-action {
    margin-left: 12px;
    padding-right: 32px;
  }
  #localnav .ln-menu-trigger {
    left: 0;
  }
}

#modal-player {
  position: fixed;
  z-index: 99999 !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  background: rgba(0, 0, 0, 0.8) !important;
  cursor: pointer;
}
#modal-player.modal-player-open {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-player-fadein 300ms forwards;
}
#modal-player video {
  width: auto !important;
  max-width: 90%;
  max-height: 90vh;
  outline: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

@keyframes modal-player-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#modal-player-close {
  position: absolute;
  z-index: 1;
  top: 1.25vw;
  right: 1.25vw;
  width: 2.083333vw;
  height: 2.083333vw;
  padding: 0;
  transition: opacity 0.2s;
  opacity: 0.8;
}
@media (max-aspect-ratio: 11/10) {
  #modal-player-close {
    top: 24.444444vw;
    right: 6.666667vw;
    width: 8.333333vw;
    height: 8.333333vw;
  }
}
@media (min-aspect-ratio: 4/5) and (max-aspect-ratio: 11/10) {
  #modal-player-close {
    top: 10%;
    right: 5%;
  }
}

html {
  overscroll-behavior-y: auto !important;
}

#shb section {
  position: relative;
}
#shb picture, #shb img, #shb svg, #shb canvas, #shb video {
  display: block;
  width: 100%;
}
#shb sup {
  top: auto;
  font-size: 0.6em;
  vertical-align: super;
}
#shb sup.sm {
  position: relative;
  top: -0.36em;
  font-size: 0.4em;
}
#shb sup a {
  color: inherit;
}
#shb .object-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
#shb .object-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#shb .backdrop-filter {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
}
#shb .blur-up {
  transition: filter 400ms;
  filter: blur(20px);
}
#shb .blur-up.lazyloaded {
  filter: blur(0);
}
#shb br {
  line-height: 0;
}
#shb br.xs {
  display: none;
}
#shb br.lg {
  display: block;
}
@media (max-aspect-ratio: 11/10) {
  #shb br.lg {
    display: none;
  }
  #shb br.xs {
    display: block;
  }
}
#shb .absolute {
  position: absolute;
}
#shb .relative {
  position: relative;
}
#shb .sticky {
  position: sticky;
  top: 0;
}
#shb .overflow-hidden {
  overflow: hidden;
}
#shb .overflow-visible {
  overflow: visible;
}
@media (max-aspect-ratio: 11/10) {
  #shb .xs\:overflow-hidden {
    overflow: hidden;
  }
  #shb .xs\:overflow-visible {
    overflow: visible;
  }
}
#shb .block {
  display: block;
}
#shb .inline-block {
  display: inline-block;
}
#shb .inline {
  display: inline;
}
#shb .flex {
  display: flex;
}
#shb .inline-flex {
  display: inline-flex;
}
#shb .grid {
  display: grid;
}
#shb .hidden {
  display: none;
}
@media (max-aspect-ratio: 11/10) {
  #shb .xs\:block {
    display: block;
  }
  #shb .xs\:inline-block {
    display: inline-block;
  }
  #shb .xs\:inline {
    display: inline;
  }
  #shb .xs\:flex {
    display: flex;
  }
  #shb .xs\:inline-flex {
    display: inline-flex;
  }
  #shb .xs\:grid {
    display: grid;
  }
  #shb .xs\:hidden {
    display: none;
  }
}
#shb .flex-row-reverse {
  flex-direction: row-reverse;
}
#shb .flex-col {
  flex-direction: column;
}
#shb .flex-col-reverse {
  flex-direction: column-reverse;
}
#shb .flex-wrap {
  flex-wrap: wrap;
}
#shb .justify-start {
  justify-content: flex-start;
}
#shb .justify-end {
  justify-content: flex-end;
}
#shb .justify-center {
  justify-content: center;
}
#shb .justify-between {
  justify-content: space-between;
}
#shb .items-start {
  align-items: flex-start;
}
#shb .items-end {
  align-items: flex-end;
}
#shb .items-center {
  align-items: center;
}
#shb .shrink-0 {
  flex-shrink: 0;
}
@media (max-aspect-ratio: 11/10) {
  #shb .xs\:flex-row {
    flex-direction: row;
  }
  #shb .xs\:flex-row-reverse {
    flex-direction: row-reverse;
  }
  #shb .xs\:flex-col {
    flex-direction: column;
  }
  #shb .xs\:flex-col-reverse {
    flex-direction: column-reverse;
  }
  #shb .xs\:justify-start {
    justify-content: flex-start;
  }
  #shb .xs\:justify-end {
    justify-content: flex-end;
  }
  #shb .xs\:justify-center {
    justify-content: center;
  }
  #shb .xs\:justify-between {
    justify-content: space-between;
  }
  #shb .xs\:items-start {
    align-items: flex-start;
  }
  #shb .xs\:items-end {
    align-items: flex-end;
  }
  #shb .xs\:items-center {
    align-items: center;
  }
}
#shb .stack-list {
  display: grid;
}
#shb .stack-item {
  position: relative;
  width: 100%;
  transition-timing-function: cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transition-property: opacity;
  opacity: 0;
  grid-area: 1/1/-1/-1;
}
#shb .stack-item.current {
  z-index: 1;
  opacity: 1;
}
#shb .speed-fade .stack-item {
  transition-duration: 200ms;
}
#shb .speed-fade .stack-item.current {
  transition-delay: 200ms;
}
#shb .speed-slide .stack-item {
  transition-duration: 400ms;
}
#shb .speed-slide .stack-item.current {
  transition-delay: 400ms;
}
@media (max-aspect-ratio: 11/10) {
  #shb .speed-slide .stack-item {
    transition-duration: 300ms;
  }
  #shb .speed-slide .stack-item.current {
    transition-delay: 300ms;
  }
}
#shb .fadeup, #shb .lg-fadeup, #shb .fadeup-02, #shb .fadeup-03 {
  transform: translate3d(0, 40px, 0);
  opacity: 0;
}
@media (max-aspect-ratio: 11/10) {
  #shb .fadeup, #shb .xs-fadeup, #shb .xs-fadeup-02 {
    transform: translate3d(0, 40px, 0);
  }
  #shb .lg-fadeup {
    transition: none;
    transform: none;
    opacity: 1;
  }
  #shb .xs-fadeup, #shb .xs-fadeup-02 {
    transition: opacity 0.8s ease-in, transform 0.8s cubic-bezier(0.26, 0.67, 0.48, 0.91);
    opacity: 0;
  }
}
#shb .fadeup-animated, #shb .fadeup-container.animated .fadeup-03, #shb .animated .fadeup-02, #shb .animated .xs-fadeup-02, #shb .fadeup.animated, #shb .lg-fadeup.animated, #shb .xs-fadeup.animated {
  transition: opacity 0.8s ease-in, transform 0.8s cubic-bezier(0.26, 0.67, 0.48, 0.91);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
#shb .fadeup-container.animated .delay-200 {
  transition-delay: 200ms !important;
}
#shb .fadeup-container.animated .delay-400 {
  transition-delay: 400ms !important;
}
#shb .fadeup-container.animated .delay-600 {
  transition-delay: 600ms !important;
}
#shb .w-1364 {
  width: 71.041667vw;
}
#shb .w-1320 {
  width: 68.75vw;
}
#shb .w-1296 {
  width: 67.5vw;
}
#shb .w-830 {
  width: 43.229167vw;
}
#shb .w-720 {
  width: 37.5vw;
}
@media (max-aspect-ratio: 11/10) {
  #shb .xs\:w-full {
    width: 100%;
  }
  #shb .xs\:w-688 {
    width: 95.555556vw;
  }
  #shb .xs\:w-680 {
    width: 94.444444vw;
  }
  #shb .xs\:w-656 {
    width: 91.111111vw;
  }
  #shb .xs\:w-592 {
    width: 82.222222vw;
  }
  #shb .xs\:w-520 {
    width: 72.222222vw;
  }
}
#shb .mt-1\.25 {
  margin-top: 1.25em;
}
#shb .mt-1\.6 {
  margin-top: 1.6em;
}
#shb .mb-0\.5 {
  margin-bottom: 0.5em;
}
#shb .mx-auto {
  margin-right: auto;
  margin-left: auto;
}
#shb .mt-8, #shb .lg\:mt-8 {
  margin-top: 0.416667vw;
}
#shb .mt-16, #shb .lg\:mt-16 {
  margin-top: 0.833333vw;
}
#shb .mt-24, #shb .lg\:mt-24 {
  margin-top: 1.25vw;
}
#shb .mt-32, #shb .lg\:mt-32 {
  margin-top: 1.666667vw;
}
#shb .mt-40, #shb .lg\:mt-40 {
  margin-top: 2.083333vw;
}
#shb .mt-48, #shb .lg\:mt-48 {
  margin-top: 2.5vw;
}
#shb .mt-56, #shb .lg\:mt-56 {
  margin-top: 2.916667vw;
}
#shb .mt-64, #shb .lg\:mt-64 {
  margin-top: 3.333333vw;
}
#shb .mt-72, #shb .lg\:mt-72 {
  margin-top: 3.75vw;
}
#shb .mt-80, #shb .lg\:mt-80 {
  margin-top: 4.166667vw;
}
#shb .mt-88, #shb .lg\:mt-88 {
  margin-top: 4.583333vw;
}
#shb .mt-96, #shb .lg\:mt-96 {
  margin-top: 5vw;
}
#shb .mt-104, #shb .lg\:mt-104 {
  margin-top: 5.416667vw;
}
#shb .mt-112, #shb .lg\:mt-112 {
  margin-top: 5.833333vw;
}
#shb .mt-120, #shb .lg\:mt-120 {
  margin-top: 6.25vw;
}
#shb .mt-144, #shb .lg\:mt-144 {
  margin-top: 7.5vw;
}
#shb .mt-160, #shb .lg\:mt-160 {
  margin-top: 8.333333vw;
}
#shb .mt-200, #shb .lg\:mt-200 {
  margin-top: 10.416667vw;
}
@media (max-aspect-ratio: 11/10) {
  #shb .xs\:mx-auto {
    margin-right: auto;
    margin-left: auto;
  }
  #shb .mt-8, #shb .xs\:mt-8 {
    margin-top: 1.111111vw;
  }
  #shb .mt-16, #shb .xs\:mt-16 {
    margin-top: 2.222222vw;
  }
  #shb .mt-24, #shb .xs\:mt-24 {
    margin-top: 3.333333vw;
  }
  #shb .mt-32, #shb .xs\:mt-32 {
    margin-top: 4.444444vw;
  }
  #shb .mt-40, #shb .xs\:mt-40 {
    margin-top: 5.555556vw;
  }
  #shb .mt-48, #shb .xs\:mt-48 {
    margin-top: 6.666667vw;
  }
  #shb .mt-56, #shb .xs\:mt-56 {
    margin-top: 7.777778vw;
  }
  #shb .mt-64, #shb .xs\:mt-64 {
    margin-top: 8.888889vw;
  }
  #shb .mt-72, #shb .xs\:mt-72 {
    margin-top: 10vw;
  }
  #shb .mt-80, #shb .xs\:mt-80 {
    margin-top: 11.111111vw;
  }
  #shb .mt-88, #shb .xs\:mt-88 {
    margin-top: 12.222222vw;
  }
  #shb .mt-96, #shb .xs\:mt-96 {
    margin-top: 13.333333vw;
  }
  #shb .mt-104, #shb .xs\:mt-104 {
    margin-top: 14.444444vw;
  }
  #shb .mt-112, #shb .xs\:mt-112 {
    margin-top: 15.555556vw;
  }
  #shb .mt-120, #shb .xs\:mt-120 {
    margin-top: 16.666667vw;
  }
  #shb .mt-144, #shb .xs\:mt-144 {
    margin-top: 20vw;
  }
  #shb .mt-160, #shb .xs\:mt-160 {
    margin-top: 22.222222vw;
  }
  #shb .mt-200, #shb .xs\:mt-200 {
    margin-top: 27.777778vw;
  }
  #shb .xs\:mt-0 {
    margin-top: 0;
  }
}
#shb .pt-200, #shb .lg\:pt-200 {
  padding-top: 10.416667vw;
}
#shb .pb-200, #shb .lg\:pb-200 {
  padding-bottom: 10.416667vw;
}
#shb .py-200, #shb .lg\:py-200 {
  padding-top: 10.416667vw;
  padding-bottom: 10.416667vw;
}
#shb .pt-160, #shb .lg\:pt-160 {
  padding-top: 8.333333vw;
}
#shb .pb-160, #shb .lg\:pb-160 {
  padding-bottom: 8.333333vw;
}
#shb .py-160, #shb .lg\:py-160 {
  padding-top: 8.333333vw;
  padding-bottom: 8.333333vw;
}
#shb .pt-120, #shb .lg\:pt-120 {
  padding-top: 6.25vw;
}
#shb .pb-120, #shb .lg\:pb-120 {
  padding-bottom: 6.25vw;
}
#shb .pt-112, #shb .lg\:pt-112 {
  padding-top: 5.833333vw;
}
#shb .pt-80, #shb .lg\:pt-80 {
  padding-top: 4.166667vw;
}
#shb .pb-80, #shb .lg\:pb-80 {
  padding-bottom: 4.166667vw;
}
#shb .pt-40, #shb .lg\:pt-40 {
  padding-top: 2.083333vw;
}
#shb .pl-72 {
  padding-left: 3.75vw;
}
#shb .px-16 {
  padding-left: 0.833333vw;
  padding-right: 0.833333vw;
}
@media (max-aspect-ratio: 11/10) {
  #shb .pt-200, #shb .xs\:pt-200 {
    padding-top: 27.777778vw;
  }
  #shb .pb-200, #shb .xs\:pb-200 {
    padding-bottom: 27.777778vw;
  }
  #shb .py-200, #shb .xs\:py-200 {
    padding-top: 27.777778vw;
    padding-bottom: 27.777778vw;
  }
  #shb .pt-160, #shb .xs\:pt-160 {
    padding-top: 22.222222vw;
  }
  #shb .pb-160, #shb .xs\:pb-160 {
    padding-bottom: 22.222222vw;
  }
  #shb .py-160, #shb .xs\:py-160 {
    padding-top: 22.222222vw;
    padding-bottom: 22.222222vw;
  }
  #shb .pt-120, #shb .xs\:pt-120 {
    padding-top: 16.666667vw;
  }
  #shb .pt-88, #shb .xs\:pt-88 {
    padding-top: 12.222222vw;
  }
  #shb .pt-80, #shb .xs\:pt-80 {
    padding-top: 11.111111vw;
  }
  #shb .px-16, #shb xs\:px-16 {
    padding-left: 2.222222vw;
    padding-right: 2.222222vw;
  }
  #shb .xs\:pt-0 {
    padding-top: 0;
  }
  #shb .xs\:pb-0 {
    padding-bottom: 0;
  }
  #shb .xs\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  #shb .xs\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
  #shb .xs\:pl-0 {
    padding-left: 0;
  }
}
#shb h2, #shb h3 {
  font-weight: 500;
  line-height: 1.25;
  color: #000;
}
#shb h2 {
  font-size: 2.5vw;
}
#shb h2.start-headline {
  font-size: 3.333333vw;
}
#shb h3 {
  font-size: 1.145833vw;
}
#shb h3.headline {
  font-size: 3.333333vw;
}
@media (max-aspect-ratio: 11/10) {
  #shb h2 {
    font-size: 8.888889vw;
  }
  #shb h2.start-headline {
    font-size: 11.111111vw;
  }
  #shb h3 {
    font-size: 4.444444vw;
  }
  #shb h3.headline {
    font-size: 8.888889vw;
  }
}
#shb strong {
  font-weight: 500;
}
#shb .note {
  display: flex;
  font-size: max(8px, 0.625vw);
  color: #a5a5a5;
}
@media (max-aspect-ratio: 11/10) {
  #shb .note {
    font-size: 3.055556vw;
  }
}
#shb [data-footnote] {
  font-size: 0.6em;
  cursor: pointer;
}
#shb .nowrap {
  display: inline-block;
  white-space: nowrap;
}
#shb .text-gradient {
  display: inline-block;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
#shb .text-left {
  text-align: left;
}
#shb .text-center {
  text-align: center;
}
#shb .text-right {
  text-align: right;
}
@media (max-aspect-ratio: 11/10) {
  #shb .xs\:text-left {
    text-align: left;
  }
  #shb .xs\:text-center {
    text-align: center;
  }
  #shb .xs\:text-right {
    text-align: right;
  }
}
#shb .video-container {
  position: relative;
}
#shb .inline-video {
  pointer-events: none;
}
#shb .start-frame-mask::after {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--start-frame) center/cover no-repeat;
  opacity: 0;
  transition: opacity 200ms 300ms ease-out;
}
#shb .start-frame-mask.show-start-frame::after {
  opacity: 1;
}
#shb .play-pause-button {
  --arrownav-background-color: 52, 53, 54;
  position: absolute;
  z-index: 2;
  right: 1.25vw;
  bottom: 1.25vw;
  overflow: hidden;
  width: 2.083333vw;
  height: 2.083333vw;
  cursor: pointer;
  border-radius: 50%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background-color 300ms ease-out;
  background-color: rgba(128, 128, 128, 0.6);
  backdrop-filter: blur(8px);
}
@media (hover: hover) and (pointer: fine) {
  #shb .play-pause-button:hover {
    background-color: rgba(128, 128, 128, 0.3);
  }
}
@media (max-aspect-ratio: 11/10) {
  #shb .play-pause-button {
    right: 4.444444vw;
    bottom: 4.444444vw;
    width: 8.888889vw;
    height: 8.888889vw;
  }
}
#shb .play-pause-button .button-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
#shb .playing .icon-pause, #shb .paused .icon-play, #shb .ended .icon-replay {
  display: block;
}
#shb .effect-fade .play-pause-button {
  transition-property: transform, opacity;
  transition-duration: 100ms;
  transition-timing-function: cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transform: scale(0.8);
  opacity: 0;
}
#shb .effect-fade .swiper-slide-active .play-pause-button {
  transition-delay: 620ms;
  transform: scale(1);
  opacity: 1;
}
@media (max-aspect-ratio: 11/10) {
  #shb .effect-fade .swiper-slide-active .play-pause-button {
    transition-delay: 420ms;
  }
}
#shb.no-inline-video .play-pause-button {
  display: none;
}
#shb .replay-button {
  opacity: 0;
  transition: opacity 300ms;
  pointer-events: none;
  cursor: default;
}
#shb .ended .replay-button {
  cursor: pointer;
  pointer-events: all;
  opacity: 1;
}
#shb .modal-open-button.modal-open {
  pointer-events: none;
}
#shb .section-modal {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  transform: translateZ(0);
  outline: 0;
  background-color: #000;
}
#shb .section-modal.modal-open {
  z-index: 999;
}
.has-modal-l #shb .section-modal.modal-open, .has-modal-l #shb .section-modal.modal-focus {
  z-index: 999;
}
#shb .section-modal.modal-focus {
  overflow: auto !important;
  padding-inline-end: 0;
}
#shb .section-modal .modal-container {
  width: 100%;
  height: 100%;
}
#shb .section-modal .modal-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
#shb .section-modal .modal-close-container {
  position: absolute;
  top: 4.166667vw;
  right: 4.166667vw;
  bottom: 0;
  width: 2.083333vw;
}
#shb .section-modal .modal-close-button {
  position: sticky;
  z-index: 10;
  top: 2.083333vw;
  width: 100%;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background-color 300ms ease-out;
  border-radius: 50%;
  background-color: rgba(128, 128, 128, 0.6);
  backdrop-filter: blur(8px);
}
@media (hover: hover) and (pointer: fine) {
  #shb .section-modal .modal-close-button:hover {
    background-color: rgba(128, 128, 128, 0.3);
  }
}
#shb .section-modal .modal-close-icon {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
@media (max-aspect-ratio: 11/10) {
  #shb .section-modal .modal-container {
    height: auto;
  }
  #shb .section-modal .modal-wrapper {
    overflow: unset;
    height: auto;
    padding-bottom: 10vw;
    padding-top: 23.888889vw;
  }
  #shb .section-modal .modal-close-container {
    top: 8.888889vw;
    right: 6.666667vw;
    width: 11.111111vw;
  }
  #shb .section-modal .modal-close-button {
    top: 8.888889vw;
  }
}
#shb .swiper:not(.swiper-fade) .swiper-wrapper, #shb .swiper:not(.swiper-fade) [data-swiper-parallax-x], #shb .swiper:not(.swiper-fade) [data-swiper-parallax-y], #shb .swiper:not(.swiper-fade) [data-swiper-parallax-opacity], #shb .swiper:not(.swiper-fade) [data-swiper-parallax-scale], #shb .swiper:not(.swiper-fade) .transform-item {
  transition-timing-function: cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
#shb .swiper.swiper-touched .swiper-wrapper, #shb .swiper.swiper-touched [data-swiper-parallax-x], #shb .swiper.swiper-touched [data-swiper-parallax-y], #shb .swiper.swiper-touched [data-swiper-parallax-opacity], #shb .swiper.swiper-touched [data-swiper-parallax-scale], #shb .swiper.swiper-touched .transform-item {
  transition-timing-function: ease !important;
}
#shb .swiper.swiper-fade .swiper-slide, #shb .swiper.swiper-fade .transform-item {
  transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}
#shb .swiper.swiper-click .swiper-slide:not(.swiper-slide-visible) {
  cursor: pointer;
}
#shb .swiper.swiper-click-inside .swiper-slide {
  cursor: pointer;
}
#shb .swiper.swiper-click-inside .swiper-slide-active, #shb .swiper.swiper-click-inside .swiper-slide-next {
  cursor: auto;
}
@media (max-aspect-ratio: 11/10) {
  #shb .swiper.swiper-click-inside .swiper-slide-next {
    cursor: pointer;
  }
}
#shb .pagination-item {
  display: flex;
  overflow: hidden;
  align-items: center;
  width: auto;
  font-size: var(--pagination-font-size, 1.041667vw);
  font-weight: 800;
  line-height: 1;
  color: #000;
}
#shb .pagination-item.swiper-pagination-lock {
  display: none;
}
#shb .pagination-current {
  display: flex;
  flex-direction: column;
  height: 1em;
  transition-property: transform;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transform: translate3d(0, var(--pagination-y, 0), 0);
  text-align: right;
}
#shb .swiper-fade .pagination-current {
  transition-duration: 0.4s;
}
#shb .pagination-line {
  position: relative;
  overflow: hidden;
  width: 6.25vw;
  height: 2px;
  margin-right: 0.833333vw;
  margin-left: 0.833333vw;
  background-color: rgba(0, 0, 0, 0.4);
}
#shb .pagination-line::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: transform 0.6s linear;
  transform: scaleX(0);
  transform-origin: left;
  background-color: #000;
}
#shb .autoplay-animating .pagination-line::before {
  transition-duration: 3.8s;
  transform: scaleX(1);
}
#shb .autoplay-animating .autoplay-3s .pagination-line::before {
  transition-duration: 2.8s;
  transform: scaleX(1);
}
#shb .pagination-total {
  opacity: 0.2;
}
@media (max-aspect-ratio: 11/10) {
  #shb .pagination-current {
    transition-duration: 0.6s;
  }
  #shb .pagination-item {
    font-size: var(--pagination-font-size, 3.888889vw);
  }
  #shb .pagination-line {
    width: 20.555556vw;
    height: 0.416667vw;
    margin-right: 3.333333vw;
    margin-left: 3.333333vw;
  }
}
#shb .arrownav-list {
  display: flex;
  gap: 0.833333vw;
}
#shb .arrownav-list .arrownav-item {
  width: 2.604167vw;
  cursor: pointer;
  outline: 0;
  flex-shrink: 0;
}
@media (hover: hover) and (pointer: fine) {
  #shb .arrownav-list .arrownav-item:not(.arrownav-disabled):hover .path-outline-anim {
    stroke-dasharray: 157, 0;
  }
}
#shb .arrownav-list .icon-path {
  fill: none;
  stroke: #000;
  stroke-width: 2px;
}
#shb .arrownav-list .path-outline {
  opacity: 0.2;
}
#shb .arrownav-list .path-arrow {
  transition: opacity 0.8s;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#shb .arrownav-list .path-outline-anim {
  transition: stroke-dasharray 0.8s;
  stroke-dasharray: 0, 157;
  stroke-dashoffset: 50;
}
#shb .arrownav-list .arrownav-disabled {
  cursor: default;
}
#shb .arrownav-list .arrownav-disabled .path-arrow {
  opacity: 0.2;
}
@media (max-aspect-ratio: 11/10) {
  #shb .arrownav-list {
    gap: 3.333333vw;
  }
  #shb .arrownav-list .arrownav-item {
    width: 10.694444vw;
  }
  #shb .arrownav-list .icon-path {
    stroke-width: 3px;
  }
  #shb .arrownav-list .path-outline-anim {
    display: none;
  }
}
#shb .swiper-style {
  overflow: hidden;
}
#shb .swiper-style .content-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
}
#shb .swiper-style .slide-headline {
  font-weight: 700;
}
#shb .swiper-style .slide-intro {
  font-size: 1.041667vw;
}
#shb .swiper-style .pagination-container {
  display: flex;
  align-items: center;
  height: 2.916667vw;
}
#shb .swiper-style .arrownav-list {
  justify-content: flex-end;
}
@media (max-aspect-ratio: 11/10) {
  #shb .swiper-style .content-wrapper {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
  }
  #shb .swiper-style .stack-list {
    margin-bottom: 8.888889vw;
  }
  #shb .swiper-style .slide-intro {
    font-size: 3.888889vw;
  }
  #shb .swiper-style .pagination-container {
    width: auto;
    height: auto;
  }
  #shb .swiper-style .arrownav-list {
    width: auto;
  }
}
#shb .swiper-style-1 .stack-list {
  flex-shrink: 0;
  order: 2;
}
#shb .swiper-style-1 .pagination-container {
  order: 1;
  width: 12.5vw;
  margin-top: 1.25vw;
}
#shb .swiper-style-1 .arrownav-list {
  order: 3;
  width: 12.5vw;
  margin-top: 1.25vw;
}
@media (max-aspect-ratio: 11/10) {
  #shb .swiper-style-1 .stack-list {
    order: 1;
    text-align: center;
  }
  #shb .swiper-style-1 .stack-item .intro {
    font-size: 3.888889vw;
  }
  #shb .swiper-style-1 .pagination-container {
    width: auto;
    order: 2;
    margin-top: 0;
  }
  #shb .swiper-style-1 .arrownav-list {
    width: auto;
    margin-top: 0;
    margin-left: 11.111111vw;
  }
}
#shb .swiper-style-2 .swiper {
  overflow: visible;
}
#shb .swiper-style-2 .swiper-slide {
  overflow: hidden;
}
#shb .swiper-style-2 .swiper-slide:not(.swiper-slide-active) {
  cursor: pointer;
}
#shb .swiper-style-2 .arrownav-list {
  margin-left: 2.083333vw;
}
@media (max-aspect-ratio: 11/10) {
  #shb .swiper-style-2 .stack-list {
    margin-bottom: 8.888889vw;
    text-align: center;
  }
  #shb .swiper-style-2 .arrownav-list {
    margin-left: 11.111111vw;
  }
}
#shb .tabnav-section {
  --indicator-background-color: rgba(0, 0, 0, .2);
  --indicator-foreground-color: #000;
  --tabnav-item-color: #000;
}
#shb .tabnav-section, #shb .tabnav-custom-section {
  position: relative;
  overflow: hidden;
}
#shb .tabnav-content {
  position: relative;
  z-index: 10;
}
@media (max-aspect-ratio: 11/10) {
  #shb .tabnav-content {
    --tabnav-space: 8.888889vw;
  }
}
@media (max-aspect-ratio: 11/10) {
  #shb .tabnav-track {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 var(--tabnav-space), #000 calc(100% - var(--tabnav-space)), transparent);
            mask-image: linear-gradient(90deg, transparent, #000 var(--tabnav-space), #000 calc(100% - var(--tabnav-space)), transparent);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  #shb .tabnav-track::-webkit-scrollbar {
    display: none;
  }
  #shb .tabnav-container {
    padding-right: var(--tabnav-space);
    padding-left: var(--tabnav-space);
  }
}
#shb .disable-transitions .tabnav-item, #shb .disable-transitions .tabnav-indicator, #shb .disable-transitions .tabnav-indicator::after, #shb .disable-transitions .tabnav-caption {
  transition: none !important;
}
#shb .tabnav-wrapper {
  position: relative;
  margin-right: auto;
  margin-left: auto;
}
#shb .tabnav-list {
  position: relative;
  z-index: 10;
  display: flex;
}
#shb .tabnav-item {
  flex-shrink: 0;
}
#shb .tabnav-item sup {
  pointer-events: none;
}
#shb .tabnav-indicator {
  overflow: hidden;
  pointer-events: none;
  border-radius: 999px;
}
#shb .tabnav-line-x .tabnav-track {
  display: flex;
}
#shb .tabnav-line-x .tabnav-container {
  margin-right: auto;
  margin-left: auto;
}
#shb .tabnav-line-x .tabnav-item {
  color: var(--tabnav-item-color);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition-timing-function: ease-out;
  transition-duration: 200ms;
  transform: translateZ(0);
  white-space: nowrap;
  outline: 0;
  backface-visibility: hidden;
}
#shb .tabnav-line-x .tabnav-item.current {
  cursor: default;
  transition-duration: 400ms;
}
#shb .tabnav-line-x .tabnav-label {
  color: inherit;
  font-weight: 700;
}
#shb .tabnav-line-x .tabnav-list {
  gap: 4.166667vw;
  margin-top: -0.416667vw;
}
#shb .tabnav-line-x .tabnav-item {
  opacity: 0.4;
  padding-top: 0.416667vw;
  padding-bottom: 0.416667vw;
  transition-property: opacity;
  will-change: opacity;
}
@media (hover: hover) and (pointer: fine) {
  #shb .tabnav-line-x .tabnav-item:not(.current):hover {
    opacity: 0.6;
  }
}
#shb .tabnav-line-x .tabnav-item.current {
  opacity: 1;
}
#shb .tabnav-line-x .tabnav-indicator {
  position: relative;
  width: 100%;
  height: 2px;
  margin-top: 0.416667vw;
}
#shb .tabnav-line-x .tabnav-indicator::after {
  width: var(--tabnav-size, 0);
  height: 100%;
  transition-property: width, transform;
  transform: translateX(var(--tabnav-start, 0));
}
#shb .tabnav-line-x .tabnav-caption {
  font-size: 1.041667vw;
}
@media (max-aspect-ratio: 11/10) {
  #shb .tabnav-line-x .tabnav-container {
    margin-left: 0;
  }
  #shb .tabnav-line-x .tabnav-caption {
    font-size: 4.444444vw;
  }
}
#shb .tabnav-line-x .tabnav-indicator::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--indicator-background-color);
}
#shb .tabnav-line-x .tabnav-indicator::after {
  position: relative;
  display: block;
  overflow: hidden;
  content: "";
  transition-timing-function: ease-out;
  transition-duration: 400ms;
  border-radius: 999px;
  background-color: var(--indicator-foreground-color);
}
@media (max-aspect-ratio: 11/10) {
  #shb .tabnav-line-x .tabnav-list {
    gap: 7.777778vw;
    margin-top: -3.333333vw;
  }
  #shb .tabnav-line-x .tabnav-item {
    padding-top: 3.333333vw;
    padding-bottom: 3.333333vw;
    font-size: 4.444444vw;
  }
  #shb .tabnav-line-x .tabnav-indicator {
    height: 2px;
    margin-top: 0;
  }
}
#shb .section-carousel {
  overflow: hidden;
}
#shb .section-carousel .swiper {
  overflow: visible;
}
#shb .section-carousel .inline-video {
  pointer-events: none;
}
#shb .section-carousel .note-overlay {
  position: absolute;
  right: 1.25vw;
  bottom: 1.25vw;
}
#shb .section-carousel .slide-content {
  padding-top: 2.083333vw;
  padding-left: 0.833333vw;
  padding-right: 0.833333vw;
  cursor: auto;
}
@media (max-aspect-ratio: 11/10) {
  #shb .section-carousel .note-overlay {
    right: 3.333333vw;
    bottom: 3.333333vw;
  }
  #shb .section-carousel .slide-content {
    width: 100% !important;
    padding-top: 8.888889vw;
    padding-left: 5.555556vw;
    padding-right: 5.555556vw;
  }
}
#shb .carousel-col-2 .swiper-slide {
  width: 34.895833vw;
}
#shb .carousel-col-2 .slide-title {
  font-size: 1.25vw;
  font-weight: 700;
}
#shb .carousel-col-2 .slide-intro {
  font-size: 1.041667vw;
}
@media (max-aspect-ratio: 11/10) {
  #shb .carousel-col-2 .swiper {
    margin-left: 2.777778vw;
  }
  #shb .carousel-col-2 .swiper-slide {
    width: 88.333333vw;
  }
  #shb .carousel-col-2 .slide-title {
    font-size: 5vw;
  }
  #shb .carousel-col-2 .slide-intro {
    font-size: 4.444444vw;
  }
}
#shb .section-anchor {
  position: absolute;
  top: -50px;
}
@media (max-aspect-ratio: 11/10) {
  #shb .section-anchor {
    top: calc(27.777778vw - 56px - 40px);
  }
}
@media (max-aspect-ratio: 11/10) {
  #shb .section-design .section-anchor, #shb .section-driving .section-anchor {
    top: -96px;
  }
}
@media (max-aspect-ratio: 11/10) {
  #shb .section-space .section-anchor {
    top: calc(22.222222vw - 56px - 40px);
  }
}
#shb .subsection-design-01 .section-header {
  top: 8.333333vw;
}
@media (max-aspect-ratio: 11/10) {
  #shb .subsection-design-01 .section-header {
    margin-top: -2px;
    padding-bottom: 11.111111vw;
    background-color: #fff;
  }
  #shb .subsection-design-01 .section-header .start-headline {
    color: #000;
  }
}
#shb .subsection-space-01 .section-header, #shb .subsection-driving-01 .section-header {
  top: 7.8125vw;
}
#shb .subsection-driving-01 .section-header {
  top: 5.729167vw;
}
#shb .section-start {
  overflow: hidden;
}
#shb .section-start .section-header {
  position: absolute;
  z-index: 1;
  top: 6.25vw;
  right: 0;
  left: 0;
}
#shb .section-start .section-header h2, #shb .section-start .section-header h3 {
  color: #fff;
}
#shb .section-start .start-headline {
  position: relative;
  z-index: 10;
  display: grid;
  width: -moz-max-content;
  width: max-content;
  margin-right: auto;
  margin-left: auto;
  transform: translateX(-20.833333vw);
  opacity: 0;
}
#shb .section-start .start-headline > span {
  position: relative;
  will-change: transform;
  grid-area: 1/1/-1/-1;
}
#shb .section-start .start-headline > span:nth-child(1) {
  z-index: 9;
}
#shb .section-start .start-headline > span:not(:first-child) {
  opacity: 0.17;
}
#shb .section-start .start-headline > span:nth-child(2) {
  z-index: 8;
  transform: translateX(-1.041667vw);
  filter: blur(1px);
}
#shb .section-start .start-headline > span:nth-child(3) {
  z-index: 7;
  transform: translateX(-2.083333vw);
  filter: blur(2px);
}
#shb .section-start .start-headline > span:nth-child(4) {
  z-index: 6;
  transform: translateX(-3.125vw);
  filter: blur(3px);
}
#shb .section-start .start-headline > span:nth-child(5) {
  z-index: 5;
  transform: translateX(-4.166667vw);
  filter: blur(4px);
}
#shb .section-start .start-headline > span:nth-child(6) {
  z-index: 4;
  transform: translateX(-5.208333vw);
  filter: blur(5px);
}
#shb .section-start .start-headline > span:nth-child(7) {
  z-index: 3;
  transform: translateX(-6.25vw);
  filter: blur(6px);
}
#shb .section-start .start-headline > span:nth-child(8) {
  z-index: 2;
  transform: translateX(-7.291667vw);
  filter: blur(7px);
}
#shb .section-start .start-headline > span:nth-child(9) {
  z-index: 1;
  transform: translateX(-8.333333vw);
  filter: blur(8px);
}
#shb .section-start .section-picture {
  position: relative;
  overflow: hidden;
}
#shb .section-start .section-image {
  transform: scale(1.2);
}
#shb .section-start.animated .start-headline {
  transition: transform 1s, opacity 0.2s;
  transform: translate(0);
  opacity: 1;
}
#shb .section-start.animated .start-headline > span:not(:first-child) {
  transition: transform 1s, opacity 0.4s 0.6s;
  transform: translate(0);
  opacity: 0;
}
#shb .section-start.animated .section-image {
  transition: transform 1.2s;
  transform: scale(1);
}
@media (max-aspect-ratio: 11/10) {
  #shb .section-start .section-header {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
  }
  #shb .section-start .section-header h2, #shb .section-start .section-header h3 {
    color: #000;
  }
  #shb .section-start .start-headline {
    width: 100%;
    transform: translateX(-20.833333vw);
  }
  #shb .section-start .start-headline > span:not(:first-child) {
    opacity: 0.05;
  }
  #shb .section-start .start-headline > span:nth-child(2) {
    transform: translateX(-4.166667vw);
  }
  #shb .section-start .start-headline > span:nth-child(3) {
    transform: translateX(-8.333333vw);
  }
  #shb .section-start .start-headline > span:nth-child(4) {
    transform: translateX(-12.5vw);
  }
  #shb .section-start .start-headline > span:nth-child(5) {
    transform: translateX(-16.666667vw);
  }
  #shb .section-start .start-headline > span:nth-child(6) {
    transform: translateX(-20.833333vw);
  }
  #shb .section-start .start-headline > span:nth-child(7) {
    transform: translateX(-25vw);
  }
  #shb .section-start .start-headline > span:nth-child(8) {
    transform: translateX(-29.166667vw);
  }
  #shb .section-start .start-headline > span:nth-child(9) {
    transform: translateX(-33.333333vw);
  }
  #shb .section-start .section-image {
    transform: none;
  }
}
#shb .layout-style-01 {
  display: grid;
  grid-template-columns: 1fr 36.458333vw;
}
#shb .layout-style-01 .headline, #shb .layout-style-01 .intro {
  padding-left: 1.25vw;
  padding-right: 1.25vw;
}
#shb .layout-style-01 .intro {
  font-size: 1.041667vw;
}
#shb .layout-style-01 .picture, #shb .layout-style-01 .note {
  grid-column: span 2;
}
@media (max-aspect-ratio: 11/10) {
  #shb .layout-style-01 {
    grid-template-columns: 1fr;
  }
  #shb .layout-style-01 .headline, #shb .layout-style-01 .intro {
    padding-left: 0;
    padding-right: 0;
  }
  #shb .layout-style-01 .headline {
    order: 1;
  }
  #shb .layout-style-01 .intro {
    order: 4;
    font-size: 4.444444vw;
  }
  #shb .layout-style-01 .picture {
    order: 2;
  }
  #shb .layout-style-01 .note {
    order: 3;
  }
}
#shb .color-selection {
  position: relative;
  overflow: hidden;
}
@media (max-aspect-ratio: 11/10) {
  #shb .color-selection .autoplay-trigger {
    top: 90%;
  }
}
#shb .colournav-container {
  display: flex;
  align-items: center;
}
#shb .colournav-container .label-list {
  position: relative;
  display: flex;
  width: 100%;
  text-align: center;
}
#shb .colournav-container .colournav-list {
  display: flex;
  gap: 0.416667vw;
}
#shb .colournav-container .colournav-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.291667vw;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#shb .colournav-container .colournav-item.current {
  cursor: default;
}
#shb .colournav-container .colournav-item.current .colour-swatch-indicator {
  opacity: 1;
}
#shb .colournav-container .colour-swatch-indicator {
  position: absolute;
  transition: opacity 600ms cubic-bezier(0.46, 0.03, 0.52, 0.96);
  pointer-events: none;
  opacity: 0;
}
#shb .colournav-container .colour-swatch {
  width: 100%;
  pointer-events: none;
}
@media (max-aspect-ratio: 11/10) {
  #shb .colournav-container {
    position: relative;
    bottom: auto;
  }
  #shb .colournav-container .label-item {
    font-size: 6.666667vw;
  }
  #shb .colournav-container .colournav-list {
    gap: 3.333333vw;
  }
  #shb .colournav-container .colournav-item {
    width: 10.138889vw;
  }
  #shb .colournav-container .colour-swatch-indicator {
    transition-duration: 400ms;
  }
}
#shb .theme-dark {
  color: #b2b2b2;
  background-color: #000;
}
#shb .theme-dark h2, #shb .theme-dark h3, #shb .theme-dark .pagination-item {
  color: #fff;
}
#shb .theme-dark strong {
  color: #fff;
}
#shb .theme-dark .section-header h2, #shb .theme-dark .section-header h3 {
  color: #fff;
}
#shb .theme-dark .pagination-line {
  background-color: rgba(255, 255, 255, 0.4);
}
#shb .theme-dark .pagination-line::before {
  background-color: #fff;
}
#shb .theme-dark .arrownav-list .icon-path {
  stroke: #fff;
}

#shb {
  font-size: 1.145833vw;
  font-weight: 500;
  line-height: 1.6;
  color: #7a7a7a;
  background-color: #fff;
}
@media (max-aspect-ratio: 11/10) {
  #shb {
    font-size: 4.444444vw;
  }
}
#shb .section-hero .kv-container {
  position: relative;
  z-index: 2;
}
#shb .section-hero .hero-content {
  position: absolute;
  z-index: 10;
  top: 7.96875vw;
  left: 15.625vw;
}
#shb .section-hero .hero-logo {
  width: 25.885417vw;
}
#shb .section-hero .hero-slogn {
  font-size: 2.5vw;
  color: #fff;
}
#shb .section-hero .hero-picture-thumb {
  position: absolute;
  top: 0;
  left: 0;
}
#shb .section-hero .hero-picture {
  aspect-ratio: 1920/1098;
}
#shb .section-hero .note {
  position: absolute;
  z-index: 1;
  right: 9.375vw;
  bottom: 12.5vw;
}
@media (max-aspect-ratio: 11/10) {
  #shb .section-hero .hero-content {
    top: 32.361111vw;
    right: 0;
    left: 0;
    width: 60vw;
  }
  #shb .section-hero .hero-logo {
    width: 100%;
  }
  #shb .section-hero .hero-slogn {
    font-size: 5.833333vw;
  }
  #shb .section-hero .hero-picture {
    aspect-ratio: 720/1080;
  }
  #shb .section-hero .note {
    bottom: 5.555556vw;
    font-size: 2.777778vw;
  }
}
#shb .introduction-container {
  height: 300vh;
  margin-top: -100vh;
}
#shb .introduction-container .sticky {
  overflow: hidden;
  height: 100vh;
}
#shb .introduction-container .logo-container {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transform-origin: 53.6% 50%;
  background-color: #fff;
  mix-blend-mode: lighten;
}
#shb .introduction-container .logo-wrapper {
  transform: scale(0.1) translateZ(0);
}
#shb .introduction-container .logo-svg {
  width: 259.375vw;
  transform-origin: 50%;
}
#shb .introduction-container .intro-list {
  position: absolute;
  z-index: 2;
  top: calc(50% - 8.333333vw);
  right: 0;
  left: 0;
  display: grid;
  font-size: 1.458333vw;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
}
#shb .introduction-container .intro-item {
  grid-area: 1/1/-1/-1;
}
#shb .introduction-container .button-link {
  position: absolute;
  bottom: 5vw;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10.572917vw;
  height: 3.333333vw;
  cursor: pointer;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='205' height='64' viewBox='0 0 205 64'%3E%3Cg transform='translate(-851 -1008)'%3E%3Crect width='205' height='64' transform='translate(851 1008)' fill='none'/%3E%3Cpath d='M148.769.043a11.877,11.877,0,0,1,10.015,5.192l13.9,21.537a9.558,9.558,0,0,1,0,10.5l-13.9,21.537A11.877,11.877,0,0,1,148.769,64L-3.26,63.957a11.876,11.876,0,0,1-10.015-5.192l-13.9-21.537a9.558,9.558,0,0,1,0-10.5l13.9-21.537A11.876,11.876,0,0,1-3.26,0Z' transform='translate(880.746 1008)'/%3E%3C/g%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='205' height='64' viewBox='0 0 205 64'%3E%3Cg transform='translate(-851 -1008)'%3E%3Crect width='205' height='64' transform='translate(851 1008)' fill='none'/%3E%3Cpath d='M148.769.043a11.877,11.877,0,0,1,10.015,5.192l13.9,21.537a9.558,9.558,0,0,1,0,10.5l-13.9,21.537A11.877,11.877,0,0,1,148.769,64L-3.26,63.957a11.876,11.876,0,0,1-10.015-5.192l-13.9-21.537a9.558,9.558,0,0,1,0-10.5l13.9-21.537A11.876,11.876,0,0,1-3.26,0Z' transform='translate(880.746 1008)'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}
@media (hover: hover) and (pointer: fine) {
  #shb .introduction-container .button-link:hover {
    background-color: rgba(0, 0, 0, 0.12);
  }
}
#shb .introduction-container .button-copy {
  flex-shrink: 0;
  color: #fff;
  font-size: 0.9375vw;
}
@media (max-aspect-ratio: 11/10) {
  #shb .introduction-container {
    height: auto;
    margin-top: 0;
  }
  #shb .introduction-container .sticky {
    position: relative;
    overflow: hidden;
    height: auto;
  }
  #shb .introduction-container .logo-container {
    transform-origin: 59.63% 50%;
  }
  #shb .introduction-container .logo-svg {
    width: 690.277778vw;
  }
  #shb .introduction-container .xs-trigger {
    position: absolute;
    top: 90%;
  }
  #shb .introduction-container .video-container {
    aspect-ratio: 720/960;
  }
  #shb .introduction-container .intro-list {
    top: calc(50% - 11.111111vw);
    display: block;
  }
  #shb .introduction-container .intro-item {
    font-size: 3.888889vw;
  }
  #shb .introduction-container.animated .intro-item {
    transition: opacity 0.8s 0.8s ease-in, transform 0.8s 0.8s cubic-bezier(0.26, 0.67, 0.48, 0.91);
  }
  #shb .introduction-container.animated .intro-item-02 {
    transition-delay: 1s;
  }
  #shb .introduction-container .button-link {
    bottom: 11.111111vw;
    width: 42.222222vw;
    height: 13.333333vw;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='306' height='96' viewBox='0 0 306 96'%3E%3Cg transform='translate(-198 -401)'%3E%3Crect width='306' height='96' transform='translate(198 401)' fill='none'/%3E%3Cpath d='M237.09.064a17.777,17.777,0,0,1,15,7.788L272.9,40.157a14.357,14.357,0,0,1,0,15.75L252.088,88.212a17.777,17.777,0,0,1-15,7.788L9.42,95.936a17.777,17.777,0,0,1-15-7.788L-26.393,55.843a14.357,14.357,0,0,1,0-15.75L-5.578,7.788A17.777,17.777,0,0,1,9.42,0Z' transform='translate(227.745 401)'/%3E%3C/g%3E%3C/svg%3E");
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='306' height='96' viewBox='0 0 306 96'%3E%3Cg transform='translate(-198 -401)'%3E%3Crect width='306' height='96' transform='translate(198 401)' fill='none'/%3E%3Cpath d='M237.09.064a17.777,17.777,0,0,1,15,7.788L272.9,40.157a14.357,14.357,0,0,1,0,15.75L252.088,88.212a17.777,17.777,0,0,1-15,7.788L9.42,95.936a17.777,17.777,0,0,1-15-7.788L-26.393,55.843a14.357,14.357,0,0,1,0-15.75L-5.578,7.788A17.777,17.777,0,0,1,9.42,0Z' transform='translate(227.745 401)'/%3E%3C/g%3E%3C/svg%3E");
  }
  #shb .introduction-container .button-copy {
    font-size: 3.888889vw;
  }
}
@media (max-aspect-ratio: 11/10) {
  #shb.no-inline-video .introduction-container .intro-list {
    top: 26.388889vw;
    transform: none;
    display: block;
  }
}
#shb .section-highlights {
  overflow: hidden;
}
#shb .section-highlights .swiper-slide {
  overflow: hidden;
}
#shb .section-highlights .swiper-slide:not(.swiper-slide-active) {
  cursor: pointer;
}
#shb .section-highlights .slide-media {
  width: 100%;
  height: 38.541667vw;
}
#shb .section-highlights .slide-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#shb .section-highlights .slide-content {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  margin: 2.291667vw 2.5vw;
  font-size: 1.666667vw;
  text-align: center;
  color: #fff;
}
#shb .section-highlights .nav-container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
}
#shb .section-highlights .nav-wrapper {
  display: flex;
  align-items: center;
}
#shb .section-highlights .arrownav-list {
  margin-left: 2.083333vw;
}
@media (max-aspect-ratio: 11/10) {
  #shb .section-highlights .slide-media {
    height: 125vw;
  }
  #shb .section-highlights .slide-content {
    margin: 10vw 3.333333vw;
    font-size: 5.555556vw;
  }
  #shb .section-highlights .nav-wrapper {
    justify-content: space-between;
    width: 72.222222vw;
  }
  #shb .section-highlights .arrownav-list {
    margin-left: 0;
  }
}
#shb .subsection-design-01 .section-footer {
  position: absolute;
  right: 0;
  bottom: 8.333333vw;
  left: 0;
}
#shb .subsection-design-01 .stat-list {
  display: grid;
  justify-content: center;
  gap: 3.333333vw;
  white-space: nowrap;
  grid-template-columns: repeat(4, auto);
}
#shb .subsection-design-01 .stat-item {
  min-width: 10.9375vw;
  padding-top: 0.416667vw;
  border-top: 1px solid #d5d5d5;
}
#shb .subsection-design-01 .stat-content {
  color: #fdfdfd;
}
#shb .subsection-design-01 .stat-value {
  font-size: 2.916667vw;
  font-weight: 300;
  line-height: 1.25;
}
#shb .subsection-design-01 .stat-unit {
  font-size: 1.25vw;
  font-weight: 400;
}
#shb .subsection-design-01 .stat-caption {
  display: block;
  margin-top: 0.416667vw;
  font-size: 1.041667vw;
}
@media (max-aspect-ratio: 11/10) {
  #shb .subsection-design-01 .section-footer {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: -22.222222vw;
  }
  #shb .subsection-design-01 .stat-list {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    gap: 11.111111vw 16.666667vw;
    grid-template-columns: repeat(2, auto);
  }
  #shb .subsection-design-01 .stat-item {
    min-width: none;
    padding-top: 1.111111vw;
  }
  #shb .subsection-design-01 .stat-value {
    font-size: 8.888889vw;
  }
  #shb .subsection-design-01 .stat-unit {
    font-size: 3.888889vw;
  }
  #shb .subsection-design-01 .stat-caption {
    margin-top: 1.111111vw;
    font-size: 3.888889vw;
  }
}
#shb .subsection-design-02 {
  overflow: hidden;
}
#shb .subsection-design-02 .text-content {
  position: absolute;
  z-index: 10;
  top: 5.9375vw;
  right: 0;
  left: 0;
}
#shb .subsection-design-02 .swiper-wrapper {
  position: absolute;
  inset: 0;
}
#shb .subsection-design-02 .swiper-slide {
  height: 100%;
}
#shb .subsection-design-02 .gallery-wrapper {
  display: grid;
}
#shb .subsection-design-02 .gallery-slide {
  display: grid;
  transition-delay: 0.8s;
  transition-timing-function: cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transition-duration: 0s;
  transition-property: clip-path;
  grid-area: 1/1/-1/-1;
}
#shb .subsection-design-02 .gallery-slide.current {
  z-index: 1;
  transition-delay: 0s;
  transition-duration: 0.8s;
  clip-path: polygon(0% 0%, 100.2% 0%, 100.2% 100.2%, 0% 100.2%);
}
#shb .subsection-design-02 .gallery-slide.current .picture {
  transform: scale(1);
}
#shb .subsection-design-02 .gallery-slide.current .picture-logo {
  transition-delay: 0.3s;
}
#shb .subsection-design-02 .gallery-slide:not(.current) .picture-logo {
  transition-timing-function: cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transition-duration: 0.6s;
}
#shb .subsection-design-02 .gallery-slide.left {
  clip-path: polygon(100.2% 0%, 100.2% 0%, 100.2% 100.2%, 100.2% 100.2%);
}
#shb .subsection-design-02 .gallery-slide.left .picture-logo {
  transform: translate3d(100%, 0, 0);
}
#shb .subsection-design-02 .gallery-slide.right {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100.2%, 0% 100.2%);
}
#shb .subsection-design-02 .gallery-slide.right .picture-logo {
  transform: translate3d(-100%, 0, 0);
}
#shb .subsection-design-02 .picture-logo {
  position: absolute;
  z-index: 1;
  top: 13.385417vw;
  right: 0;
  left: 0;
  transition: transform 0.7s;
  mix-blend-mode: overlay;
}
#shb .subsection-design-02 .picture {
  transition: transform 0.8s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transform: scale(1.1);
  grid-area: 1/1/-1/-1;
}
#shb .subsection-design-02 .picture-02 {
  position: relative;
  z-index: 2;
}
#shb .subsection-design-02 .icon-logo {
  width: auto;
  height: 15vw;
}
#shb .subsection-design-02 .content-container {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 8.333333vw;
  left: 0;
}
#shb .subsection-design-02 .colournav-list {
  justify-content: center;
}
#shb .subsection-design-02 .intro {
  width: 24.166667vw;
  font-size: 1.041667vw;
  color: #ededed;
}
#shb .subsection-design-02 .widget-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#shb .subsection-design-02 .colournav-container {
  align-items: center;
}
#shb .subsection-design-02 .stack-list {
  flex-shrink: 0;
  margin-left: 2.083333vw;
}
#shb .subsection-design-02 .stack-item {
  display: flex;
  align-items: baseline;
  color: #fff;
}
#shb .subsection-design-02 .label-item {
  font-size: 1.25vw;
  font-weight: 500;
}
#shb .subsection-design-02 .label-intro {
  margin-left: 2.083333vw;
  font-size: 1.041667vw;
}
#shb .subsection-design-02 .modal-button {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  width: 8.489583vw;
  margin-left: 4.166667vw;
  cursor: pointer;
}
#shb .subsection-design-02 .modal-button .button-background {
  transition: opacity 300ms ease-in-out;
  fill: rgba(0, 0, 0, 0.5);
}
#shb .subsection-design-02 .modal-button .button-copy {
  position: absolute;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  #shb .subsection-design-02 .modal-button:hover .button-background {
    opacity: 0.6;
  }
}
@media (max-aspect-ratio: 11/10) {
  #shb .subsection-design-02 .text-content {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
  }
  #shb .subsection-design-02 .gallery-slide {
    transition-delay: 0.6s;
  }
  #shb .subsection-design-02 .gallery-slide.current {
    transition-duration: 0.6s;
  }
  #shb .subsection-design-02 .gallery-slide:not(.current) .picture-logo {
    transition-timing-function: cubic-bezier(0.46, 0.03, 0.52, 0.96);
    transition-duration: 0.4s;
  }
  #shb .subsection-design-02 .picture-logo {
    top: 15vw;
    transition: transform 0.5s;
  }
  #shb .subsection-design-02 .picture {
    transition: transform 0.6s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  }
  #shb .subsection-design-02 .icon-logo {
    height: 18.611111vw;
  }
  #shb .subsection-design-02 .content-container {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    display: grid;
    justify-content: center;
  }
  #shb .subsection-design-02 .intro {
    order: 2;
    width: 88.888889vw;
    font-size: 4.444444vw;
    color: #8e8e8e;
  }
  #shb .subsection-design-02 .widget-container {
    display: grid;
    justify-content: center;
    order: 1;
  }
  #shb .subsection-design-02 .colournav-container {
    display: flex;
    flex-direction: column;
  }
  #shb .subsection-design-02 .colournav-list {
    order: 2;
  }
  #shb .subsection-design-02 .stack-list {
    order: 1;
    margin-left: 0;
    text-align: center;
  }
  #shb .subsection-design-02 .stack-item {
    align-items: center;
    flex-direction: column;
  }
  #shb .subsection-design-02 .label-item {
    font-size: 4.444444vw;
  }
  #shb .subsection-design-02 .label-intro {
    margin-left: 0;
    font-size: 3.888889vw;
    color: #b2b2b2;
  }
  #shb .subsection-design-02 .modal-button {
    position: relative;
    right: auto;
    width: 30.138889vw;
    margin-right: auto;
    margin-left: auto;
  }
  #shb .subsection-design-02 .modal-button .button-background {
    fill: #333;
  }
  #shb .subsection-design-02 .modal-button .button-copy {
    font-size: 3.888889vw;
  }
}
#shb .modal-design-02 {
  transition: clip-path 0.8s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  clip-path: polygon(200.2% -0.02%, 100.2% -0.02%, 100.2% 100.2%, 100.2% 100.2%);
}
#shb .modal-design-02.modal-open {
  clip-path: polygon(-0.02% -0.02%, 200.2% -0.02%, 100.2% 100.2%, -100.2% 100.2%);
}
#shb .modal-design-02.modal-open .modal-swiper {
  transform: scale(1);
}
#shb .modal-design-02 .modal-swiper {
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transform: scale(1.1);
  transform-origin: left top;
}
#shb .modal-design-02 .swiper-slide {
  overflow: hidden;
  height: 100vh;
}
#shb .modal-design-02 .colournav-container {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 5.208333vw;
  left: 0;
  display: grid;
  justify-content: center;
}
#shb .modal-design-02 .colournav-list {
  gap: 0.833333vw;
}
#shb .modal-design-02 .colournav-item {
  width: 2.1875vw;
}
#shb .modal-design-02 .stack-item {
  font-size: 1.666667vw;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
}
@media (max-aspect-ratio: 11/10) {
  #shb .modal-design-02 .modal-swiper {
    height: auto;
  }
  #shb .modal-design-02 .swiper-wrapper {
    height: auto;
  }
  #shb .modal-design-02 .swiper-slide {
    height: auto;
  }
  #shb .modal-design-02 .colournav-container {
    position: relative;
    z-index: 10;
    right: auto;
    bottom: auto;
    left: auto;
    padding-top: 8.888889vw;
    background-color: #000;
  }
  #shb .modal-design-02 .colournav-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  #shb .modal-design-02 .colournav-item {
    width: 10vw;
  }
  #shb .modal-design-02 .stack-item {
    font-size: 3.888889vw;
  }
}
#shb .subsection-design-03 {
  overflow: hidden;
}
#shb .subsection-design-03 .section-container {
  position: relative;
  display: grid;
  overflow: hidden;
}
#shb .subsection-design-03 .section-item {
  grid-area: 1/1/-1/-1;
}
#shb .subsection-design-03 .lg-content {
  position: absolute;
  z-index: 10;
  top: 8.020833vw;
  right: 0;
  left: 0;
}
#shb .subsection-design-03 .modal-button {
  position: absolute;
  right: 0;
  bottom: 8.333333vw;
  left: 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  width: 11.09375vw;
  cursor: pointer;
}
#shb .subsection-design-03 .button-content {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.625vw;
}
#shb .subsection-design-03 .button-icon {
  flex-shrink: 0;
  width: 3.229167vw;
  aspect-ratio: 62/16;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 62 16'%3E%3Cpath d='M6202.518,10490.582a.92.92,0,1,1,.919.921A.92.92,0,0,1,6202.518,10490.582Zm-3.067,0a.922.922,0,1,1,.921.921A.923.923,0,0,1,6199.45,10490.582Zm-3.065,0a.922.922,0,1,1,.922.921A.923.923,0,0,1,6196.385,10490.582Zm-3.064,0a.92.92,0,1,1,.921.921A.922.922,0,0,1,6193.321,10490.582Zm-3.065,0a.92.92,0,1,1,.919.921A.922.922,0,0,1,6190.256,10490.582Zm-8.268,0a.745.745,0,1,1,.745.745A.748.748,0,0,1,6181.988,10490.582Zm-3.068,0a.747.747,0,1,1,.748.745A.751.751,0,0,1,6178.92,10490.582Zm-2.326.745h-.006a.747.747,0,0,1,0-1.493h.013a.747.747,0,1,1,0,1.493Zm-3.819-.745a.747.747,0,1,1,.748.745A.749.749,0,0,1,6172.775,10490.582Zm-3.064,0a.746.746,0,1,1,.745.745A.748.748,0,0,1,6169.71,10490.582Zm-3.065,0a.746.746,0,1,1,.745.745A.748.748,0,0,1,6166.646,10490.582Zm-3.065,0a.747.747,0,1,1,.745.745A.748.748,0,0,1,6163.581,10490.582Zm-7.449,0a.43.43,0,1,1,.432.432A.432.432,0,0,1,6156.132,10490.582Zm-3.067,0a.432.432,0,1,1,.432.432A.433.433,0,0,1,6153.064,10490.582Zm-3.065,0a.432.432,0,1,1,.432.432A.433.433,0,0,1,6150,10490.582Zm55.6-3.415a.922.922,0,1,1,.921.921A.923.923,0,0,1,6205.6,10487.167Zm-3.065,0a.922.922,0,1,1,.922.921A.923.923,0,0,1,6202.531,10487.167Zm-3.064,0a.92.92,0,1,1,.921.921A.922.922,0,0,1,6199.466,10487.167Zm-3.065,0a.92.92,0,1,1,.919.921A.922.922,0,0,1,6196.4,10487.167Zm-3.067,0a.921.921,0,1,1,.921.921A.922.922,0,0,1,6193.334,10487.167Zm-8.268,0a.747.747,0,1,1,.745.745A.748.748,0,0,1,6185.066,10487.167Zm-3.064,0a.746.746,0,1,1,.745.745A.748.748,0,0,1,6182,10487.167Zm-2.327.745h-.006a.747.747,0,1,1,0-1.493h.013a.747.747,0,1,1,0,1.493Zm-3.819-.745a.746.746,0,1,1,.745.745A.748.748,0,0,1,6175.856,10487.167Zm-3.065,0a.745.745,0,1,1,.745.745A.748.748,0,0,1,6172.791,10487.167Zm-3.067,0a.746.746,0,1,1,.748.745A.751.751,0,0,1,6169.724,10487.167Zm-3.065,0a.746.746,0,1,1,.748.745A.751.751,0,0,1,6166.659,10487.167Zm-7.449,0a.432.432,0,1,1,.432.432A.433.433,0,0,1,6159.21,10487.167Zm-3.065,0a.432.432,0,1,1,.432.432A.433.433,0,0,1,6156.145,10487.167Zm-3.065,0a.432.432,0,1,1,.432.432A.432.432,0,0,1,6153.08,10487.167Zm55.6-3.415a.92.92,0,1,1,.922.921A.923.923,0,0,1,6208.676,10483.752Zm-3.065,0a.92.92,0,1,1,.922.921A.923.923,0,0,1,6205.611,10483.752Zm-3.064,0a.92.92,0,1,1,.919.921A.922.922,0,0,1,6202.547,10483.752Zm-3.068,0a.922.922,0,1,1,.922.921A.923.923,0,0,1,6199.479,10483.752Zm-3.064,0a.921.921,0,1,1,.921.921A.922.922,0,0,1,6196.415,10483.752Zm-8.276,0a.747.747,0,1,1,.745.745A.748.748,0,0,1,6188.139,10483.752Zm-3.065,0a.747.747,0,1,1,.746.745A.749.749,0,0,1,6185.074,10483.752Zm-3.064,0a.745.745,0,1,1,.745.745A.748.748,0,0,1,6182.009,10483.752Zm-3.067,0a.746.746,0,1,1,.748.745A.751.751,0,0,1,6178.942,10483.752Zm-3.065,0a.746.746,0,1,1,.748.745A.749.749,0,0,1,6175.877,10483.752Zm-3.065,0a.746.746,0,1,1,.745.745A.748.748,0,0,1,6172.812,10483.752Zm-3.065,0a.747.747,0,1,1,.745.745A.748.748,0,0,1,6169.747,10483.752Zm-7.457,0a.432.432,0,1,1,.432.432A.431.431,0,0,1,6162.291,10483.752Zm-3.065,0a.43.43,0,1,1,.432.432A.43.43,0,0,1,6159.226,10483.752Zm-3.065,0a.431.431,0,1,1,.432.432A.43.43,0,0,1,6156.161,10483.752Zm49.435-3.415a.922.922,0,1,1,.921.919A.923.923,0,0,1,6205.6,10480.337Zm-3.065,0a.922.922,0,1,1,.922.919A.923.923,0,0,1,6202.531,10480.337Zm-3.064,0a.92.92,0,1,1,.921.919A.922.922,0,0,1,6199.466,10480.337Zm-3.065,0a.92.92,0,1,1,.919.919A.922.922,0,0,1,6196.4,10480.337Zm-3.067,0a.921.921,0,1,1,.921.919A.922.922,0,0,1,6193.334,10480.337Zm-8.268,0a.747.747,0,1,1,.745.745A.748.748,0,0,1,6185.066,10480.337Zm-3.064,0a.746.746,0,1,1,.745.745A.748.748,0,0,1,6182,10480.337Zm-3.065,0a.746.746,0,1,1,.745.745A.748.748,0,0,1,6178.937,10480.337Zm-3.065,0a.745.745,0,1,1,.745.745A.748.748,0,0,1,6175.872,10480.337Zm-2.328.745h-.008a.747.747,0,0,1,0-1.493h.016a.747.747,0,0,1,0,1.493Zm-3.82-.745a.746.746,0,1,1,.748.745A.751.751,0,0,1,6169.724,10480.337Zm-3.065,0a.746.746,0,1,1,.748.745A.751.751,0,0,1,6166.659,10480.337Zm-7.449,0a.432.432,0,1,1,.432.432A.431.431,0,0,1,6159.21,10480.337Zm-3.065,0a.432.432,0,1,1,.432.432A.431.431,0,0,1,6156.145,10480.337Zm-3.065,0a.432.432,0,1,1,.432.432A.43.43,0,0,1,6153.08,10480.337Zm49.438-3.415a.92.92,0,1,1,.919.919A.92.92,0,0,1,6202.518,10476.922Zm-3.067,0a.922.922,0,1,1,.921.919A.923.923,0,0,1,6199.45,10476.922Zm-3.065,0a.922.922,0,1,1,.922.919A.923.923,0,0,1,6196.385,10476.922Zm-3.064,0a.92.92,0,1,1,.921.919A.922.922,0,0,1,6193.321,10476.922Zm-3.065,0a.92.92,0,1,1,.919.919A.922.922,0,0,1,6190.256,10476.922Zm-8.276,0a.745.745,0,1,1,.745.745A.748.748,0,0,1,6181.98,10476.922Zm-3.064,0a.745.745,0,1,1,.745.745A.748.748,0,0,1,6178.916,10476.922Zm-3.068,0a.747.747,0,1,1,.748.745A.751.751,0,0,1,6175.848,10476.922Zm-3.064,0a.746.746,0,1,1,.745.745A.748.748,0,0,1,6172.783,10476.922Zm-3.065,0a.746.746,0,1,1,.745.745A.748.748,0,0,1,6169.718,10476.922Zm-3.065,0a.745.745,0,1,1,.745.745A.748.748,0,0,1,6166.653,10476.922Zm-3.067,0a.746.746,0,1,1,.748.745A.751.751,0,0,1,6163.586,10476.922Zm-7.454,0a.43.43,0,1,1,.432.429A.43.43,0,0,1,6156.132,10476.922Zm-3.067,0a.432.432,0,1,1,.432.429A.431.431,0,0,1,6153.064,10476.922Zm-3.065,0a.432.432,0,1,1,.432.429A.431.431,0,0,1,6150,10476.922Z' transform='translate(-6149.26 -10475.75)'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 62 16'%3E%3Cpath d='M6202.518,10490.582a.92.92,0,1,1,.919.921A.92.92,0,0,1,6202.518,10490.582Zm-3.067,0a.922.922,0,1,1,.921.921A.923.923,0,0,1,6199.45,10490.582Zm-3.065,0a.922.922,0,1,1,.922.921A.923.923,0,0,1,6196.385,10490.582Zm-3.064,0a.92.92,0,1,1,.921.921A.922.922,0,0,1,6193.321,10490.582Zm-3.065,0a.92.92,0,1,1,.919.921A.922.922,0,0,1,6190.256,10490.582Zm-8.268,0a.745.745,0,1,1,.745.745A.748.748,0,0,1,6181.988,10490.582Zm-3.068,0a.747.747,0,1,1,.748.745A.751.751,0,0,1,6178.92,10490.582Zm-2.326.745h-.006a.747.747,0,0,1,0-1.493h.013a.747.747,0,1,1,0,1.493Zm-3.819-.745a.747.747,0,1,1,.748.745A.749.749,0,0,1,6172.775,10490.582Zm-3.064,0a.746.746,0,1,1,.745.745A.748.748,0,0,1,6169.71,10490.582Zm-3.065,0a.746.746,0,1,1,.745.745A.748.748,0,0,1,6166.646,10490.582Zm-3.065,0a.747.747,0,1,1,.745.745A.748.748,0,0,1,6163.581,10490.582Zm-7.449,0a.43.43,0,1,1,.432.432A.432.432,0,0,1,6156.132,10490.582Zm-3.067,0a.432.432,0,1,1,.432.432A.433.433,0,0,1,6153.064,10490.582Zm-3.065,0a.432.432,0,1,1,.432.432A.433.433,0,0,1,6150,10490.582Zm55.6-3.415a.922.922,0,1,1,.921.921A.923.923,0,0,1,6205.6,10487.167Zm-3.065,0a.922.922,0,1,1,.922.921A.923.923,0,0,1,6202.531,10487.167Zm-3.064,0a.92.92,0,1,1,.921.921A.922.922,0,0,1,6199.466,10487.167Zm-3.065,0a.92.92,0,1,1,.919.921A.922.922,0,0,1,6196.4,10487.167Zm-3.067,0a.921.921,0,1,1,.921.921A.922.922,0,0,1,6193.334,10487.167Zm-8.268,0a.747.747,0,1,1,.745.745A.748.748,0,0,1,6185.066,10487.167Zm-3.064,0a.746.746,0,1,1,.745.745A.748.748,0,0,1,6182,10487.167Zm-2.327.745h-.006a.747.747,0,1,1,0-1.493h.013a.747.747,0,1,1,0,1.493Zm-3.819-.745a.746.746,0,1,1,.745.745A.748.748,0,0,1,6175.856,10487.167Zm-3.065,0a.745.745,0,1,1,.745.745A.748.748,0,0,1,6172.791,10487.167Zm-3.067,0a.746.746,0,1,1,.748.745A.751.751,0,0,1,6169.724,10487.167Zm-3.065,0a.746.746,0,1,1,.748.745A.751.751,0,0,1,6166.659,10487.167Zm-7.449,0a.432.432,0,1,1,.432.432A.433.433,0,0,1,6159.21,10487.167Zm-3.065,0a.432.432,0,1,1,.432.432A.433.433,0,0,1,6156.145,10487.167Zm-3.065,0a.432.432,0,1,1,.432.432A.432.432,0,0,1,6153.08,10487.167Zm55.6-3.415a.92.92,0,1,1,.922.921A.923.923,0,0,1,6208.676,10483.752Zm-3.065,0a.92.92,0,1,1,.922.921A.923.923,0,0,1,6205.611,10483.752Zm-3.064,0a.92.92,0,1,1,.919.921A.922.922,0,0,1,6202.547,10483.752Zm-3.068,0a.922.922,0,1,1,.922.921A.923.923,0,0,1,6199.479,10483.752Zm-3.064,0a.921.921,0,1,1,.921.921A.922.922,0,0,1,6196.415,10483.752Zm-8.276,0a.747.747,0,1,1,.745.745A.748.748,0,0,1,6188.139,10483.752Zm-3.065,0a.747.747,0,1,1,.746.745A.749.749,0,0,1,6185.074,10483.752Zm-3.064,0a.745.745,0,1,1,.745.745A.748.748,0,0,1,6182.009,10483.752Zm-3.067,0a.746.746,0,1,1,.748.745A.751.751,0,0,1,6178.942,10483.752Zm-3.065,0a.746.746,0,1,1,.748.745A.749.749,0,0,1,6175.877,10483.752Zm-3.065,0a.746.746,0,1,1,.745.745A.748.748,0,0,1,6172.812,10483.752Zm-3.065,0a.747.747,0,1,1,.745.745A.748.748,0,0,1,6169.747,10483.752Zm-7.457,0a.432.432,0,1,1,.432.432A.431.431,0,0,1,6162.291,10483.752Zm-3.065,0a.43.43,0,1,1,.432.432A.43.43,0,0,1,6159.226,10483.752Zm-3.065,0a.431.431,0,1,1,.432.432A.43.43,0,0,1,6156.161,10483.752Zm49.435-3.415a.922.922,0,1,1,.921.919A.923.923,0,0,1,6205.6,10480.337Zm-3.065,0a.922.922,0,1,1,.922.919A.923.923,0,0,1,6202.531,10480.337Zm-3.064,0a.92.92,0,1,1,.921.919A.922.922,0,0,1,6199.466,10480.337Zm-3.065,0a.92.92,0,1,1,.919.919A.922.922,0,0,1,6196.4,10480.337Zm-3.067,0a.921.921,0,1,1,.921.919A.922.922,0,0,1,6193.334,10480.337Zm-8.268,0a.747.747,0,1,1,.745.745A.748.748,0,0,1,6185.066,10480.337Zm-3.064,0a.746.746,0,1,1,.745.745A.748.748,0,0,1,6182,10480.337Zm-3.065,0a.746.746,0,1,1,.745.745A.748.748,0,0,1,6178.937,10480.337Zm-3.065,0a.745.745,0,1,1,.745.745A.748.748,0,0,1,6175.872,10480.337Zm-2.328.745h-.008a.747.747,0,0,1,0-1.493h.016a.747.747,0,0,1,0,1.493Zm-3.82-.745a.746.746,0,1,1,.748.745A.751.751,0,0,1,6169.724,10480.337Zm-3.065,0a.746.746,0,1,1,.748.745A.751.751,0,0,1,6166.659,10480.337Zm-7.449,0a.432.432,0,1,1,.432.432A.431.431,0,0,1,6159.21,10480.337Zm-3.065,0a.432.432,0,1,1,.432.432A.431.431,0,0,1,6156.145,10480.337Zm-3.065,0a.432.432,0,1,1,.432.432A.43.43,0,0,1,6153.08,10480.337Zm49.438-3.415a.92.92,0,1,1,.919.919A.92.92,0,0,1,6202.518,10476.922Zm-3.067,0a.922.922,0,1,1,.921.919A.923.923,0,0,1,6199.45,10476.922Zm-3.065,0a.922.922,0,1,1,.922.919A.923.923,0,0,1,6196.385,10476.922Zm-3.064,0a.92.92,0,1,1,.921.919A.922.922,0,0,1,6193.321,10476.922Zm-3.065,0a.92.92,0,1,1,.919.919A.922.922,0,0,1,6190.256,10476.922Zm-8.276,0a.745.745,0,1,1,.745.745A.748.748,0,0,1,6181.98,10476.922Zm-3.064,0a.745.745,0,1,1,.745.745A.748.748,0,0,1,6178.916,10476.922Zm-3.068,0a.747.747,0,1,1,.748.745A.751.751,0,0,1,6175.848,10476.922Zm-3.064,0a.746.746,0,1,1,.745.745A.748.748,0,0,1,6172.783,10476.922Zm-3.065,0a.746.746,0,1,1,.745.745A.748.748,0,0,1,6169.718,10476.922Zm-3.065,0a.745.745,0,1,1,.745.745A.748.748,0,0,1,6166.653,10476.922Zm-3.067,0a.746.746,0,1,1,.748.745A.751.751,0,0,1,6163.586,10476.922Zm-7.454,0a.43.43,0,1,1,.432.429A.43.43,0,0,1,6156.132,10476.922Zm-3.067,0a.432.432,0,1,1,.432.429A.431.431,0,0,1,6153.064,10476.922Zm-3.065,0a.432.432,0,1,1,.432.429A.431.431,0,0,1,6150,10476.922Z' transform='translate(-6149.26 -10475.75)'/%3E%3C/svg%3E%0A");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}
#shb .subsection-design-03 .anim-light {
  animation: design-button-light 4s ease-in-out infinite;
  background-image: linear-gradient(90deg, #839cb7 40%, #eefaff, #839cb7 60%, #839cb7);
  background-position-x: 100%;
  background-size: 280% 100%;
}
#shb .subsection-design-03 .button-copy {
  font-size: 0.833333vw;
  animation-delay: 0.3s;
  white-space: nowrap;
}
@keyframes design-button-light {
  0% {
    background-position-x: 100%;
  }
  25%, 100% {
    background-position-x: 0;
  }
}
@media (max-aspect-ratio: 11/10) {
  #shb .subsection-design-03 .modal-button {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 45.277778vw;
  }
  #shb .subsection-design-03 .button-content {
    gap: 2.777778vw;
  }
  #shb .subsection-design-03 .button-icon {
    width: 13.611111vw;
    aspect-ratio: 98/35;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 98 35'%3E%3Cpath d='M10937.105,9008.66a1.4,1.4,0,1,1,1.4,1.405A1.4,1.4,0,0,1,10937.105,9008.66Zm-4.676,0a1.4,1.4,0,1,1,1.4,1.405A1.4,1.4,0,0,1,10932.43,9008.66Zm-4.677,0a1.4,1.4,0,1,1,1.405,1.405A1.405,1.405,0,0,1,10927.753,9008.66Zm-4.676,0a1.4,1.4,0,1,1,1.405,1.405A1.405,1.405,0,0,1,10923.077,9008.66Zm-4.676,0a1.4,1.4,0,1,1,1.4,1.405A1.406,1.406,0,0,1,10918.4,9008.66Zm-12.624,0a1.138,1.138,0,1,1,1.138,1.136A1.141,1.141,0,0,1,10905.777,9008.66Zm-4.674,0a1.138,1.138,0,1,1,1.139,1.136A1.14,1.14,0,0,1,10901.1,9008.66Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.136A1.141,1.141,0,0,1,10896.428,9008.66Zm-4.677,0a1.138,1.138,0,1,1,1.139,1.136A1.142,1.142,0,0,1,10891.751,9008.66Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.136A1.141,1.141,0,0,1,10887.075,9008.66Zm-4.674,0a1.138,1.138,0,1,1,1.136,1.136A1.139,1.139,0,0,1,10882.4,9008.66Zm-4.676,0a1.137,1.137,0,1,1,1.138,1.136A1.139,1.139,0,0,1,10877.726,9008.66Zm-11.376,0a.658.658,0,1,1,.66.657A.66.66,0,0,1,10866.35,9008.66Zm-4.674,0a.659.659,0,1,1,.657.657A.658.658,0,0,1,10861.676,9008.66Zm-4.676,0a.658.658,0,1,1,.657.657A.657.657,0,0,1,10857,9008.66Zm84.8-5.209a1.4,1.4,0,1,1,1.4,1.4A1.406,1.406,0,0,1,10941.8,9003.451Zm-4.679,0a1.4,1.4,0,1,1,1.407,1.4A1.408,1.408,0,0,1,10937.125,9003.451Zm-4.674,0a1.4,1.4,0,1,1,1.405,1.4A1.406,1.406,0,0,1,10932.451,9003.451Zm-4.676,0a1.4,1.4,0,1,1,1.405,1.4A1.406,1.406,0,0,1,10927.775,9003.451Zm-4.676,0a1.4,1.4,0,1,1,1.4,1.4A1.405,1.405,0,0,1,10923.1,9003.451Zm-12.613,0a1.138,1.138,0,1,1,1.138,1.138A1.141,1.141,0,0,1,10910.486,9003.451Zm-4.674,0a1.138,1.138,0,1,1,1.139,1.138A1.141,1.141,0,0,1,10905.813,9003.451Zm-3.55,1.138h-.013a1.138,1.138,0,0,1,0-2.276h.024a1.138,1.138,0,1,1,0,2.276Zm-5.824-1.138a1.138,1.138,0,1,1,1.138,1.138A1.139,1.139,0,0,1,10896.438,9003.451Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.138A1.14,1.14,0,0,1,10891.763,9003.451Zm-4.677,0a1.138,1.138,0,1,1,1.139,1.138A1.141,1.141,0,0,1,10887.086,9003.451Zm-4.676,0a1.139,1.139,0,1,1,1.138,1.138A1.14,1.14,0,0,1,10882.41,9003.451Zm-11.359,0a.657.657,0,1,1,.657.656A.659.659,0,0,1,10871.051,9003.451Zm-4.677,0a.657.657,0,1,1,.657.656A.66.66,0,0,1,10866.374,9003.451Zm-4.676,0a.658.658,0,1,1,.657.656A.659.659,0,0,1,10861.7,9003.451Zm84.8-5.21a1.4,1.4,0,1,1,1.405,1.405A1.405,1.405,0,0,1,10946.5,8998.241Zm-4.676,0a1.4,1.4,0,1,1,1.405,1.405A1.405,1.405,0,0,1,10941.823,8998.241Zm-4.674,0a1.4,1.4,0,1,1,1.405,1.405A1.405,1.405,0,0,1,10937.149,8998.241Zm-4.676,0a1.4,1.4,0,1,1,1.4,1.405A1.405,1.405,0,0,1,10932.474,8998.241Zm-4.676,0a1.4,1.4,0,1,1,1.4,1.405A1.4,1.4,0,0,1,10927.8,8998.241Zm-12.613,0a1.138,1.138,0,1,1,1.138,1.138A1.14,1.14,0,0,1,10915.185,8998.241Zm-4.674,0a1.138,1.138,0,1,1,1.136,1.138A1.138,1.138,0,0,1,10910.511,8998.241Zm-3.549,1.138h-.011a1.138,1.138,0,1,1,0-2.275h.021a1.138,1.138,0,0,1,0,2.275Zm-5.825-1.138a1.138,1.138,0,1,1,1.138,1.138A1.138,1.138,0,0,1,10901.137,8998.241Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.138A1.139,1.139,0,0,1,10896.461,8998.241Zm-4.677,0a1.138,1.138,0,1,1,1.139,1.138A1.14,1.14,0,0,1,10891.784,8998.241Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.138A1.139,1.139,0,0,1,10887.108,8998.241Zm-11.362,0a.658.658,0,1,1,.66.657A.659.659,0,0,1,10875.746,8998.241Zm-4.674,0a.657.657,0,1,1,.657.657A.657.657,0,0,1,10871.072,8998.241Zm-4.676,0a.657.657,0,1,1,.657.657A.657.657,0,0,1,10866.4,8998.241Zm84.8-5.21a1.4,1.4,0,1,1,1.405,1.405A1.406,1.406,0,0,1,10951.2,8993.031Zm-4.673,0a1.4,1.4,0,1,1,1.4,1.405A1.405,1.405,0,0,1,10946.524,8993.031Zm-4.677,0a1.4,1.4,0,1,1,1.405,1.405A1.406,1.406,0,0,1,10941.848,8993.031Zm-4.676,0a1.4,1.4,0,1,1,1.4,1.405A1.406,1.406,0,0,1,10937.172,8993.031Zm-4.677,0a1.4,1.4,0,1,1,1.405,1.405A1.406,1.406,0,0,1,10932.5,8993.031Zm-12.623,0a1.138,1.138,0,1,1,1.138,1.139A1.14,1.14,0,0,1,10919.872,8993.031Zm-4.677,0a1.138,1.138,0,1,1,1.139,1.139A1.141,1.141,0,0,1,10915.2,8993.031Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.139A1.14,1.14,0,0,1,10910.52,8993.031Zm-4.674,0a1.137,1.137,0,1,1,1.136,1.139A1.138,1.138,0,0,1,10905.846,8993.031Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.139A1.14,1.14,0,0,1,10901.17,8993.031Zm-4.677,0a1.138,1.138,0,1,1,1.139,1.139A1.141,1.141,0,0,1,10896.493,8993.031Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.139A1.14,1.14,0,0,1,10891.817,8993.031Zm-11.373,0a.658.658,0,1,1,.66.66A.659.659,0,0,1,10880.444,8993.031Zm-4.674,0a.657.657,0,1,1,.657.66A.657.657,0,0,1,10875.771,8993.031Zm-4.676,0a.657.657,0,1,1,.657.66A.657.657,0,0,1,10871.095,8993.031Zm75.4-5.209a1.4,1.4,0,1,1,1.405,1.4A1.406,1.406,0,0,1,10946.5,8987.822Zm-4.676,0a1.4,1.4,0,1,1,1.405,1.4A1.406,1.406,0,0,1,10941.823,8987.822Zm-4.674,0a1.4,1.4,0,1,1,1.405,1.4A1.406,1.406,0,0,1,10937.149,8987.822Zm-4.676,0a1.4,1.4,0,1,1,1.4,1.4A1.406,1.406,0,0,1,10932.474,8987.822Zm-4.676,0a1.4,1.4,0,1,1,1.4,1.4A1.405,1.405,0,0,1,10927.8,8987.822Zm-12.613,0a1.138,1.138,0,1,1,1.138,1.138A1.141,1.141,0,0,1,10915.185,8987.822Zm-4.674,0a1.138,1.138,0,1,1,1.136,1.138A1.139,1.139,0,0,1,10910.511,8987.822Zm-4.676,0a1.137,1.137,0,1,1,1.138,1.138A1.139,1.139,0,0,1,10905.835,8987.822Zm-4.677,0a1.138,1.138,0,1,1,1.139,1.138A1.139,1.139,0,0,1,10901.158,8987.822Zm-3.549,1.138h-.011a1.138,1.138,0,0,1,0-2.276h.021a1.138,1.138,0,1,1,0,2.276Zm-5.825-1.138a1.138,1.138,0,1,1,1.139,1.138A1.141,1.141,0,0,1,10891.784,8987.822Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.138A1.14,1.14,0,0,1,10887.108,8987.822Zm-11.362,0a.658.658,0,1,1,.66.66A.659.659,0,0,1,10875.746,8987.822Zm-4.674,0a.657.657,0,1,1,.657.66A.657.657,0,0,1,10871.072,8987.822Zm-4.676,0a.657.657,0,1,1,.657.66A.657.657,0,0,1,10866.4,8987.822Zm75.407-5.207a1.4,1.4,0,1,1,1.4,1.4A1.407,1.407,0,0,1,10941.8,8982.615Zm-4.679,0a1.4,1.4,0,1,1,1.407,1.4A1.41,1.41,0,0,1,10937.125,8982.615Zm-4.674,0a1.4,1.4,0,1,1,1.405,1.4A1.408,1.408,0,0,1,10932.451,8982.615Zm-4.676,0a1.4,1.4,0,1,1,1.405,1.4A1.408,1.408,0,0,1,10927.775,8982.615Zm-4.676,0a1.4,1.4,0,1,1,1.4,1.4A1.407,1.407,0,0,1,10923.1,8982.615Zm-12.624,0a1.138,1.138,0,1,1,1.138,1.136A1.142,1.142,0,0,1,10910.476,8982.615Zm-4.674,0a1.137,1.137,0,1,1,1.136,1.136A1.14,1.14,0,0,1,10905.8,8982.615Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.136A1.142,1.142,0,0,1,10901.126,8982.615Zm-4.677,0a1.138,1.138,0,1,1,1.139,1.136A1.141,1.141,0,0,1,10896.449,8982.615Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.136A1.142,1.142,0,0,1,10891.773,8982.615Zm-4.677,0a1.138,1.138,0,1,1,1.139,1.136A1.143,1.143,0,0,1,10887.1,8982.615Zm-4.676,0a1.138,1.138,0,1,1,1.141,1.136A1.143,1.143,0,0,1,10882.421,8982.615Zm-11.37,0a.657.657,0,1,1,.657.657A.657.657,0,0,1,10871.051,8982.615Zm-4.677,0a.657.657,0,1,1,.657.657A.658.658,0,0,1,10866.374,8982.615Zm-4.676,0a.658.658,0,1,1,.657.657A.657.657,0,0,1,10861.7,8982.615Zm75.407-5.209a1.4,1.4,0,1,1,1.4,1.4A1.406,1.406,0,0,1,10937.105,8977.406Zm-4.676,0a1.4,1.4,0,1,1,1.4,1.4A1.406,1.406,0,0,1,10932.43,8977.406Zm-4.677,0a1.4,1.4,0,1,1,1.405,1.4A1.406,1.406,0,0,1,10927.753,8977.406Zm-4.676,0a1.4,1.4,0,1,1,1.405,1.4A1.406,1.406,0,0,1,10923.077,8977.406Zm-4.676,0a1.4,1.4,0,1,1,1.4,1.4A1.407,1.407,0,0,1,10918.4,8977.406Zm-12.613,0a1.138,1.138,0,1,1,1.141,1.138A1.14,1.14,0,0,1,10905.788,8977.406Zm-4.676,0a1.139,1.139,0,1,1,1.138,1.138A1.138,1.138,0,0,1,10901.112,8977.406Zm-4.674,0a1.138,1.138,0,1,1,1.138,1.138A1.137,1.137,0,0,1,10896.438,8977.406Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.138A1.138,1.138,0,0,1,10891.763,8977.406Zm-3.55,1.138h-.011a1.138,1.138,0,0,1,0-2.276h.022a1.138,1.138,0,0,1,0,2.276Zm-5.825-1.138a1.138,1.138,0,1,1,1.139,1.138A1.139,1.139,0,0,1,10882.388,8977.406Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.138A1.138,1.138,0,0,1,10877.712,8977.406Zm-11.362,0a.658.658,0,1,1,.66.656A.662.662,0,0,1,10866.35,8977.406Zm-4.674,0a.659.659,0,1,1,.657.656A.66.66,0,0,1,10861.676,8977.406Zm-4.676,0a.658.658,0,1,1,.657.656A.659.659,0,0,1,10857,8977.406Z' transform='translate(-10856.5 -8975.5)'/%3E%3C/svg%3E");
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 98 35'%3E%3Cpath d='M10937.105,9008.66a1.4,1.4,0,1,1,1.4,1.405A1.4,1.4,0,0,1,10937.105,9008.66Zm-4.676,0a1.4,1.4,0,1,1,1.4,1.405A1.4,1.4,0,0,1,10932.43,9008.66Zm-4.677,0a1.4,1.4,0,1,1,1.405,1.405A1.405,1.405,0,0,1,10927.753,9008.66Zm-4.676,0a1.4,1.4,0,1,1,1.405,1.405A1.405,1.405,0,0,1,10923.077,9008.66Zm-4.676,0a1.4,1.4,0,1,1,1.4,1.405A1.406,1.406,0,0,1,10918.4,9008.66Zm-12.624,0a1.138,1.138,0,1,1,1.138,1.136A1.141,1.141,0,0,1,10905.777,9008.66Zm-4.674,0a1.138,1.138,0,1,1,1.139,1.136A1.14,1.14,0,0,1,10901.1,9008.66Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.136A1.141,1.141,0,0,1,10896.428,9008.66Zm-4.677,0a1.138,1.138,0,1,1,1.139,1.136A1.142,1.142,0,0,1,10891.751,9008.66Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.136A1.141,1.141,0,0,1,10887.075,9008.66Zm-4.674,0a1.138,1.138,0,1,1,1.136,1.136A1.139,1.139,0,0,1,10882.4,9008.66Zm-4.676,0a1.137,1.137,0,1,1,1.138,1.136A1.139,1.139,0,0,1,10877.726,9008.66Zm-11.376,0a.658.658,0,1,1,.66.657A.66.66,0,0,1,10866.35,9008.66Zm-4.674,0a.659.659,0,1,1,.657.657A.658.658,0,0,1,10861.676,9008.66Zm-4.676,0a.658.658,0,1,1,.657.657A.657.657,0,0,1,10857,9008.66Zm84.8-5.209a1.4,1.4,0,1,1,1.4,1.4A1.406,1.406,0,0,1,10941.8,9003.451Zm-4.679,0a1.4,1.4,0,1,1,1.407,1.4A1.408,1.408,0,0,1,10937.125,9003.451Zm-4.674,0a1.4,1.4,0,1,1,1.405,1.4A1.406,1.406,0,0,1,10932.451,9003.451Zm-4.676,0a1.4,1.4,0,1,1,1.405,1.4A1.406,1.406,0,0,1,10927.775,9003.451Zm-4.676,0a1.4,1.4,0,1,1,1.4,1.4A1.405,1.405,0,0,1,10923.1,9003.451Zm-12.613,0a1.138,1.138,0,1,1,1.138,1.138A1.141,1.141,0,0,1,10910.486,9003.451Zm-4.674,0a1.138,1.138,0,1,1,1.139,1.138A1.141,1.141,0,0,1,10905.813,9003.451Zm-3.55,1.138h-.013a1.138,1.138,0,0,1,0-2.276h.024a1.138,1.138,0,1,1,0,2.276Zm-5.824-1.138a1.138,1.138,0,1,1,1.138,1.138A1.139,1.139,0,0,1,10896.438,9003.451Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.138A1.14,1.14,0,0,1,10891.763,9003.451Zm-4.677,0a1.138,1.138,0,1,1,1.139,1.138A1.141,1.141,0,0,1,10887.086,9003.451Zm-4.676,0a1.139,1.139,0,1,1,1.138,1.138A1.14,1.14,0,0,1,10882.41,9003.451Zm-11.359,0a.657.657,0,1,1,.657.656A.659.659,0,0,1,10871.051,9003.451Zm-4.677,0a.657.657,0,1,1,.657.656A.66.66,0,0,1,10866.374,9003.451Zm-4.676,0a.658.658,0,1,1,.657.656A.659.659,0,0,1,10861.7,9003.451Zm84.8-5.21a1.4,1.4,0,1,1,1.405,1.405A1.405,1.405,0,0,1,10946.5,8998.241Zm-4.676,0a1.4,1.4,0,1,1,1.405,1.405A1.405,1.405,0,0,1,10941.823,8998.241Zm-4.674,0a1.4,1.4,0,1,1,1.405,1.405A1.405,1.405,0,0,1,10937.149,8998.241Zm-4.676,0a1.4,1.4,0,1,1,1.4,1.405A1.405,1.405,0,0,1,10932.474,8998.241Zm-4.676,0a1.4,1.4,0,1,1,1.4,1.405A1.4,1.4,0,0,1,10927.8,8998.241Zm-12.613,0a1.138,1.138,0,1,1,1.138,1.138A1.14,1.14,0,0,1,10915.185,8998.241Zm-4.674,0a1.138,1.138,0,1,1,1.136,1.138A1.138,1.138,0,0,1,10910.511,8998.241Zm-3.549,1.138h-.011a1.138,1.138,0,1,1,0-2.275h.021a1.138,1.138,0,0,1,0,2.275Zm-5.825-1.138a1.138,1.138,0,1,1,1.138,1.138A1.138,1.138,0,0,1,10901.137,8998.241Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.138A1.139,1.139,0,0,1,10896.461,8998.241Zm-4.677,0a1.138,1.138,0,1,1,1.139,1.138A1.14,1.14,0,0,1,10891.784,8998.241Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.138A1.139,1.139,0,0,1,10887.108,8998.241Zm-11.362,0a.658.658,0,1,1,.66.657A.659.659,0,0,1,10875.746,8998.241Zm-4.674,0a.657.657,0,1,1,.657.657A.657.657,0,0,1,10871.072,8998.241Zm-4.676,0a.657.657,0,1,1,.657.657A.657.657,0,0,1,10866.4,8998.241Zm84.8-5.21a1.4,1.4,0,1,1,1.405,1.405A1.406,1.406,0,0,1,10951.2,8993.031Zm-4.673,0a1.4,1.4,0,1,1,1.4,1.405A1.405,1.405,0,0,1,10946.524,8993.031Zm-4.677,0a1.4,1.4,0,1,1,1.405,1.405A1.406,1.406,0,0,1,10941.848,8993.031Zm-4.676,0a1.4,1.4,0,1,1,1.4,1.405A1.406,1.406,0,0,1,10937.172,8993.031Zm-4.677,0a1.4,1.4,0,1,1,1.405,1.405A1.406,1.406,0,0,1,10932.5,8993.031Zm-12.623,0a1.138,1.138,0,1,1,1.138,1.139A1.14,1.14,0,0,1,10919.872,8993.031Zm-4.677,0a1.138,1.138,0,1,1,1.139,1.139A1.141,1.141,0,0,1,10915.2,8993.031Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.139A1.14,1.14,0,0,1,10910.52,8993.031Zm-4.674,0a1.137,1.137,0,1,1,1.136,1.139A1.138,1.138,0,0,1,10905.846,8993.031Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.139A1.14,1.14,0,0,1,10901.17,8993.031Zm-4.677,0a1.138,1.138,0,1,1,1.139,1.139A1.141,1.141,0,0,1,10896.493,8993.031Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.139A1.14,1.14,0,0,1,10891.817,8993.031Zm-11.373,0a.658.658,0,1,1,.66.66A.659.659,0,0,1,10880.444,8993.031Zm-4.674,0a.657.657,0,1,1,.657.66A.657.657,0,0,1,10875.771,8993.031Zm-4.676,0a.657.657,0,1,1,.657.66A.657.657,0,0,1,10871.095,8993.031Zm75.4-5.209a1.4,1.4,0,1,1,1.405,1.4A1.406,1.406,0,0,1,10946.5,8987.822Zm-4.676,0a1.4,1.4,0,1,1,1.405,1.4A1.406,1.406,0,0,1,10941.823,8987.822Zm-4.674,0a1.4,1.4,0,1,1,1.405,1.4A1.406,1.406,0,0,1,10937.149,8987.822Zm-4.676,0a1.4,1.4,0,1,1,1.4,1.4A1.406,1.406,0,0,1,10932.474,8987.822Zm-4.676,0a1.4,1.4,0,1,1,1.4,1.4A1.405,1.405,0,0,1,10927.8,8987.822Zm-12.613,0a1.138,1.138,0,1,1,1.138,1.138A1.141,1.141,0,0,1,10915.185,8987.822Zm-4.674,0a1.138,1.138,0,1,1,1.136,1.138A1.139,1.139,0,0,1,10910.511,8987.822Zm-4.676,0a1.137,1.137,0,1,1,1.138,1.138A1.139,1.139,0,0,1,10905.835,8987.822Zm-4.677,0a1.138,1.138,0,1,1,1.139,1.138A1.139,1.139,0,0,1,10901.158,8987.822Zm-3.549,1.138h-.011a1.138,1.138,0,0,1,0-2.276h.021a1.138,1.138,0,1,1,0,2.276Zm-5.825-1.138a1.138,1.138,0,1,1,1.139,1.138A1.141,1.141,0,0,1,10891.784,8987.822Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.138A1.14,1.14,0,0,1,10887.108,8987.822Zm-11.362,0a.658.658,0,1,1,.66.66A.659.659,0,0,1,10875.746,8987.822Zm-4.674,0a.657.657,0,1,1,.657.66A.657.657,0,0,1,10871.072,8987.822Zm-4.676,0a.657.657,0,1,1,.657.66A.657.657,0,0,1,10866.4,8987.822Zm75.407-5.207a1.4,1.4,0,1,1,1.4,1.4A1.407,1.407,0,0,1,10941.8,8982.615Zm-4.679,0a1.4,1.4,0,1,1,1.407,1.4A1.41,1.41,0,0,1,10937.125,8982.615Zm-4.674,0a1.4,1.4,0,1,1,1.405,1.4A1.408,1.408,0,0,1,10932.451,8982.615Zm-4.676,0a1.4,1.4,0,1,1,1.405,1.4A1.408,1.408,0,0,1,10927.775,8982.615Zm-4.676,0a1.4,1.4,0,1,1,1.4,1.4A1.407,1.407,0,0,1,10923.1,8982.615Zm-12.624,0a1.138,1.138,0,1,1,1.138,1.136A1.142,1.142,0,0,1,10910.476,8982.615Zm-4.674,0a1.137,1.137,0,1,1,1.136,1.136A1.14,1.14,0,0,1,10905.8,8982.615Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.136A1.142,1.142,0,0,1,10901.126,8982.615Zm-4.677,0a1.138,1.138,0,1,1,1.139,1.136A1.141,1.141,0,0,1,10896.449,8982.615Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.136A1.142,1.142,0,0,1,10891.773,8982.615Zm-4.677,0a1.138,1.138,0,1,1,1.139,1.136A1.143,1.143,0,0,1,10887.1,8982.615Zm-4.676,0a1.138,1.138,0,1,1,1.141,1.136A1.143,1.143,0,0,1,10882.421,8982.615Zm-11.37,0a.657.657,0,1,1,.657.657A.657.657,0,0,1,10871.051,8982.615Zm-4.677,0a.657.657,0,1,1,.657.657A.658.658,0,0,1,10866.374,8982.615Zm-4.676,0a.658.658,0,1,1,.657.657A.657.657,0,0,1,10861.7,8982.615Zm75.407-5.209a1.4,1.4,0,1,1,1.4,1.4A1.406,1.406,0,0,1,10937.105,8977.406Zm-4.676,0a1.4,1.4,0,1,1,1.4,1.4A1.406,1.406,0,0,1,10932.43,8977.406Zm-4.677,0a1.4,1.4,0,1,1,1.405,1.4A1.406,1.406,0,0,1,10927.753,8977.406Zm-4.676,0a1.4,1.4,0,1,1,1.405,1.4A1.406,1.406,0,0,1,10923.077,8977.406Zm-4.676,0a1.4,1.4,0,1,1,1.4,1.4A1.407,1.407,0,0,1,10918.4,8977.406Zm-12.613,0a1.138,1.138,0,1,1,1.141,1.138A1.14,1.14,0,0,1,10905.788,8977.406Zm-4.676,0a1.139,1.139,0,1,1,1.138,1.138A1.138,1.138,0,0,1,10901.112,8977.406Zm-4.674,0a1.138,1.138,0,1,1,1.138,1.138A1.137,1.137,0,0,1,10896.438,8977.406Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.138A1.138,1.138,0,0,1,10891.763,8977.406Zm-3.55,1.138h-.011a1.138,1.138,0,0,1,0-2.276h.022a1.138,1.138,0,0,1,0,2.276Zm-5.825-1.138a1.138,1.138,0,1,1,1.139,1.138A1.139,1.139,0,0,1,10882.388,8977.406Zm-4.676,0a1.138,1.138,0,1,1,1.138,1.138A1.138,1.138,0,0,1,10877.712,8977.406Zm-11.362,0a.658.658,0,1,1,.66.656A.662.662,0,0,1,10866.35,8977.406Zm-4.674,0a.659.659,0,1,1,.657.656A.66.66,0,0,1,10861.676,8977.406Zm-4.676,0a.658.658,0,1,1,.657.656A.659.659,0,0,1,10857,8977.406Z' transform='translate(-10856.5 -8975.5)'/%3E%3C/svg%3E");
  }
  #shb .subsection-design-03 .button-copy {
    font-size: 3.333333vw;
  }
}
#shb .modal-design-03 {
  transition: background-color 0.6s 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  background-color: transparent;
}
#shb .modal-design-03.modal-open {
  transition-delay: 0s;
  transition-duration: 0.4s;
  background-color: #000;
}
#shb .modal-design-03.modal-open .modal-content, #shb .modal-design-03.modal-open .modal-text {
  transform: translateX(0);
}
#shb .modal-design-03.modal-open .modal-text {
  transition: transform 0.8s 0.2s;
}
#shb .modal-design-03.modal-open .modal-close-container {
  transition-delay: 0.8s;
  opacity: 1;
}
.has-modal-l #shb .modal-design-03 .modal-text {
  transform: translateX(0);
}
#shb .modal-design-03 .modal-close-container {
  transition: opacity 0.2s ease-in-out;
  opacity: 0;
}
#shb .modal-design-03 .modal-wrapper {
  display: flex;
  align-items: center;
}
#shb .modal-design-03 .modal-content {
  position: relative;
  overflow: hidden;
  transition: transform 0.8s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transform: translateX(-101%);
}
#shb .modal-design-03 .modal-text {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 4.166667vw;
  transform: translateX(-81.25vw);
}
#shb .modal-design-03 .modal-picture-background {
  width: 87.916667vw;
}
#shb .modal-design-03 .modal-picture {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 54.895833vw;
}
@media (max-aspect-ratio: 11/10) {
  #shb .modal-design-03 .modal-wrapper {
    display: block;
  }
  #shb .modal-design-03 .modal-content {
    display: block;
    overflow: hidden;
    opacity: 1;
  }
  #shb .modal-design-03 .modal-picture {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  #shb .modal-design-03 .modal-text {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    display: block;
    width: 82.222222vw;
    padding-bottom: 0;
    transform: none;
  }
  #shb .modal-design-03 .modal-picture {
    width: 100%;
  }
}
#shb .subsection-space-03 .text-content {
  position: absolute;
  z-index: 10;
  top: 3.854167vw;
  right: 0;
  left: 0;
}
#shb .subsection-space-03 .headline {
  color: #fff;
}
#shb .subsection-space-03 .colournav-container {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 3.333333vw;
  left: 0;
  flex-direction: column;
  gap: 1.25vw;
}
#shb .subsection-space-03 .label-item {
  font-size: 1.666667vw;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
}
@media (max-aspect-ratio: 11/10) {
  #shb .subsection-space-03 .text-content {
    position: relative;
    top: auto;
  }
  #shb .subsection-space-03 .headline {
    color: #000;
  }
  #shb .subsection-space-03 .colournav-container {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    gap: 3.333333vw;
  }
  #shb .subsection-space-03 .label-item {
    font-size: 3.888889vw;
    color: #000;
  }
}
#shb .section-footnote {
  padding-bottom: 80px;
  --font-size: 14px;
  font-size: var(--font-size);
  --icon-size: 16px;
}
#shb .section-footnote i {
  position: absolute;
  bottom: 0;
  display: none;
  width: var(--icon-size);
  height: var(--icon-size);
  cursor: pointer;
  transform: translateY(calc((var(--font-size) * 1.6 - var(--icon-size)) / 2 * -1 - 1px));
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23e7e7e8'/%3E%3Cpath d='M3.239,8.986,3.233,8.98a.688.688,0,0,1-.014-.972L5.942,5.28H.689A.685.685,0,0,1,.2,5.089l-.009-.01A.689.689,0,0,1,0,4.6V4.589a.7.7,0,0,1,.188-.48L.194,4.1a.681.681,0,0,1,.494-.213H5.911L3.225,1.178a.694.694,0,0,1,0-.979l0,0A.669.669,0,0,1,3.7,0a.772.772,0,0,1,.473.171l.021.017L7.838,3.845a1.151,1.151,0,0,1,.222.331l.008.019V4.2a1.036,1.036,0,0,1,.076.39v0a1.082,1.082,0,0,1-.312.76L4.212,8.976a.683.683,0,0,1-.487.2.715.715,0,0,1-.486-.194' transform='translate(3.411 12.076) rotate(-90)' fill='%23000'/%3E%3C/svg%3E") center/100% no-repeat;
}
@media (max-aspect-ratio: 11/10) {
  #shb .section-footnote {
    --font-size: 3.333333vw;
    --icon-size: 4.722222vw;
  }
}
#shb .section-footnote ul, #shb .section-footnote ol {
  font-size: inherit;
  padding-inline-start: 1.5em;
}
#shb .section-footnote li {
  position: relative;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  font-size: inherit;
  color: #000;
}
#shb .section-footnote li.current {
  font-weight: 800;
}
#shb .section-footnote li.current i {
  display: inline-block;
}
#shb .section-footnote li.asterisk {
  list-style-type: "*";
}
#shb .section-footnote li.disclaimer {
  list-style-type: none;
}
#shb .section-footnote ol li {
  list-style-type: decimal;
}
#shb .section-footnote a {
  font-size: inherit;
  text-decoration: underline;
  color: inherit;
}/*# sourceMappingURL=main.css.map */