html {
  scroll-behavior: auto !important;
}
body,*{
  padding: 0;
  margin: 0;
}
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;
  -webkit-backdrop-filter: none;
  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 ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  #localnav {
    background-color: rgba(0, 0, 0, 0.75);
    -webkit-backdrop-filter: saturate(150%) blur(20px);
    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 .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 .ln-button {
  display: inline-block;
  padding-right: 19px;
  padding-left: 19px;
  font-size: 12px;
  font-weight: bold;
  line-height: 28px;
  transition: all 0.1s ease-out;
  white-space: nowrap;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
}
#localnav .ln-button:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.2);
}
.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;
  align-items: center;
}
.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-button {
  padding-right: 15px;
  padding-left: 15px;
}
.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: 9999 !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  background: rgba(0, 0, 0, 0.8) !important;
}
#modal-player.modal-player-open {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.3s 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);
}

#modal-player-close {
  position: absolute;
  z-index: 1;
  top: 1.25vw;
  right: 1.25vw;
  width: 2.083333vw;
  height: 2.083333vw;
  transition: opacity 0.2s;
  opacity: 0.8;
}
#modal-player-close:hover {
  opacity: 1;
}
@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%;
  }
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#x4a {
  line-height: 1.6;
  background-color: #FFF;
  overflow: hidden;
}
#x4a section {
  position: relative;
}
#x4a picture, #x4a img, #x4a svg, #x4a canvas, #x4a video {
  display: block;
  width: 100%;
}

#x4a sup {
  top: auto;
  font-size: 0.6em;
  vertical-align: super;
}
#x4a [data-footnote]{
  cursor: pointer;
}

#x4a .click-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;
}
#x4a .nowrap {
  display: inline-block;
  white-space: nowrap;
}
#x4a .blur-up {
  transition: filter 400ms;
  filter: blur(10px);
}
#x4a .blur-up.lazyloaded {
  filter: blur(0);
}
#x4a br.lg {
  display: block;
}
#x4a br.md {
  display: none;
}
#x4a br.xs {
  display: none;
}
@media (max-aspect-ratio: 11/10) {
  #x4a br.lg {
    display: none;
  }
  #x4a br.md {
    display: block;
  }
  #x4a br.xs {
    display: none;
  }
}
@media (max-aspect-ratio: 7/10) {
  #x4a br.lg {
    display: none;
  }
  #x4a br.md {
    display: none;
  }
  #x4a br.xs {
    display: block;
  }
}

#x4a .pt-200 {
  padding-top: 10.416667vw;
}
#x4a .py-200 {
  padding-top: 10.416667vw;
  padding-bottom: 10.416667vw;
}
#x4a .py-160 {
  padding-top: 8.333333vw;
  padding-bottom: 8.333333vw;
}
#x4a .pb-200 {
  padding-bottom: 10.416667vw;
}
#x4a .pb-160 {
  padding-bottom: 8.333333vw;
}
@media (max-aspect-ratio: 11/10) {
  #x4a .pt-200, #x4a .md\:pt-200 {
    padding-top: 14.285714vw;
  }
  #x4a .py-200, #x4a .md\:py-200 {
    padding-top: 14.285714vw;
    padding-bottom: 14.285714vw;
  }
  #x4a .py-160{
    padding-top: 22.222222vw;
    padding-bottom: 22.222222vw;
  }
  #x4a .pb-200, #x4a .md\:pb-200 {
    padding-bottom: 14.285714vw;
  }
  #x4a .pb-160 {
    padding-bottom: 22.222222vw;
  }
}
@media (max-aspect-ratio: 7/10) {
  #x4a .pt-200, #x4a .xs\:pt-200 {
    padding-top: 27.777778vw;
  }
  #x4a .py-200, #x4a .xs\:py-200 {
    padding-top: 27.777778vw;
    padding-bottom: 27.777778vw;
  }
  #x4a .py-160{
    padding-top: 22.222222vw;
    padding-bottom: 22.222222vw;
  }
  #x4a .pb-200, #x4a .xs\:pb-200 {
    padding-bottom: 27.777778vw;
  }
  #x4a .pb-160{
    padding-bottom: 22.222222vw;
  }
}
#x4a .hidden, #x4a .lg\:hidden{
  display: none;
}
@media (max-aspect-ratio: 11/10) {
  #x4a .hidden, #x4a .md\:hidden{
    display: none;
  }
  #x4a .block, #x4a .md\:block{
    display: block;
  }
}
@media (max-aspect-ratio: 7/10) {
  #x4a .hidden, #x4a .xs\:hidden{
    display: none;
  }
  #x4a .block, #x4a .xs\:block{
    display: block;
  }
}
#x4a .h2, #x4a .h3 {
  font-weight: 400;
  line-height: 1.25;
}
#x4a .h2 {
  font-size: 2.083333vw;
  margin-bottom: 1.041667vw;
  color: #18191A;
}
#x4a .h2.animated{
  background-position-x: 0%;
}
#x4a .h3 {
  font-size: 1.458333vw;
  color: #fff;
}
#x4a .h3.h3-40{
  font-size: 2.083333vw;
  margin-bottom: 1.041667vw;
}
#x4a .h3.dark{
  color: #18191A;
}
#x4a .h3.headline{
  font-size: 1.354167vw;
  margin-bottom: 1.25vw;
  font-weight: 500;
}
#x4a p {
  font-size: 1.041667vw;
  color: #797C80;
}
#x4a p.headline{
  color: #fff;
}
#x4a p.subtitle{
  font-size: 3.333333vw;
  color: #fff;
  font-weight: 400;
  will-change: transform, opacity, filter;
}
#x4a .text-white {
  color: #fff;
}

#x4a .note {
  display: flex;
  justify-content: flex-end;
  font-size: 0.833333vw;
  color: #868686;
}

@media (max-aspect-ratio: 11/10) {
  #x4a .h2 {
    font-size: 4.571429vw;
    margin-bottom: 2.285714vw;
  }
  #x4a .h3 {
    font-size: 2.285714vw;
  }
  #x4a .h3.h3-40{
    font-size: 4.571429vw;
    margin-bottom: 2.285714vw;
  }
  #x4a .h3.headline{
    font-size: 2.857143vw;
    margin-bottom: 1.428571vw;
  }
  #x4a p {
    font-size: 2.285714vw;
  }
  #x4a p.subtitle{
    font-size: 5.714286vw;
  }
  #x4a .note {
    font-size: 1.714286vw;
  }
}
@media (max-aspect-ratio: 7/10) {
  #x4a .h2 {
    font-size: 8.888889vw;
    margin-bottom: 4.444444vw;
  }
  #x4a .h3 {
    font-size: 4.444444vw;
  }
  #x4a .h3.h3-40{
    font-size: 8.888889vw;
    margin-bottom: 4.444444vw;
  }
  #x4a .h3.headline{
    font-size: 5.555556vw;
    margin-bottom: 5.555556vw;
  }
  #x4a p {
    font-size: 4.444444vw;
  }
  #x4a p.subtitle{
    font-size: 8.888889vw;
  }
  
  #x4a .note {
    font-size: 3.333333vw;
  }
}
#x4a .carousel-video .swiper-wrapper, #x4a .carousel-video [data-swiper-parallax-x], #x4a .carousel-video [data-swiper-parallax-opacity] {
  transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}

#x4a .carousel-video .video-container{
  position: relative;
}
#x4a .play-pause-button {
  position: absolute;
  z-index: 2;
  right: 1.25vw;
  bottom: 1.25vw;
  overflow: hidden;
  width: 2.083333vw;
  height: 2.083333vw;
  transform: translateZ(0);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(8px) brightness(1);
  -webkit-backdrop-filter: blur(8px) brightness(1);
  background-color: rgba(204, 204, 204, 0.4);
  transition: all .3s ease;
}
#x4a .play-pause-button:hover {
  backdrop-filter: blur(8px) brightness(.9);
  -webkit-backdrop-filter: blur(8px) brightness(.9);
}

#x4a .play-pause-button .button-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
#x4a.no-inline-video .play-pause-button{
  display: none;
}
@media (max-aspect-ratio: 11/10) {
  #x4a .play-pause-button {
    right: 2.285714vw;
    bottom: 2.285714vw;
    width: 4.571429vw;
    height: 4.571429vw;
  }
  #x4a .play-pause-button:hover {
    backdrop-filter: blur(8px) brightness(1);
  -webkit-backdrop-filter: blur(8px) brightness(1);
  }
}
@media (max-aspect-ratio: 7/10) {
  #x4a .play-pause-button {
    right: 4.444444vw;
    bottom: 4.444444vw;
    width: 8.888889vw;
    height: 8.888889vw;
  }
  #x4a .play-pause-button:hover {
    backdrop-filter: blur(8px) brightness(1);
  -webkit-backdrop-filter: blur(8px) brightness(1);
  }
}

#x4a .video-container.playing .icon-pause, 
#x4a .video-container.paused .icon-play, 
#x4a .video-container.ended .icon-replay,
#x4a .section-video.playing .icon-pause, 
#x4a .section-video.paused .icon-play, 
#x4a .section-video.ended .icon-replay {
  display: block;
}

#x4a .button-container {
  display: flex;
  justify-content: center;
  cursor: pointer;
}
#x4a .button-container .button-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#x4a .button-container .button-link:hover .button-background {
  opacity: 0.7;
}
#x4a .button-container .button-background {
  transition: opacity 0.3s;
}
#x4a .button-container .button-copy {
  position: absolute;
  z-index: 1;
  font-size: 0.9375vw;
  font-weight: 500;
  white-space: nowrap;
  color: #ffffff;
}
@media (max-aspect-ratio: 11/10) {
  #x4a .button-container .button-background {
    opacity: 1 !important;
  }
  #x4a .button-container .button-copy {
    font-size: 1.857143vw;
  }
}
@media (max-aspect-ratio: 7/10) {
  #x4a .button-container .button-background {
    opacity: 1 !important;
  }
  #x4a .button-container .button-copy {
    font-size: 3.611111vw;
  }
  
}

#x4a .tabnav-content {
  display: flex;
  align-items: center;
  flex-direction: column;
}
#x4a .tabnav-container {
  position: relative;
}
#x4a .tabnav-list {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
#x4a .tabnav-item {
  padding-bottom: 0.833333vw;
  font-size: 1.041667vw;
  cursor: pointer;
  transition: color 0.8s;
  white-space: nowrap;
  color: #797c80;
  outline: 0;
  font-weight: 700;
}
#x4a .tabnav-item + .tabnav-item {
  margin-left: 4.166667vw;
}
#x4a .tabnav-item.current {
  color: #18191A;
}
#x4a .tabnav-indicator {
  position: relative;
  width: 100%;
  height: 2px;
}
#x4a .tabnav-indicator::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(24, 25, 26, 0.4);
}
#x4a .tabnav-indicator::after {
  display: block;
  width: var(--indicator-width, 0);
  height: 100%;
  content: "";
  transition: width 0.8s, transform 0.8s;
  transform: translateX(var(--indicator-offset, 0));
  background-color: #18191A;
}
#x4a .stack-list {
  display: flex;
}
#x4a .stack-list {
  text-align: center;
}
#x4a .stack-item {
  position: relative;
  width: 100%;
  font-size: 1.041667vw;
  transition: opacity 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  opacity: 0;
}
#x4a .stack-item + .stack-item {
  margin-left: -100%;
}
#x4a .stack-item.current {
  z-index: 1;
  opacity: 1;
}
@media (max-aspect-ratio: 11/10) {
  #x4a .headline-wrapper{
    text-align: center;
  }
  #x4a .tabnav-content {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
  }
  #x4a .tabnav-content::before, #x4a .tabnav-content::after {
    position: absolute;
    z-index: 1;
    top: -1.388889vw;
    width: 12.285714vw;
    height: 7.285714vw;
    content: "";
    pointer-events: none;
  }
  #x4a .tabnav-content::before {
    left: 0;
    background-image: linear-gradient(90deg, #ffffff 40%, transparent);
  }
  #x4a .tabnav-content::after {
    right: 0;
    background-image: linear-gradient(90deg, transparent, #ffffff 60%);
  }
  #x4a .tabnav-container {
    position: relative;
    display: flex;
    justify-content: center;
    line-height: 0;
    white-space: nowrap;
  }
  #x4a .tabnav-container.is-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  #x4a .tabnav-container.is-scroll::-webkit-scrollbar {
    display: none;
  }
  #x4a .tabnav-wrapper {
    padding-right: 12.285714vw;
    padding-left: 12.285714vw;
  }
  #x4a .tabnav-list {
    position: relative;
    display: flex;
  }
  #x4a .tabnav-item {
    padding-bottom: 1.714286vw;
    font-size: 2.285714vw;
  }
  #x4a .tabnav-item + .tabnav-item {
    margin-left: 5.714286vw;
  }
  #x4a .tabnav-indicator {
    height: .214286vw;
  }
  #x4a .stack-list {
    text-align: left;
  }
  #x4a .stack-item {
    font-size: 2.285714vw;
  }
  #x4a .stack-list{
    text-align: center;
  }
}
@media (max-aspect-ratio: 7/10) {
  #x4a .headline-wrapper{
    text-align: left;
  }
  #x4a .tabnav-content {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
  }
  #x4a .tabnav-content::before, #x4a .tabnav-content::after {
    position: absolute;
    z-index: 1;
    top: -1.388889vw;
    width: 12.222222vw;
    height: 12.222222vw;
    content: "";
    pointer-events: none;
  }
  #x4a .tabnav-content::before {
    left: 0;
    background-image: linear-gradient(90deg, #ffffff 40%, transparent);
  }
  #x4a .tabnav-content::after {
    right: 0;
    background-image: linear-gradient(90deg, transparent, #ffffff 60%);
  }
  #x4a .tabnav-container {
    position: relative;
    display: flex;
    justify-content: center;
    line-height: 0;
    white-space: nowrap;
  }
  #x4a .tabnav-container.is-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  #x4a .tabnav-container.is-scroll::-webkit-scrollbar {
    display: none;
  }
  #x4a .tabnav-wrapper {
    padding-right: 13.888889vw;
    padding-left: 13.888889vw;
  }
  #x4a .tabnav-list {
    position: relative;
    display: flex;
  }
  #x4a .tabnav-item {
    padding-bottom: 3.333333vw;
    font-size: 4.444444vw;
  }
  #x4a .tabnav-item + .tabnav-item {
    margin-left: 8.888889vw;
  }
  #x4a .tabnav-indicator {
    height: 0.416667vw;
  }
  #x4a .stack-list {
    text-align: left;
  }
  #x4a .stack-item {
    font-size: 4.444444vw;
  }
  #x4a .stack-list{
    text-align: left;
  }
}

#x4a .stat-list {
  display: flex;
}
#x4a .stat-list .stat-value,
#x4a .stat-list-1 .stat-value {
  font-size: 3.333333vw;
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
}
#x4a .stat-list .stat-value-item,
#x4a .stat-list-1 .stat-value-item{
  display: flex;
  align-items: baseline;
  width: 100%;
}
#x4a .stat-list .stat-unit,
#x4a .stat-list-1 .stat-unit {
  font-size: 1.041667vw;
  font-weight: 400;
}
#x4a .stat-list .stat-caption,
#x4a .stat-list-1 .stat-caption {
  font-size: 1.041667vw;
  font-weight: 400;
  line-height: 1.25;
  color: #fff;
}
@media (max-aspect-ratio: 11/10) {
  #x4a .stat-list,
  #x4a .stat-list-1 {
    display: grid;
    grid-template-columns: auto auto;
  }
  #x4a .stat-list .stat-value,
  #x4a .stat-list-1 .stat-value {
    font-size: 4.571429vw;
  }
  #x4a .stat-list .stat-unit,
  #x4a .stat-list-1 .stat-unit {
    font-size: 2vw;
  }
  #x4a .stat-list .stat-caption,
  #x4a .stat-list-1 .stat-caption {
    font-size: 2vw;
    margin-bottom: 1.428571vw;
  }
}
@media (max-aspect-ratio: 7/10) {
  #x4a .stat-list,
  #x4a .stat-list-1 {
    display: grid;
    grid-template-columns: auto auto;
  }
  #x4a .stat-list .stat-value,
  #x4a .stat-list-1 .stat-value {
    font-size: 8.888889vw;
  }
  #x4a .stat-list .stat-unit,
  #x4a .stat-list-1 .stat-unit {
    font-size: 3.888889vw;
    font-weight: 400;
  }
  #x4a .stat-list .stat-caption,
  #x4a .stat-list-1 .stat-caption {
    font-size: 3.888889vw;
    margin-bottom: 1.388889vw;
  }
}
#x4a .pagination-item {
  display: flex;
  overflow: hidden;
  align-items: center;
  width: auto;
  font-size: var(--pagination-font-size, 1.041667vw);
  font-weight: 700;
  line-height: 1;
  color: #18191a;
}
#x4a .pagination-item.swiper-pagination-lock {
  display: none;
}
#x4a .pagination-current {
  display: flex;
  flex-direction: column;
  height: 1em;
  transition: transform 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  transform: translate3d(0, var(--pagination-y, 0), 0);
  text-align: right;
}
#x4a .pagination-line {
  position: relative;
  overflow: hidden;
  width: 3.125vw;
  height: 2px;
  margin-right: .3125vw;
  margin-left: .3125vw;
  background-color: #e5e5e5;
}
#x4a .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;
}
#x4a .autoplay-animating .pagination-line::before {
  transition-duration: 3.8s;
  transform: scaleX(1);
}
#x4a .autoplay-animating .autoplay-3s .pagination-line::before {
  transition-duration: 2.8s;
  transform: scaleX(1);
}
#x4a .pagination-total {
  opacity: 0.2;
}
@media (max-aspect-ratio: 11/10) {
  #x4a .pagination-item {
    font-size: var(--pagination-font-size, 2vw);
  }
  #x4a .pagination-line {
    width: 10.5vw;
    height: .214286vw;
    margin-right: 1.714286vw;
    margin-left: 1.714286vw;
  }
}
@media (max-aspect-ratio: 7/10) {
  #x4a .pagination-item {
    font-size: var(--pagination-font-size, 3.888889vw);
  }
  #x4a .pagination-line {
    width: 20.555556vw;
    height: 0.416667vw;
    margin-right: 3.333333vw;
    margin-left: 3.333333vw;
  }
}
#x4a .arrownav-list {
  display: flex;
}
#x4a .arrownav-list .arrownav-item {
  position: relative;
  width: 2.604167vw;
  cursor: pointer;
  transition: opacity 0.4s;
  outline: 0;
  mask-image: url(/dam/hima-site/cn/xiangjie/s9/new/images/icons/arrow-right.svg);
  mask-size: 100%;
  mask-repeat: no-repeat;
  mask-position: center;
}
#x4a .arrownav-list .arrownav-item svg{
  height: auto;
}
#x4a .arrownav-list .arrownav-item .mask-pic{
  position: absolute;
  width: 7.291667vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 1;
  transition: transform .3s;
  max-width: fit-content;
  z-index: 2;
}
#x4a .arrownav-list .arrownav-item .arrow-icon{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
#x4a .arrownav-list .arrownav-next {
  margin-left: 1.25vw;
}
#x4a .arrownav-list .arrownav-item.arrownav-disabled {
  cursor: default;
  opacity: 1;
  pointer-events: none;
}
#x4a .arrownav-list .arrownav-item .arrownav-item-color{
  transition: all .8s ease;
}
#x4a .arrownav-list .arrownav-item.arrownav-disabled .arrownav-item-color{
  stop-color: rgba(224,212,212,.2);
}
#x4a .arrownav-list .arrownav-item.arrownav-disabled .arrownav-item-color-w{
  stop-color: rgba(224,212,212);
}
@media (hover: hover) {
  #x4a .arrownav-list .arrownav-item:hover .mask-pic{
    transform: translate(-50%, -50%) scale(1);
  }

  #x4a .arrownav-list .arrownav-item.arrownav-disabled:hover .mask-pic{
    transform: translate(-50%, -50%) scale(0);
  }
}
@media (max-aspect-ratio: 11/10) {
  #x4a .arrownav-list .arrownav-item{
    width: 5.428571vw;
  }
  #x4a .arrownav-list .arrownav-next{
    margin-left: 1.714286vw;
  }
  #x4a .arrownav-list {
    display: flex;
  }
  #x4a .arrownav-list .arrownav-item:hover{
    opacity: 1;
  }
  #x4a .arrownav-list .arrownav-item.arrownav-disabled {
    opacity: 1;
  }
  #x4a .arrownav-list .arrownav-item:hover .mask-pic{
  transform: translate(-50%, -50%) scale(0);
}
}
@media (max-aspect-ratio: 7/10) {
  #x4a .arrownav-list .arrownav-item{
    width: 10.555556vw;
  }
  #x4a .arrownav-list .arrownav-next{
    margin-left: 3.333333vw;
  }
  #x4a .arrownav-list {
    display: flex;
  }
  #x4a .arrownav-list .arrownav-item:hover{
    opacity: 1;
  }
  #x4a .arrownav-list .arrownav-item.arrownav-disabled {
    opacity: 0.3;
  }
  #x4a .arrownav-list .arrownav-item:hover .mask-pic{
  transform: translate(-50%, -50%) scale(0);
}
}
#x4a .tab-swiper {
  position: relative;
}
#x4a .tab-swiper .swiper-content {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#x4a .tab-swiper .tablist-wrapper {
  position: relative;
}
#x4a .tab-swiper .tablist {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
#x4a .tab-swiper .tabnav {
  padding-right: 3.125vw;
  padding-bottom: 1.041667vw;
  padding-left: 3.125vw;
  font-size: 1.666667vw;
  font-weight: 400;
  cursor: pointer;
  transition: opacity 0.4s;
  white-space: nowrap;
  opacity: 0.5;
  color: #fff;
  outline: 0;
}
#x4a .tab-swiper .tabnav.current {
  opacity: 1;
}
#x4a .tab-swiper .tabnav-indicator {
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.5);
}
#x4a .tab-swiper .indicator {
  width: 0;
  height: 100%;
  background-color: #be55e5;
}
#x4a .tab-swiper .caption-list {
  display: flex;
  margin-top: 1.5625vw;
  text-align: center;
}
#x4a .tab-swiper .caption {
  position: relative;
  width: 100%;
  font-size: 1.25vw;
  transition: opacity 0.4s;
  opacity: 0;
  color: #fff;
}
#x4a .tab-swiper .caption + .caption {
  margin-left: -100%;
}
#x4a .tab-swiper .caption.current {
  z-index: 1;
  opacity: 1;
}
@media (max-aspect-ratio: 11/10) {
  #x4a .tab-swiper .swiper-content {
    display: block;
    width: 100%;
  }
  #x4a .tab-swiper .tablist-wrapper {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    line-height: 0;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  #x4a .tab-swiper .tablist-wrapper::-webkit-scrollbar {
    display: none;
  }
  #x4a .tab-swiper .tablist {
    position: relative;
    display: inline-block;
    margin: 0 8.333333vw;
  }
  #x4a .tab-swiper .tablist::after {
    position: absolute;
    right: 0;
    bottom: -3px;
    left: 0;
    height: 3px;
    content: "";
    background-color: rgba(128, 128, 128, 0.5);
  }
  #x4a .tab-swiper .tabnav {
    display: inline-block;
    padding-right: 0;
    padding-bottom: 2.777778vw;
    padding-left: 0;
    font-size: 4.444444vw;
    transition: color 0.4s;
    opacity: 1;
    color: #808080;
  }
  #x4a .tab-swiper .tabnav.current {
    color: #000;
  }
  #x4a .tab-swiper .tabnav + .tabnav {
    margin-left: 11.111111vw;
  }
  #x4a .tab-swiper .tabnav-indicator {
    width: 0;
    height: 3px;
    margin: 0 8.333333vw;
  }
  #x4a .tab-swiper .caption-list {
    width: 83.333333vw;
    margin: 4.166667vw auto 0;
    text-align: left;
  }
  #x4a .tab-swiper .caption {
    font-size: 3.888889vw;
    color: #808080;
  }
}
#x4a .gallery-container {
  position: relative;
}
#x4a .gallery-container .gallery {
  position: relative;
}
#x4a .gallery-container .gallery-wrapper {
  display: flex;
}
#x4a .gallery-container .gallery-slide {
  position: relative;
  width: 100%;
}
#x4a .gallery-container .gallery-slide + .gallery-slide {
  margin-left: -100%;
}
#x4a .gallery-container .clip-item {
  position: relative;
  transition: transform 0s 0.8s, -webkit-clip-path 0s 0.8s;
  transition: transform 0s 0.8s, clip-path 0s 0.8s;
  transition: transform 0s 0.8s, clip-path 0s 0.8s, -webkit-clip-path 0s 0.8s;
  transform: scale(1.15);
}
#x4a .gallery-container .current .clip-item {
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 0.8s cubic-bezier(0.65, 0.05, 0.36, 1), clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 0.8s cubic-bezier(0.65, 0.05, 0.36, 1), clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  transform: scale(1);
}
#x4a .gallery-container .swiper {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#x4a .swiper-style-1 .gallery-container,
#x4a .tabnav-swiper .gallery-container,
#x4a .tabnav-swiper-1 .gallery-container,
#x4a .tabnav-swiper-2 .gallery-container{
  display: flex;
  overflow: hidden;
}
#x4a .swiper-style-1 .gallery,
#x4a .tabnav-swiper .gallery,
#x4a .tabnav-swiper-1 .gallery,
#x4a .tabnav-swiper-2 .gallery {
  z-index: 3;
  flex-shrink: 0;
  width: 81.25vw;
}
#x4a .swiper-style-1 .gallery-slide.current .clip-item,
#x4a .tabnav-swiper .gallery-slide.current .clip-item,
#x4a .swiper-color .gallery-slide.current .clip-item,
#x4a .tabnav-swiper-1 .gallery-slide.current .clip-item,
#x4a .tabnav-swiper-2 .gallery-slide.current .clip-item {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
}
#x4a .swiper-style-1 .gallery-slide.left .clip-item,
#x4a .tabnav-swiper .gallery-slide.left .clip-item,
#x4a .tabnav-swiper-1 .gallery-slide.left .clip-item,
#x4a .tabnav-swiper-2 .gallery-slide.left .clip-item,
#x4a .swiper-color .gallery-slide.left .clip-item {
  -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}
#x4a .swiper-style-1 .gallery-slide.right .clip-item,
#x4a .tabnav-swiper .gallery-slide.right .clip-item,
#x4a .tabnav-swiper-1 .gallery-slide.right .clip-item,
#x4a .tabnav-swiper-2 .gallery-slide.right .clip-item,
#x4a .swiper-color .gallery-slide.right .clip-item {
  -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
}
#x4a .swiper-style-1 .zoom-in-transition,
#x4a .tabnav-swiper .zoom-in-transition,
#x4a .tabnav-swiper-1 .zoom-in-transition {
  transition: transform 0.8s;
  transform-origin: left;
}
#x4a .swiper-style-1 .zoom-in-slide,
#x4a .tabnav-swiper .zoom-in-slide {
  transform: scale(1.3);
}
#x4a .tabnav-swiper-1 .zoom-in-slide{
  transform: scale(1.52);
}
#x4a .swiper-style-1 .content-container,
#x4a .tabnav-swiper .content-container {
  padding: 3.333333vw 2.5vw;
  background-color: #f5f6f7;
}
#x4a .tabnav-swiper-1 .tabnav-content{
  padding: 8.333333vw 4.166667vw;
  background-color: #f5f6f7;
}
#x4a .swiper-style-1 .content-wrapper,
#x4a .tabnav-swiper .content-wrapper,
#x4a .tabnav-swiper-1 .content-wrapper  {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
#x4a .swiper-style-1 .stack-list {
  order: 2;
}
#x4a .swiper-style-1 .pagination-item {
  order: 1;
}
#x4a .swiper-style-1 .arrownav-list {
  order: 3;
}
@media (max-aspect-ratio: 11/10) {
  #x4a .swiper-style-1 .gallery-container {
    display: block;
  }
  #x4a .tabnav-swiper .gallery-container{
    width: 75.428571vw;
    margin: 0 auto;
  }
  #x4a .swiper-style-1 .gallery {
    width: 100%;
  }
  #x4a .swiper-style-1 .gallery,
  #x4a .tabnav-swiper .gallery {
    z-index: 3;
    flex-shrink: 0;
    width: 75.428571vw;
  }
  #x4a .swiper-style-1 .zoom-in-slide,
  #x4a .tabnav-swiper-1 .zoom-in-slide {
    transition: none;
    transform: none;
  }
  #x4a .swiper-style-1 .content-container {
    padding: 5.714286vw 5.714286vw 8.571429vw;
  }
  #x4a .swiper-style-1 .content-wrapper {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    height: auto;
  }
  #x4a .swiper-style-1 .stack-list {
    order: 1;
    margin-bottom: 5.714286vw;
  }
  #x4a .swiper-style-1 .pagination-item {
    order: 2;
  }
  #x4a .swiper-style-1 .h3 {
    font-size: 2.857143vw;
  }
}
@media (max-aspect-ratio: 7/10) {
  #x4a .swiper-style-1 .gallery-container {
    display: block;
  }
  #x4a .tabnav-swiper .gallery-container{
    width: 95.555556vw;
    margin: 0 auto;
  }
  #x4a .swiper-style-1 .gallery {
    width: 100%;
  }

  #x4a .swiper-style-1 .gallery,
  #x4a .tabnav-swiper .gallery {
    z-index: 3;
    flex-shrink: 0;
    width: 95.555556vw;
  }
  #x4a .swiper-style-1 .zoom-in-slide {
    transition: none;
    transform: none;
  }
  #x4a .swiper-style-1 .content-container {
    padding: 11.111111vw 11.666667vw 16.666667vw;
  }
  #x4a .swiper-style-1 .content-wrapper {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    height: auto;
  }
  #x4a .swiper-style-1 .stack-list {
    order: 1;
    margin-bottom: 11.111111vw;
  }
  #x4a .swiper-style-1 .pagination-item {
    order: 2;
  }
  #x4a .swiper-style-1 .h3 {
    font-size: 5.555556vw;
  }
}
#x4a .swiper-style-2 .text-content {
  width: 51.666667vw;
  padding-left: 13.020833vw;
}
#x4a .swiper-style-2 .xs-gallery {
  display: none;
}
#x4a .swiper-style-2 .lg-gallery-slide {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#x4a .swiper-style-2 .clip-item-1 {
  width: 51.666667vw;
  margin-top: 6.770833vw;
}
#x4a .swiper-style-2 .clip-item-2 {
  width: 27.5vw;
}
#x4a .swiper-style-2 .gallery-slide{
  -webkit-mask-image: url("/dam/hima-site/cn/xiangjie/s9/new/images/icons/mask-img.svg");
  mask-image: url("/dam/hima-site/cn/xiangjie/s9/new/images/icons/mask-img.svg");
  -webkit-mask-size: 1%;
  mask-size: 1%;
  -webkit-mask-position: calc(50% - 15vw) 50%;
  mask-position: calc(50% - 15vw) 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: mask-size 0s .8s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-mask-size 0s .8s cubic-bezier(0.65, 0.05, 0.36, 1);
  will-change: mask-size, -webkit-mask-size, transfrom;
}
 #x4a .swiper-style-2 .gallery-slide.current{
  -webkit-mask-size: 400%;
  mask-size: 400%;
  transition: mask-size .8s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-mask-size .8s cubic-bezier(0.65, 0.05, 0.36, 1);
  z-index: 1;
}

#x4a .swiper-style-2 .caption-container {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 1.666667vw;
  font-size: 1.041667vw;
}
#x4a .swiper-style-2 .caption-title {
  font-size: inherit;
  color: #fff;
}
#x4a .swiper-style-2 .caption-copy {
  font-size: inherit;
  color: rgba(255, 255, 255, 0.6);
}
#x4a .swiper-style-2 .swiper {
  height: 55%;
}
#x4a .swiper-style-2 .content-container {
  display: flex;
  justify-content: space-between;
  width: 79.583333vw;
  margin: 2.395833vw auto 0;
  align-items: flex-end;
}
#x4a .swiper-style-2 .content-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
}
#x4a .swiper-style-2 .arrownav-list {
  margin-bottom: 1.25vw;
}
#x4a .swiper-style-2 .stack-list{
  text-align: left;
  width: 32.291667vw;
}
#x4a .swiper-style-2 .stack-list .stack-item span{
  display: block;
  font-size: 1.354167vw;
  font-weight: 700;
  color: #000;
  line-height: 1.25;
  margin-bottom: 1.25vw;
}
@media (max-aspect-ratio: 11/10) {
  #x4a .swiper-style-2 .text-content {
    width: 75.428571vw;
    padding-left: 0;
  }
  #x4a .swiper-style-2 .caption-container {
    margin: 4.444444vw 11.111111vw;
    font-size: 3.888889vw;
    text-align: center;
  }
  #x4a .swiper-style-2 .caption-title {
    font-size: 4.722222vw;
  }
  #x4a .swiper-style-2 .clip-item-1{
    width: 47.857143vw;
    margin-top: 0;
  }
  #x4a .swiper-style-2 .clip-item-2{
    width: 25.857143vw;
  }
  #x4a .swiper-style-2 .swiper {
    height: 100%;
  }
  #x4a .swiper-style-2 .content-container {
    position: static;
    justify-content: center;
    width: 73.142857vw;
    flex-direction: column;
    margin: 5.714286vw auto 0;
  }
  #x4a .swiper-style-2 .stack-list{
    width: auto;
  }
  #x4a .swiper-style-2 .content-wrapper {
    justify-content: space-between;
    width: 100%;
    flex-direction: row;
    margin-top: 2.285714vw;
  }
  #x4a .swiper-style-2 .arrownav-list {
    margin-left: 0;
  }
  #x4a .swiper-style-2 .stack-list .stack-item span{
    font-size: 2.857143vw;
    margin-bottom: 1.428571vw;
  }
}
@media (max-aspect-ratio: 7/10) {
  #x4a .swiper-style-2 .text-content {
    width: 72.222222vw;
    padding-left: 0;
  }
  #x4a .swiper-style-2 .lg-gallery {
    display: none;
  }
  #x4a .swiper-style-2 .xs-gallery {
    display: block;
  }
  #x4a .swiper-style-2 .gallery-slide{
  -webkit-mask-size: 1%;
  mask-size: 1%;
  -webkit-mask-position: center;
  mask-position: center;
}
 #x4a .swiper-style-2 .gallery-slide.current{
  -webkit-mask-size: 400%;
  mask-size: 400%;
}
  #x4a .swiper-style-2 .caption-container {
    margin: 4.444444vw 11.111111vw;
    font-size: 3.888889vw;
    text-align: center;
  }
  #x4a .swiper-style-2 .caption-title {
    font-size: 4.722222vw;
  }
  #x4a .swiper-style-2 .swiper {
    height: 70%;
  }
  #x4a .swiper-style-2 .content-container {
    position: static;
    justify-content: center;
    width: 72.222222vw;
    flex-direction: column;
    margin: 11.111111vw auto 0;
  }
  #x4a .swiper-style-2 .stack-list{
    width: auto;
  }
  #x4a .swiper-style-2 .content-wrapper {
    justify-content: space-between;
    width: 72.222222vw;
    flex-direction: row;
    margin-top: 11.111111vw;
  }
  #x4a .swiper-style-2 .arrownav-list {
    margin-left: 0;
  }
  #x4a .swiper-style-2 .stack-list .stack-item span{
    font-size: 4.444444vw;
    margin-bottom: 3.333333vw;
  }
}

 #x4a .gallery-container .gallery-slide{
  overflow: hidden;
 }

#x4a .section-color .gallery-slide .clip-item{
  -webkit-mask-image: url("/dam/hima-site/cn/xiangjie/s9/new/images/icons/mask-img-2.svg");
  mask-image: url("/dam/hima-site/cn/xiangjie/s9/new/images/icons/mask-img-2.svg");
  -webkit-mask-size: 1%;
  mask-size: 1%;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: mask-size 0s .8s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-mask-size 0s .8s cubic-bezier(0.65, 0.05, 0.36, 1), transform 0s .8s cubic-bezier(0.65, 0.05, 0.36, 1);
  transform: scale(1.17);
  will-change: transform,mask-size;
}

#x4a .section-color .gallery-slide.current .clip-item{
  -webkit-mask-size: 40%;
  mask-size: 40%;
  transition: mask-size .8s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-mask-size .8s cubic-bezier(0.65, 0.05, 0.36, 1), transform .8s cubic-bezier(0.65, 0.05, 0.36, 1);
  transform: scale(1.17);
}
#x4a .section-color.animated .gallery-slide.current .clip-item{
  -webkit-mask-size: 370%;
  mask-size: 370%;
  transition: mask-size .8s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-mask-size .8s cubic-bezier(0.65, 0.05, 0.36, 1), transform .8s cubic-bezier(0.65, 0.05, 0.36, 1);
  transform: scale(1);
}
#x4a .swiper-style-3 .content-container {
  padding: 2.5vw .833333vw 0;
}
#x4a .swiper-style-3 .content-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 100%;
}
#x4a .swiper-style-3 .stack-list {
  flex-shrink: 0;
}
#x4a .swiper-style-3 .stack-item .headline{
  font-size: 1.354167vw;
  color: #000;
}
#x4a .swiper-style-3 .stack-item .intro{
  font-size: 1.041667vw;
}
#x4a .swiper-style-3 .pagination-container {
  display: flex;
  align-items: center;
  width: 6.145833vw;
  height: 2.916667vw;
  margin-top: 1.25vw;
}
#x4a .swiper-style-3 .arrownav-list {
  justify-content: flex-end;
  width: auto;
  margin-top: 1.25vw;
}
@media (max-aspect-ratio: 11/10){
#x4a .tabnav-swiper-1 .gallery-slide .clip-item{
  -webkit-mask-image: none;
  mask-image: none;
  transition: -webkit-clip-path 0s .8s cubic-bezier(0.65, 0.05, 0.36, 1), transform 0s .8s cubic-bezier(0.65, 0.05, 0.36, 1), clip-path 0s .8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4a .tabnav-swiper-1 .gallery-slide.current .clip-item {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    transition: clip-path .8s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-clip-path .8s cubic-bezier(0.65, 0.05, 0.36, 1), transform .8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4a .tabnav-swiper-1 .gallery-slide.left .clip-item {
  -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}
#x4a .tabnav-swiper-1 .gallery-slide.right .clip-item {
  -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
}
  #x4a .section-color .gallery-slide.current .clip-item {
    -webkit-mask-size: 400%;
    mask-size: 400%;
    transform: scale(1);
  }
  #x4a .swiper-style-3 .zoom-in-slide {
    transition: none;
    transform: none;
  }
  #x4a .swiper-style-3 .content-container {
    padding: 5.714286vw 0 0;
    width: 74.285714vw;
    margin: 0 auto 0 1.142857vw;
  }
  #x4a .swiper-style-3 .content-wrapper {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    height: auto;
  }
  #x4a .swiper-style-3 .stack-list {
    order: 1;
    margin-bottom: 2.285714vw;
  }
  #x4a .swiper-style-3 .stack-item .headline {
    font-size: 2.857143vw;
  }
  #x4a .swiper-style-3 .stack-item .intro{
    font-size: 2.285714vw;
  }
  #x4a .swiper-style-3 .pagination-container {
    order: 2;
    width: auto;
    height: auto;
    margin-top: 0;
  }
  #x4a .swiper-style-3 .arrownav-list {
    width: auto;
    margin-top: 0;
  }
}
@media (max-aspect-ratio: 7/10) {
 #x4a .tabnav-swiper-1 .gallery-slide .clip-item{
  -webkit-mask-image: none;
  mask-image: none;
  transition: -webkit-clip-path 0s .8s cubic-bezier(0.65, 0.05, 0.36, 1), transform 0s .8s cubic-bezier(0.65, 0.05, 0.36, 1), clip-path 0s .8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4a .tabnav-swiper-1 .gallery-slide.current .clip-item {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    transition: clip-path .8s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-clip-path .8s cubic-bezier(0.65, 0.05, 0.36, 1), transform .8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4a .tabnav-swiper-1 .gallery-slide.left .clip-item {
  -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}
#x4a .tabnav-swiper-1 .gallery-slide.right .clip-item {
  -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
}
#x4a .section-color .gallery-slide.current .clip-item{
    -webkit-mask-size: 600%;
    mask-size: 600%;
}
  #x4a .swiper-style-3 .zoom-in-slide {
    transition: none;
    transform: none;
  }
  #x4a .swiper-style-3 .content-container {
    padding: 11.111111vw 0 0;
    width: 72.222222vw;
    margin: 0 auto;
  }
  #x4a .swiper-style-3 .content-wrapper {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    height: auto;
  }
  #x4a .swiper-style-3 .stack-list {
    order: 1;
    margin-bottom: 11.111111vw;
  }
  #x4a .swiper-style-3 .stack-item .headline{
    font-size: 5.555556vw;
  }
  #x4a .swiper-style-3 .stack-item .intro {
    font-size: 4.444444vw;
  }
  #x4a .swiper-style-3 .pagination-container {
    order: 2;
    width: auto;
    height: auto;
    margin-top: 0;
  }
  #x4a .swiper-style-3 .arrownav-list {
    width: auto;
    margin-top: 0;
  }
}
#x4a .colournav-container {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
#x4a .colournav-container .label-list {
  position: relative;
  display: flex;
  align-items: center;
}
#x4a .colournav-container .label-item {
  font-size: 1.041667vw;
  font-weight: 500;
  opacity: 0;
  color: #18191a;
}
#x4a .colournav-container .label-item + .label-item{
  position: absolute;
  top: 0;
  left: 0;
}
#x4a .colournav-container .label-item.current {
  z-index: 1;
  opacity: 1;
}
#x4a .colournav-container .label-item sup{
  pointer-events: none;
}
#x4a .colournav-container .label-item.current sup{
  pointer-events: auto;
}
#x4a .colournav-container .colournav-list{
  display: flex;
}
#x4a .colournav-container .colournav-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5vw;
  cursor: pointer;
}
#x4a .colournav-container .colournav-item + .colournav-item {
  margin-left: 0.208333vw;
}
#x4a .colournav-container .colournav-item.current {
  cursor: default;
}
#x4a .colournav-container .colournav-item.current .colour-swatch-indicator {
  opacity: 1;
}
#x4a .colournav-container .colour-swatch-indicator {
  position: absolute;
  transition: opacity 0.8s;
  pointer-events: none;
  opacity: 0;
}
#x4a .colournav-container .colour-swatch {
  width: 100%;
  pointer-events: none;
}
@media (max-aspect-ratio: 11/10){
  #x4a .colournav-container .label-item{
    font-size: 2.285714vw;
  }
  #x4a .colournav-container .colournav-item  {
    width: 5.142857vw;
  }
  #x4a .colournav-container .colournav-item + .colournav-item {
    margin-left: 1vw;
  }
}
@media (max-aspect-ratio: 7/10) {
  #x4a .colournav-container .label-item {
    font-size: 4.444444vw;
  }
  #x4a .colournav-container .colournav-item {
    width: 10vw;
  }
  #x4a .colournav-container .colournav-item + .colournav-item{
    margin-left: 1.944444vw;
  }
}
#x4a .tab-swiper .gallery-container .gallery-wrapper{
  justify-content: space-between;
}
#x4a .tab-swiper .gallery-container .gallery-slide{
  width: 26.25vw;
}
#x4a .tab-swiper .gallery-container .gallery-slide + .gallery-slide{
  margin-left: 0;
}
#x4a .tab-swiper .gallery-container .clip-item{
  transform: scale(1);
}
#x4a .tab-swiper .stack-list{
  width: 100%;
  justify-content: space-between;
  
}
#x4a .tab-swiper .stack-item{
  opacity: 1;
  width: 22.083333vw;
  padding: 1.875vw 2.083333vw 2.916667vw;
  background-color: #f5f6f7;
  text-align: left;
  box-sizing: content-box;
}
#x4a .tab-swiper .stack-item + .stack-item{
  margin-left: 0;
}
#x4a .tab-swiper .stack-item .h3{
  font-size: 1.354167vw;
  color: #000;
  margin-bottom: 1.25vw;
}
@media (max-aspect-ratio: 11/10){
  #x4a .tab-swiper .gallery .gallery-wrapper,
  #x4a .tab-swiper .tabnav-content .stack-list{
    transition: transform .8s cubic-bezier(0.65, 0.05, 0.36, 1);
    will-change: transform;
  }
  #x4a .tab-swiper .gallery .gallery-wrapper.active,
  #x4a .tab-swiper .tabnav-content .stack-list.active{
    transform: translateX(-38.571429vw);
  }
  #x4a .tab-swiper .stack-item{
    width: 31.142857vw;
    padding: 4.285714vw 2.857143vw;
    opacity: 1;
    transition: opacity 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
    flex-shrink: 0;
  }
  #x4a .tab-swiper .swiper-slide{
    width: 36.857143vw !important;
  }
  #x4a .tab-swiper .swiper-slide:last-child{
    display: none;
  }
  #x4a .tab-swiper .stack-item.current{
    opacity: 1;
  }
  #x4a .tab-swiper .stack-item + .stack-item{
    margin-left: 1.714286vw;
  }
  #x4a .tab-swiper .stack-item .h3{
    font-size: 2.285714vw;
    color: #000;
    margin-bottom: 1.714286vw;
  }
  #x4a .tab-swiper .stack-item p{
    font-size: 2vw;
  }
  #x4a .tab-swiper .tabnav-content::before,
  #x4a .tab-swiper .tabnav-content::after{
    content: none;
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .tab-swiper .stack-item{
    width: 100%;
    padding: 11.111111vw 11.666667vw;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
    flex-shrink: 1;
  }
  #x4a .tab-swiper .stack-item.current{
    opacity: 1;
  }
  #x4a .tab-swiper .stack-item + .stack-item{
    margin-left: -100%;
  }
  #x4a .tab-swiper .stack-item .h3{
    font-size: 5.555556vw;
    color: #000;
    margin-bottom: 5.555556vw;
  }
  #x4a .tab-swiper .stack-item p{
    font-size: 4.444444vw;
  }
  #x4a .tab-swiper .tabnav-content::before,
  #x4a .tab-swiper .tabnav-content::after{
    content: none;
  }
  #x4a .tab-swiper .swiper-slide:last-child{
    display: block;
  }
}
/* Page style */
#x4a .section-header{
  position: relative;
  text-align: center;
  -webkit-clip-path: polygon(25% 25%, 75% 25%, 75% 75%, 25% 75%);
  clip-path: polygon(25% 25%, 75% 25%, 75% 75%, 25% 75%);
  transition: clip-path .8s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-clip-path .8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4a .section-header.animated{
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
#x4a .section-header picture{
  transform: scale(.65);
  transition: transform .8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4a .section-header.animated picture{
  transform: scale(1);
}
#x4a .section-header .section-headline{
  position: absolute;
  top: 5.729167vw;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
}
#x4a .section-header .section-headline .h3,
#x4a .section-header .section-headline p{
  opacity: 0;
  transform: translateY(200%);
  transition: opacity .6s .4s ease, transform .6s .4s ease;
}
#x4a .section-header .section-headline.animated .h3,
#x4a .section-header .section-headline.animated p{
  opacity: 1;
  transform: translateY(0);
}
#x4a .section-header .section-headline p{
  margin-top: 1.666667vw;
}
#x4a .section-header .section-headline p.subtitle{
  margin-top: .833333vw;
  transform: translateY(0);
  opacity: 1;
  line-height: 1.25;
}
#x4a .section-header .desc{
  position: absolute;
  width: 34.375vw;
  bottom: 3.333333vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
#x4a .section-header .desc p{
  color: rgba(255, 255, 255, 1);
}
#x4a .text-animate .text-move{
  opacity: 0;
  transform: translateY(40%);
  transition: transform .8s ease, opacity .8s ease;
}
#x4a .text-animate .text-move.animated{
  opacity: 1;
  transform: translateY(0);
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-header .section-headline{
    top: 8.571429vw;
  }
  #x4a .section-header .desc{
    width: 63.428571vw;
    bottom: 5.714286vw;
  }
  
  #x4a .section-header .section-headline p{
    margin-top: 1.428571vw;
  }
  #x4a .section-header .section-headline p.subtitle{
    margin-top: 2.142857vw;
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-header{
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: none;
    text-align: center;
  }
  #x4a .section-header picture{
    transform: scale(1);
    transition: none;
  }
  #x4a .section-header .section-headline{
    top: 11.111111vw;
    transform: translate(-50%,40%);
    opacity: 0;
    transition: transform .8s ease, opacity .8s ease;
  }
  #x4a .section-header.animated .section-headline{
    transform: translate(-50%,0);
    opacity: 1;
  }
  #x4a .section-header .desc{
    width: 72.222222vw;
    bottom: 8.333333vw;
  }
  #x4a .section-header .desc p{
    color: #797C80;
  }
  #x4a .section-header .section-headline p{
    margin-top: 4.166667vw;
  }
  #x4a .section-header .section-headline .h3,
  #x4a .section-header .section-headline p{
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
  #x4a .section-header .section-headline p.subtitle{
    margin-top: 4.166667vw;
  }
}
#x4a .section-hero{
  position: relative;
  overflow: hidden;
}
#x4a .section-hero .hero-title{
  position: absolute;
  top: 7.8125vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 40.625vw;
}
#x4a .section-hero .hero-title img{
  width: 19.791667vw;
  margin: 0 auto;
}
#x4a .section-hero .hero-title-desc{
  font-size: 1.25vw;
  text-align: center;
  color: #fff;
  letter-spacing: 2em;
  margin-top: 1.666667vw;
  line-height: 1.25;
}
#x4a .section-hero .hero-title-desc span{
  letter-spacing: 0;
}
#x4a .section-hero .hero-desc{
  font-size: 1.25vw;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2.5vw;
  white-space: nowrap;
}
#x4a .section-hero .hero-content{
  position: relative;
}
#x4a .section-hero .hero-content .shadow{
  position: absolute;
  width: 100%;
  height: 8.020833vw;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(16,7,7) 100%);
  z-index: 1;
}
#x4a .section-hero .hero-content .hero-notes{
  width: 27.365104vw;
  right: 2.53125vw;
  bottom: 2.53125vw;
  position: absolute;
  z-index: 2;
  opacity: .5;
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-hero .hero-title{
    top: 17.142857vw;
    width: 72.142857vw;
  }
  #x4a .section-hero.animated .hero-title{
    top: 18.214286vw;
  }
  #x4a .section-hero .hero-title img{
    width: 34vw;
  }
  #x4a .section-hero .hero-title-desc{
    font-size: 2.285714vw;
    margin-top: 1.714286vw;
  }
  #x4a .section-hero .hero-desc{
    font-size: 2.285714vw;
    margin-top: 4.285714vw;
  }
  #x4a .section-hero .hero-content .shadow{
    height: 16.785714vw;
  }
  #x4a .section-hero .pic-content{
    width: 100%;
  }
  #x4a .section-hero .hero-content .hero-notes{
    width: 36.428571vw;
    right: 7.142857vw;
    bottom: 5.714286vw;
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-hero .hero-content .hero-notes{
    width: 69.444444vw;
    right: 15.833333vw;
    bottom: 11.111111vw;
  }
  #x4a .section-hero .hero-title{
    top: 37.5vw;
    width: 89.444444vw;
  }
  #x4a .section-hero .hero-title-desc{
    font-size: 3.333333vw;
    letter-spacing: 1.2em;
    margin-top: 3.333333vw;
  }
  #x4a .section-hero .hero-title img{
    width: 46.944444vw;
  }
  #x4a .section-hero .hero-desc{
    font-size: 2.777778vw;
    white-space: normal;
    margin-top: 6.666667vw;
  }
  #x4a .section-hero .hero-picture::before {
    padding-bottom: 194.44%;
  }
  #x4a .section-hero .pic-1{
    transform: translateX(-50%) scale(1.361);
  }
  #x4a .section-hero .pic-2{
    transform: translateX(-50%) scale(1.361);
  }
  #x4a .section-hero.animated .pic-1,
  #x4a .section-hero.animated .pic-2{
    transform: translateX(-50%) scale(1);
  }
  #x4a .section-hero .pic-3{
    transform: translate(-50%,-13.888889vw) scale(1);
  }
  #x4a .section-hero.animated .pic-3{
    transform: translate(-50%,10.833333vw) scale(1.115);
  }
  #x4a .section-hero .hero-content .shadow{
    height: 25vw;
  }
}
@media (max-width: 800px) and (min-aspect-ratio: 11/10) and (min-width:720px){ 
  #x4a .section-hero.animated .hero-title{
    top: 8vw;
  }
}
#x4a .highlights-shadow{
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(16,7,7) 0%, rgba(26,15,15) 26%, rgba(41,31,31) 56%, rgba(15,6,6) 95%);
  z-index: 1;
}
#x4a .section-highlights{
  position: relative;
  z-index: 2;
  margin-top: -1px;
  overflow: hidden;
}
#x4a .section-highlights .highlights-swiper-content{
  position: relative;
  z-index: 2;
}
#x4a .section-highlights .swiper{
  width: 81.25vw;
  margin: 0 auto;
  overflow: visible;
  transform: scale(1.3);
  transition: transform .8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4a .section-highlights.animated .swiper{
  transform: scale(1);
}
#x4a .section-highlights .swiper .swiper-slide{
  opacity: .1;
  transition: opacity .3s;
}
#x4a .section-highlights .swiper .swiper-slide.swiper-slide-active{
  opacity: 1;
}
#x4a .section-highlights .swiper .swiper-slide.swiper-slide-prev,
#x4a .section-highlights .swiper .swiper-slide.swiper-slide-next{ 
  cursor: pointer;
}
#x4a .section-highlights .swiper .swiper-slide .title{
  font-size: 1.666667vw;
  line-height: 1.25;
  font-weight: 400;
  position: absolute;
  top: 2.291667vw;
  left: 50%;
  transform: translate3d(-50%,140%,1px);
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: transform .8s cubic-bezier(0.65, 0.05, 0.36, 1), opacity .8s cubic-bezier(0.65, 0.05, 0.36, 1);
  width: max-content;
  z-index: 10;
  will-change: transform;
}
#x4a .section-highlights.animated .swiper .swiper-slide .title{
  opacity: 1;
  transform: translate3d(-50%,0,1px);
}
#x4a .section-highlights .swiper .swiper-slide .video-shadow{
  width: 100%;
  height: 9.635417vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-image: linear-gradient(to bottom, rgba(185,143,101) 0%,rgba(204,180,153,.68) 63%, rgba(218,198,173,0) 100%);
}
#x4a .section-highlights .content-container{
  width: 81.25vw;
  margin: 2.5vw auto 0;
  position: relative;
  z-index: 2;
  transform: translateY(200%);
  opacity: 0;
  transition: transform .8s cubic-bezier(0.65, 0.05, 0.36, 1),opacity .8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4a .section-highlights.animated .content-container{
  transform: translateY(0);
  opacity: 1;
}
#x4a .section-highlights .content-container .control-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
}
#x4a .section-highlights .arrownav-list{
  margin-left: 2.1875vw;
}
#x4a .section-highlights .pagination-item{
  color: #fff;
}
#x4a .section-highlights .pagination-line{
  width: 6.25vw;
  margin-left: .9375vw;
  margin-right: .9375vw;
}
#x4a .section-highlights .section-header{
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
@media (max-aspect-ratio: 11/10){
#x4a .section-highlights .swiper .swiper-slide .video-shadow{
  height: 18.285714vw;
}
  #x4a .section-highlights .swiper{
    width: 75.428571vw;
  }
  #x4a .section-highlights .content-container{
    width: 75.428571vw;
    margin: 5.714286vw auto 0;
  }
  #x4a .section-highlights .pagination-line{
    width: 10.5vw;
    margin-left: 1.714286vw;
    margin-right: 1.714286vw;
  }
  #x4a .section-highlights .arrownav-list{
    margin-left: 4.857143vw;
  }
  #x4a .section-highlights .swiper .swiper-slide .title{
    font-size: 2.857143vw;
    top: 3.142857vw;
  }
}
@media (max-aspect-ratio: 7/10){
#x4a .section-highlights .swiper .swiper-slide .video-shadow{
  height: 35.555556vw;
}
  #x4a .section-highlights .swiper{
    width: 95.555556vw;
    transform: scale(1);
  transition: none;
  }

  #x4a .section-highlights .content-container{
    width: 95.555556vw;
    margin: 11.111111vw auto 0;
    transform: translateY(0);
    opacity: 1;
  }
  #x4a .section-highlights .arrownav-list{
    margin-left: 9.444444vw;
  }
  #x4a .section-highlights .pagination-line{
    width: 20.416667vw;
    margin-left: 3.888889vw;
    margin-right: 3.888889vw;
  }
  #x4a .section-highlights .swiper .swiper-slide .title{
    font-size: 5.555556vw;
    top: 10.555556vw;
    transform: translate3d(-50%,0,1px);
    opacity: 1;
  }
}
#x4a .section-appearance .section-header{
  z-index: 2;
}
#x4a .section-appearance .section-header #section-appearance{
  position: absolute;
  top: -5.729167vw;
}
#x4a .section-appearance .section-header .section-headline{
  top: 0;
}
#x4a .section-appearance .section-header .appearance-desc{
  color: rgba(255,255,255, .6);
}
#x4a .section-appearance .appearance-header-video{
  position: relative;
  margin-top: -1px;
  width: 101%;
}

#x4a .section-appearance .appearance-header-video .shadow{
  width: 100%;
  height: 19.270833vw;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(15,6,6,.76) 63.7%, rgba(15,6,6) 100%);
}
#x4a .section-appearance .appearance-header-video .button-container{
  position: absolute;
  bottom: 4.166667vw;
  left: 50%;
  transform: translateX(-50%);
  width: 10.625vw;
  height: 3.333333vw;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.4);
  mask-image: url("/dam/hima-site/cn/xiangjie/s9/new/images/icons/button-solid-background.svg");
  -webkit-mask-image: url("/dam/hima-site/cn/xiangjie/s9/new/images/icons/button-solid-background.svg");
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  transition: background-color .3s ease;
}
#x4a .section-appearance .appearance-header-video .button-container:hover{
  background-color: rgba(255, 255, 255, 0.5);
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-appearance .section-header{
    background: #0F0606;
  }
  #x4a .section-appearance .section-header .section-headline{
    position: relative;
    width: 100%;
    padding-bottom: 5vw;
    margin-top: -1px;
  }
  #x4a .section-appearance .section-header #section-appearance{
    top: -8.571429vw;
  }
  #x4a .section-appearance .appearance-header-video-desc{
    width: 53.714286vw;
    margin: 5.714286vw auto 0;
    text-align: center;
  }
  #x4a .section-appearance .appearance-header-video .button-container{
    width: 22.857143vw;
    height: 5.714286vw;
    mask-image: url("/dam/hima-site/cn/xiangjie/s9/new/images/icons/button-solid-background-md.svg");
    -webkit-mask-image: url("/dam/hima-site/cn/xiangjie/s9/new/images/icons/button-solid-background-md.svg");
    bottom: 5.714286vw;
  }
  #x4a .section-appearance .appearance-header-video .button-container:hover{
    background-color: rgba(255, 255, 255, 0.4);
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-appearance .section-header .section-headline{
    padding-bottom: 0;
  }
  #x4a .section-appearance .section-header #section-appearance{
    top: -11.111111vw;
  }
  #x4a .section-appearance .appearance-header-video-desc{
    width: 72.222222vw;
    margin: 11.111111vw auto 0;
    text-align: left;
  }
  #x4a .section-appearance .appearance-header-video .button-container{
    width: 44.444444vw;
    height: 11.111111vw;
    bottom: 11.111111vw;
  }

}
#x4a .section-appearance-1{
  padding-top: 8.333333vw;
  position: relative;
}
#x4a .section-appearance-1 .content{
  position: relative;
  z-index: 2;
  overflow: hidden;
}
#x4a .section-appearance-1 .copy-top{
  width: auto;
  text-align: center;
  padding-top: 10.416667vw;
  margin-bottom: 4.166667vw;
}

#x4a .section-appearance-1 .content .pic-content{
  width: 81.25vw;
  margin: 0 auto;
  position: relative;
}
#x4a .section-appearance-1 .content .pic-content p{
  position: absolute;
  bottom: 3.333333vw;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  width: 100%;
  text-align: center;
}
#x4a .section-appearance-1 .stat-list {
  width: 55.208333vw;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: space-between;
}
#x4a .section-appearance-1 .stat-list .line{
  width: 1px;
  height: 5.416667vw;
  background-color: rgba(255, 255, 255, 0.7);
}

#x4a .section-appearance-1 .stat-item {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  width: 21.354167vw;
  white-space: nowrap;
  padding-bottom: 1.666667vw;
  border-bottom: solid 1px #E5E5E5;
}
#x4a .section-appearance-1 .stat-item:nth-child(1),
#x4a .section-appearance-1 .stat-item:nth-child(2){
  margin-bottom: 2.083333vw;
}
#x4a .section-appearance-1 .stat-value {
  position: relative;
  display: flex;
  overflow: hidden;
  height: 1em;
  font-size: var(--stat-number-font-size, 3.333333vw);
  color: #18191A;
}
#x4a .section-appearance-1 .stat-number {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
}
#x4a .section-appearance-1 .stat-number span {
  height: 1em;
  line-height: 1.25;
}
#x4a .section-appearance-1 .stat-item .stat-unit{
  margin-left: .833333vw;
  line-height: 1.25;
  color: #18191A;
}
#x4a .section-appearance-1 .stat-item .stat-caption{
  line-height: 1.25;
  color: #797C80;
  margin-left: auto;
}

#x4a .section-appearance-2{
  overflow: hidden;
}
#x4a .section-appearance-2 .content{
  width: 81.25vw;
  margin: 0 auto;
}
#x4a .section-appearance-2 .content .copy{
  margin-left: .833333vw;
}
#x4a .section-appearance-2 .swiper{
  overflow: visible;
  margin: 3.333333vw auto 0;
}
#x4a .section-appearance-2 .content-container{
  margin: 2.5vw .833333vw 0;
}
#x4a .section-appearance-2 .content-wrapper{
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#x4a .section-appearance-2 .content-wrapper .stack-list{
  text-align: left;
}
#x4a .section-appearance-2 .content-wrapper .control-wrapper{
  display: flex;
  align-items: center;
}
#x4a .section-appearance-2 .content-wrapper .arrownav-list{
  margin-left: 1.875vw;
}
@media (max-aspect-ratio: 11/10) {
  #x4a .section-appearance-1{
    padding-top: 0;
  }
  #x4a .section-appearance-1 .content .pic-content{
    width: 75.428571vw;
  }
  #x4a .section-appearance-1 .stat-list {
    position: static;
    width: 75.428571vw;
    display: flex;
    margin: 7.142857vw auto 0;
  }
  #x4a .section-appearance-1 .stat-item {
    width: 33.142857vw;
    padding-bottom: 1.428571vw;
  }
  #x4a .section-appearance-1 .stat-item:nth-child(1), #x4a .section-appearance-1 .stat-item:nth-child(2){
    margin-bottom: 2.857143vw;
  }
  #x4a .section-appearance-1 .stat-value {
    font-size: var(--stat-number-font-size, 4.571429vw);
  }
  #x4a .section-appearance-1 .stat-item .stat-unit{
    margin-left: 1.142857vw;
  }
  #x4a .section-appearance-1 .stat-list .line{
    height: 8.285714vw;
  }
  #x4a .section-appearance-1 .stat-item .stat-caption{
    margin-bottom: 0;
  }
  #x4a .section-appearance .appearance-1-shadow{
    height: 149.642857vw;
    top: -11.714286vw;
    background-image: linear-gradient(to bottom, rgba(9, 28, 48, 0) 0%, rgba(5, 24, 50) 7%, rgba(25, 58, 115) 93%, rgba(34, 73, 133, 0) 100%);
  }
  #x4a .section-appearance-1 .pic-content{
    width: 75.428571vw;
    margin: 0 auto;
  }
  #x4a .section-appearance-1 .copy-top{
    position: initial;
    width: 63.428571vw;
    text-align: center;
    padding-top: 14.285714vw;
    margin: 0 auto 5.714286vw;
  }
  #x4a .section-appearance-1 .pic-content .appearance-1-svg{
    top: auto;
    bottom: 0;
  }
  #x4a .section-appearance-1 .pic-content .appearance-1-svg .appearance-1-cy{
    stroke-dasharray: 420 0;
    stroke-dashoffset: 116;
  }
  #x4a .section-appearance-1 .pic-content.animated.active .appearance-1-svg .appearance-1-cy{
    stroke-dasharray: 0 420;
  }
  #x4a .section-appearance-1 .video-content{
    margin-top: 28vw;
  }
  #x4a .section-appearance-1 .video-content .copy{
    position: absolute;
    width: 63.428571vw;
    top: -13.714286vw;
  }
  #x4a .section-appearance-1 .content .inline-video{
    width: 75.428571vw;
  }
  #x4a .section-appearance-2 .content{
    width: 75.428571vw;
  }
  #x4a .section-appearance-2 .content .copy{
    text-align: center;
  }
  #x4a .section-appearance-2 .swiper{
    margin: 5.714286vw auto 0;
  }
  #x4a .section-appearance-2 .content-wrapper{
    flex-direction: column;
  }
  #x4a .section-appearance-2 .content-wrapper .control-wrapper{
    width: 100%;
    justify-content: space-between;
  }
  #x4a .section-appearance-2 .content-container{
    margin: 5.714286vw 1.142857vw 0;
  }
  #x4a .section-appearance-2 .content-wrapper .control-wrapper{
    margin-top: 5.714286vw;
  }
}

@media (max-aspect-ratio: 7/10) {
  #x4a .section-appearance-1{
    padding-top: 0;
  }
  #x4a .section-appearance-1 .content .pic-content{
    width: 95.555556vw;
  }
  #x4a .section-appearance-1 .stat-list {
    position: static;
    width: 72.222222vw;
    display: flex;
    margin-top: 13.888889vw;
  }
  #x4a .section-appearance-1 .stat-item {
    width: 100%;
    padding-top: 0;
    border-top: solid 1px rgba(255, 255, 255, 0.4);
  }
  #x4a .section-appearance-1 .stat-value {
    font-size: var(--stat-number-font-size, 8.888889vw);
  }
  #x4a .section-appearance-1 .stat-item .stat-unit{
    margin-left: 3.333333vw;
  }
  #x4a .section-appearance-1 .stat-item:nth-child(1), 
  #x4a .section-appearance-1 .stat-item:nth-child(2),
  #x4a .section-appearance-1 .stat-item:nth-child(3){
    margin-bottom: 5.555556vw;
  }

  #x4a .section-appearance-1 .copy-top{
    width: 72.222222vw;
    margin: 27.777778vw auto 11.111111vw;
    padding-top: 0;
    text-align: left;
  }
  #x4a .section-appearance-1 .copy-top p{
    width: 76.388889vw;
  }
  #x4a .section-appearance-1 .content .inline-video{
    width: 95.555556vw;
  }
  #x4a .section-appearance-2 .content{
    width: 95.555556vw;
  }
  #x4a .section-appearance-2 .content .copy{
    width: 72.222222vw;
    text-align: left;
    margin: 0 auto;
  }
  #x4a .section-appearance-2 .swiper{
    margin: 11.111111vw auto 0;
  }
  #x4a .section-appearance-2 .content-container{
    width: 72.222222vw;
    margin: 11.111111vw auto 0;
  }
  #x4a .section-appearance-2 .content-wrapper .control-wrapper{
    margin-top: 11.111111vw;
  }
}
#x4a .section-appearance-new .content{
  width: 81.25vw;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
#x4a .section-appearance-new .content .left{
  width: 53.75vw;
  transform: scale(1.55);
  transform-origin: left;
  transition: transform 0.8s;
  position: relative;
  z-index: 2;
}
#x4a .section-appearance-new.animated .content .left{
  transform: scale(1);
}
#x4a .section-appearance-new .content .right{
  width: 18.75vw;
  padding: 12.5vw 4.375vw;
  background-color: #F5F6F7;
  box-sizing: content-box;
}
#x4a .section-appearance-new .content .right .h3{
  white-space: nowrap;
}
#x4a .text-animate.section-appearance-new .content .text-move{
  transform: translateY(0);
  opacity: 1;
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-appearance-new .content{
    flex-direction: column-reverse;
    width: 75.428571vw;
  }
  #x4a .section-appearance-new .content .left{
    width: 100%;
    transform: scale(1);
    transition: none;
  }
  #x4a .section-appearance-new .content .right{
    width: 57.857143vw;
    margin: 0 auto;
    background-color: transparent;
    text-align: center;
    padding: 0 0 5.714286vw;
  }
  #x4a .text-animate.section-appearance-new .content .text-move{
    transform: translateY(40%);
    opacity: 0;
  }
  #x4a .text-animate.section-appearance-new .content .text-move.animated{
    transform: translateY(0);
    opacity: 1;
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-appearance-new .content .right{
    width: 72.222222vw;
    text-align: left;
    padding: 0 0 11.111111vw;
  }
  #x4a .section-appearance-new .content{
    width: 95.555556vw;
  }
}
#x4a .section-color .color-selection {
  position: relative;
  overflow: hidden;
}
#x4a .section-color .gallery-car-container {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  transform: translateX(0%);
}
#x4a .section-color .gallery.animating .gallery-car-container {
  overflow: visible;
}
#x4a .section-color .current .gallery-car-container {
  z-index: 3;
}

#x4a .section-color .colournav-container {
  flex-direction: column-reverse;
  position: absolute;
  bottom: 2.5vw;
  left: 50%;
  transform: translate(-50%,100%);
  opacity: 0;
  transition: opacity .8s cubic-bezier(0.65, 0.05, 0.36, 1), transform .8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4a .section-color.animated .colournav-container {
  transform: translate(-50%,0);
  opacity: 1;
}
#x4a .section-color .label-list {
  width: auto;
  text-align: center;
  margin-top: 1.25vw;
}
#x4a .section-color .label-item {
  width: max-content;
  transition: opacity 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  color: #fff;
}
#x4a .section-color .gallery-slide.left .clip-item,
#x4a .section-color .gallery-slide.right .clip-item,
#x4a .section-color .gallery-slide.current .clip-item{
  clip-path: none;
}
#x4a .section-color .copy-content{
  position: absolute;
  z-index: 4;
  text-align: center;
  left: 50%;
  transform: translate(-50%,100%);
  top: 5.208333vw;
  opacity: 0;
  transition: opacity .8s cubic-bezier(0.65, 0.05, 0.36, 1), transform .8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4a .section-color.animated .copy-content{
  transform: translate(-50%,0);
  opacity: 1;
}
#x4a .section-color .gallery-container .gallery{
    margin-top: -1px;
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-color .colournav-container{
    position: initial;
    transform: none;
    margin-top: 5.714286vw;
    opacity: 1;
  }
  #x4a .section-color .label-item{
    color: #000;
  }
  #x4a .section-color .label-list{
    margin-top: 1.428571vw;
  }
  #x4a .section-color .copy-content{
    opacity: 0;
    top: 6.428571vw;
    transform: translate(-50%,40%);
  }
  #x4a .section-color.active .copy-content{
    opacity: 1;
    transform: translate(-50%,0);
  }
}
@media (max-aspect-ratio: 7/10) {
  #x4a .section-color .copy-content{
    position: initial;
    transform: translate(0,40%);
    width: 72.222222vw;
    margin:0 auto 11.111111vw;
    text-align: left;
  }
  #x4a .section-color.active .copy-content{
    opacity: 1;
    transform: translate(0,0);
  }
  #x4a .section-color .copy-content .h3{
    color: #18191A;
    font-weight: 400;
  }
  #x4a .section-color .label-item {
    transition: opacity 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  }
  #x4a .section-color .autoplay-trigger {
    top: 90%;
  }
  #x4a .section-color .colournav-container{
    margin-top: 11.111111vw;
  }
  #x4a .colournav-container .label-item{
    font-size: 4.444444vw;
  }
  #x4a .section-color .label-list{
    margin-top: 2.777778vw;
  }
}
#x4a .section-appearance-4{
  width: 81.25vw;
  margin: 0 auto;
}
#x4a .section-appearance-4 .copy{
  width: 34.375vw;
  margin-left: .833333vw;
  margin-bottom: 3.333333vw;
}
#x4a .section-appearance-4 .swiper{
  overflow: visible;
}
#x4a .section-appearance-4 .swiper-wrapper{
  justify-content: space-between;
}
#x4a .section-appearance-4 .swiper-wrapper .swiper-slide{
  flex-shrink: 1;
}
#x4a .section-appearance-4 .swiper-wrapper .swiper-slide:nth-child(1){
  width: 51.666667vw;
}
#x4a .section-appearance-4 .swiper-wrapper .swiper-slide:nth-child(2){
  width: 27.5vw;
  transform: translateY(-11.979167vw);
}
#x4a .section-appearance-4 .animate-trigger{
  position: absolute;
  top: 50%;
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-appearance-4{
    width: 75.428571vw;
  }
  #x4a .section-appearance-4 .copy{
    width: 63.428571vw;
    text-align: center;
    margin: 0 auto 5.714286vw;
  }
  #x4a .section-appearance-4 .swiper-wrapper .swiper-slide{
    flex-shrink: 0;
  }
  #x4a .section-appearance-4 .swiper-wrapper .swiper-slide:nth-child(1){
    width: 100%;
    transform: translateY(0);
  }
  #x4a .section-appearance-4 .swiper-pagination{
    bottom: 3.428571vw;
  }
  #x4a .section-appearance-4 .swiper-pagination-bullet{
    width: 4.571429vw;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    border-radius: 0;
    transition: background-color .8s cubic-bezier(0.65, 0.05, 0.36, 1);
    margin: 0 .857143vw;
    position: relative;
  }
  #x4a .section-appearance-4 .swiper-pagination-bullet::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    transform: scaleX(0);
    transform-origin: left;
  }
  #x4a .section-appearance-4.animated .swiper-pagination-bullet.swiper-pagination-bullet-active::after{
    transform: scaleX(1);
    transition: transform 3s;
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-appearance-4{
    width: 95.555556vw;
  }
  #x4a .section-appearance-4 .copy{
    width: 72.222222vw;
    margin: 0 auto 11.111111vw;
    text-align: left;
  }
  #x4a .section-appearance-4 .swiper-wrapper .swiper-slide:nth-child(1){
    width: 100%;
    transform: translateY(0);
  }
  #x4a .section-appearance-4 .swiper-wrapper .swiper-slide:nth-child(2){
    width: auto;
    margin-top: 0;
    transform: translateY(0);
  }
  #x4a .section-appearance-4 .swiper-pagination{
    bottom: 11.111111vw;
  }
  #x4a .section-appearance-4 .swiper-pagination-bullet{
    width: 13.888889vw;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    border-radius: 0;
    transition: background-color .8s cubic-bezier(0.65, 0.05, 0.36, 1);
    margin: 0 1.666667vw;
  }

}
#x4a .section-appearance-5{
  width: 100%;
}
#x4a .section-appearance-5 .swiper{
  width: 81.25vw;
  margin: 0 auto;
  overflow: visible;
}
#x4a .section-appearance-5 .swiper .swiper-wrapper{
  transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}

#x4a .section-appearance-5 .copy{
  width: 81.25vw;
  margin: 0 auto 4.166667vw;
}
#x4a .section-appearance-5 .copy .h2{
  margin-left: .833333vw;
}
#x4a .section-appearance-5 .stack-list{
  text-align: left;
  width: 32.291667vw;
  margin-left: .833333vw;
}
#x4a .section-appearance-5 .stack-item .h3{
  font-size: 1.354167vw;
  color: #000;
  margin-bottom: 1.25vw;
}
#x4a .section-appearance-5 .content-container{
  width: 81.25vw;
  margin: 2.395833vw auto 0;
}
#x4a .section-appearance-5 .content-container .content-wrapper{
  display: flex;
  justify-content: space-between;
}
#x4a .section-appearance-5 .content-container .control-wrapper{
  display: flex;
  align-items: center;
}
#x4a .section-appearance-5 .arrownav-list{
  margin-left: 1.875vw;
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-appearance-5{
    width: 100%;
  }
  #x4a .section-appearance-5 .copy{
    text-align: center;
  }
  #x4a .section-appearance-5 .copy .h2{
    width: 63.428571vw;
    margin: 0 auto 5.714286vw;
  }
  #x4a .section-appearance-5 .gallery-container{
    width: 75.428571vw;
    margin: 0 auto;
  }
  #x4a .section-appearance-5 .stack-list{
    width: 55.714286vw;
    margin-right: 0;
    margin-left: 1.142857vw;
  }
  #x4a .section-appearance-5 .arrownav-list{
    order: 3;
  }
  #x4a .section-appearance-5 .stack-list .stack-item p.intro{
    margin-top: 1.428571vw;
  }
  #x4a .section-appearance-5 .stack-item .h3{
    font-size: 2.857143vw;
    margin-bottom: 1.428571vw;
  }
  #x4a .section-appearance-5 .content-container .content-wrapper{
    flex-direction: column;
  }
  #x4a .section-appearance-5 .content-container .control-wrapper{
    justify-content: space-between;
    margin-left: 1.142857vw;
    margin-top: 2.285714vw;
  }
  #x4a .section-appearance-5 .swiper{
    width: 75.428571vw;
  }
  #x4a .section-appearance-5 .content-container{
    width: 75.428571vw;
    margin: 5.714286vw auto 0;
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-appearance-5{
    width: 95.555556vw;
    margin: 0 auto;
  }
  #x4a .section-appearance-5 .copy{
    text-align: left;
  }
  #x4a .section-appearance-5 .copy .h2{
    width: 72.222222vw;
    margin: 0 auto 11.111111vw;
  }
  #x4a .section-appearance-5 .gallery-container{
    width: 100%;
  }
  #x4a .section-appearance-5 .stack-list{
    width: 72.222222vw;
    margin-right: 0;
    margin-left: 0;
  }
  #x4a .section-appearance-5 .arrownav-list{
    order: 3;
  }
  #x4a .section-appearance-5 .stack-list .stack-item p.intro{
    margin-top: 5.555556vw;
  }
  #x4a .section-appearance-5 .swiper{
    width: 100%;
  }
  #x4a .section-appearance-5 .stack-item .h3{
    font-size: 5.555556vw;
  }
  #x4a .section-appearance-5 .content-container .control-wrapper{
    margin-left: 0;
    margin-top: 5vw;
  }
  #x4a .section-appearance-5 .gallery-slide .clip-item{
    -webkit-mask-image: url("/dam/hima-site/cn/xiangjie/s9/new/images/icons/mask-img.svg");
    mask-image: url("/dam/hima-site/cn/xiangjie/s9/new/images/icons/mask-img.svg");
    -webkit-mask-size: 1%;
    mask-size: 1%;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    transition: mask-size 0s .8s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-mask-size 0s .8s cubic-bezier(0.65, 0.05, 0.36, 1), transform 0s .8s cubic-bezier(0.65, 0.05, 0.36, 1);
    transform: scale(1.15);
  }
  #x4a .section-appearance-5 .gallery-slide.current .clip-item{
  -webkit-mask-size: 400%;
  mask-size: 400%;
  transition: mask-size .8s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-mask-size .8s cubic-bezier(0.65, 0.05, 0.36, 1), transform .8s cubic-bezier(0.65, 0.05, 0.36, 1);
  transform: scale(1);
}
}
#x4a .section-comfortable .comfortable-header{
  position: relative;
  -webkit-clip-path: polygon(25% 25%, 75% 25%, 75% 75%, 25% 75%);
  clip-path: polygon(25% 25%, 75% 25%, 75% 75%, 25% 75%);
  transition: clip-path .8s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-clip-path .8s cubic-bezier(0.65, 0.05, 0.36, 1);
  text-align: center;
}
#x4a .section-comfortable .comfortable-header picture{
  transform: scale(.65);
  transition: transform .8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4a .section-comfortable .comfortable-header.animated{
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
#x4a .section-comfortable .comfortable-header.animated picture{
  transform: scale(1);
}
#x4a .section-comfortable .comfortable-headline{
  position: absolute;
  top: 5.729167vw;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  text-align: center;
}

#x4a .section-comfortable .comfortable-header .desc{
  position: absolute;
  width: 34.375vw;
  bottom: 3.333333vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
#x4a .section-comfortable .comfortable-header .desc p{
  color: rgba(255, 255, 255, 0.8);
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-comfortable .comfortable-header .desc{
    width: 63.428571vw;
    bottom: 5.428571vw;
  }
  #x4a .section-comfortable .comfortable-headline{
    top: 8.571429vw;
  }
  #x4a .section-comfortable .section-header .desc{
    width: 85.714286vw;
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-comfortable .section-header .desc{
    width: 72.222222vw;
    margin: 11.111111vw auto 0;
    position: initial;
    opacity: 1;
    transform: none;
  }
  #x4a .section-comfortable .section-header .desc p{
    color: #797C80;
  }
  #x4a .section-comfortable .comfortable-header{
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: none;
  text-align: center;
}
#x4a .section-comfortable .comfortable-header picture{
  transform: scale(1);
  transition: none;
}

#x4a .section-comfortable .comfortable-headline{
  top: 11.111111vw;
}
#x4a .section-comfortable .comfortable-header .desc{
  position: initial;
  width: 72.222222vw;
  transform: none;
  margin: 11.111111vw auto 0;
}
#x4a .section-comfortable .comfortable-header .desc p{
  color: #797C80;

}
}
#x4a .section-comfortable-1 .content{
  position: relative;
  clip-path: polygon(9.375% 18.519%, 90.625% 18.519%, 90.625% 100%, 9.375% 100%);
}
#x4a .section-comfortable-1 .content .title,
#x4a .section-comfortable-1 .content .desc{
  position: absolute;
  color: #fff;
  z-index: 1;
  top: 6.25vw;
  left: 50%;
  transform: translate(-50%,10.416667vw);
  width: 36.458333vw;
  text-align: center;
}
#x4a .section-comfortable-1 .content .desc{
  opacity: .7;
  margin-top: 3.645833vw;
}
#x4a .section-comfortable-1 .content .pic-content{
  transform: scale(.9);
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-comfortable-1{
    padding-top: 14.285714vw;
  }
  #x4a .section-comfortable-1 .content{
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    display: flex;
    flex-direction: column;
    width: 75.428571vw;
    margin: 0 auto;
  }
  #x4a .section-comfortable-1 .content .pic-content{
    transform: scale(1);
    order: 3;
  }
  #x4a .section-comfortable-1 .content .title, 
  #x4a .section-comfortable-1 .content .desc{
    position: initial;
    transform: none;
    width: 63.428571vw;
    margin: 0 auto;
  }
  #x4a .section-comfortable-1 .content .title{
    order: 1;
  }
  #x4a .section-comfortable-1 .content .desc{
    order: 2;
  }
  #x4a .section-comfortable-1 .content .title .h2{
    margin-bottom: 2.285714vw;
    color: #000;
  }
  #x4a .section-comfortable-1 .content .desc{
    margin-top: 0;
    margin-bottom: 5.714286vw;
    opacity: 1;
  }
  #x4a .section-comfortable-1 .content .desc p{
    color: #797C80;
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-comfortable-1{
    padding-top: 27.777778vw;
  }
  #x4a .section-comfortable-1 .content{
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    width: 95.555556vw;
  }
  #x4a .section-comfortable-1 .content .pic-content{
    transform: scale(1);
    order: 2;
  }
  #x4a .section-comfortable-1 .content .title, 
  #x4a .section-comfortable-1 .content .desc{
    position: initial;
    transform: none;
    width: 72.222222vw;
    margin: 0 auto;
  }
  #x4a .section-comfortable-1 .content .title{
    order: 1;
  }
  #x4a .section-comfortable-1 .content .desc{
    order: 3;
  }
  #x4a .section-comfortable-1 .content .title .h2{
    margin-bottom: 11.111111vw;
    color: #000;
  }
  #x4a .section-comfortable-1 .content .desc{
    margin-top: 11.111111vw;
    opacity: 1;
  }
  #x4a .section-comfortable-1 .content .desc p{
    color: #797C80;
  }
}
#x4a .section-comfortable-2{
  width: 100%;
  overflow: hidden;
}
#x4a .section-comfortable-2 .content{
  width: 81.25vw;
  margin: 0 auto;
}
#x4a .section-comfortable-2 .content .copy{
  width: 34.375vw;
  text-align: center;
  margin: 0 auto;
}
#x4a .section-comfortable-2 .gallery-container{
  overflow: visible;
  margin-top: 3.333333vw;
}
#x4a .section-comfortable-2 .swiper-wrapper{ 
  transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4a .section-comfortable-2 .gallery-wrapper{
  transition: transform .8s cubic-bezier(0.65, 0.05, 0.36, 1);
  will-change: transform;
}
#x4a .section-comfortable-2 .gallery-wrapper.active{
  transform: translateX(calc(-100% - 1.25vw));
}
#x4a .section-comfortable-2 .gallery{
  transition: transform .8s cubic-bezier(0.65, 0.05, 0.36, 1);
  will-change: transform;
}
#x4a .section-comfortable-2 .gallery.mousehover{
  transform: translateX(calc(-19.375vw - 1.25vw));
}
#x4a .section-comfortable-2 .gallery-slide{
  width: 19.375vw;
  height: 29.0625vw;
  flex-shrink: 0;
  transition: width .8s cubic-bezier(0.65, 0.05, 0.36, 1);
}

#x4a .section-comfortable-2 .gallery-container .gallery-slide + .gallery-slide{
  margin-left: 1.25vw;
}
#x4a .section-comfortable-2  .text-content{
  white-space: nowrap;
}
#x4a .section-comfortable-2 .gallery-slide .text-content{
  position: absolute;
  left: 1.666667vw;
  bottom: 1.666667vw;
  color: #fff;
  font-weight: 700;
}
#x4a .section-comfortable-2 .gallery-slide.current .text-content{
  z-index: 2;
}
#x4a .section-comfortable-2 .gallery-container .swiper{
  visibility: hidden;
}
#x4a .section-comfortable-2 .pagination-content{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 81.25vw;
  margin-top: 4.166667vw;
}
#x4a .section-comfortable-2 .pagination-content .arrownav-list{
  margin-left: 1.875vw;
}
#x4a .section-comfortable-2 .gallery-container .clip-item{
  transform: scale(1);
}
#x4a .section-comfortable-2 .gallery-container .clip-item img{
  height: 29.0625vw;
  object-fit: cover;
}
#x4a .section-comfortable-2 .gallery-slide:hover{
  width: 40vw;
}

@media (max-aspect-ratio: 11/10){
  #x4a .section-comfortable-2 .content{
    width: 100%;
    overflow: hidden;
  }
  #x4a .section-comfortable-2 .content .copy{
    width: 63.428571vw;
    text-align: center;
  }
  #x4a .section-comfortable-2 .gallery-slide{
    width: 36.857143vw;
    height: auto;
  }
  #x4a .section-comfortable-2 .gallery-container .clip-item img{
    height: auto;
    object-fit: cover;
  }
  #x4a .section-comfortable-2 .gallery-container{
    width: 75.428571vw;
    margin: 5.714286vw auto 0;
  }
  #x4a .section-comfortable-2 .gallery-container .gallery-slide + .gallery-slide{
    margin-left: 1.714286vw;
  }
  #x4a .section-comfortable-2 .pagination-content{
    width: 74.285714vw;
    justify-content: space-between;
    margin: 5.714286vw 0 0 13.428571vw;
  }
  #x4a .section-comfortable-2 .slide-item .text-content{
    left: 50%;
    transform: translateX(-50%);
    bottom: 2.857143vw;
    position: absolute;
  }
  #x4a .section-comfortable-2 .gallery-slide:hover{
    width: 36.857143vw;
  }
  #x4a .section-comfortable-2 .gallery-container .swiper{
    visibility: visible;
  }
  #x4a .section-comfortable-2 .slide-item{
    display: flex;
  }
  #x4a .section-comfortable-2 .slide-item>div{
    width: 36.857143vw;
    position: relative;
  }
  #x4a .section-comfortable-2 .slide-item>div:nth-child(2){
    margin-left: 1.714286vw;
  }
  
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-comfortable-2 .content{
    width: 95.555556vw;
    overflow: hidden;
  }
  #x4a .section-comfortable-2 .content .copy{
    width: 72.222222vw;
    text-align: left;
  }
  #x4a .section-comfortable-2 .gallery-slide{
    width: 100%;
  }
  #x4a .section-comfortable-2 .gallery-container{
    margin-top: 11.111111vw;
    width: 100%;
  }
  #x4a .section-comfortable-2 .gallery-container .gallery-slide + .gallery-slide{
    margin-left: -100%;
  }
  #x4a .section-comfortable-2 .gallery-wrapper.active{
    transform: translateX(0%);
  }
  #x4a .section-comfortable-2  .gallery-slide.current .clip-item {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  #x4a .section-comfortable-2  .gallery-slide.left .clip-item {
    -webkit-clip-path: inset(0 100% 0 0);
      clip-path: inset(0 100% 0 0);
  }
  #x4a .section-comfortable-2  .gallery-slide.right .clip-item {
    -webkit-clip-path: inset(0 0 0 100%);
      clip-path: inset(0 0 0 100%);
  }
  #x4a .section-comfortable-2 .gallery-container .clip-item picture{
    transform: scale(1.15);
    transition: transform 0s 0.8s;
  }
  #x4a .gallery-container .current .clip-item picture{
    transition: transform 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
    transform: scale(1);
  }
  #x4a .section-comfortable-2 .pagination-content{
    width: 72.222222vw;
    justify-content: space-between;
    margin: 7.777778vw auto 0;
  }
  #x4a .section-comfortable-2 .gallery-slide .text-content{
    bottom: 6.666667vw;
    left: 50%;
    transform: translateX(-50%);
  }
  #x4a .section-comfortable-2 .gallery-slide:hover{
    width: 100%;
  }
  #x4a .section-comfortable-2 .gallery-container .swiper{
    visibility: visible;
  }
  #x4a .section-comfortable-2 .pagination-content .arrownav-list.animating .arrownav-item{
    pointer-events: none;
  }
}
#x4a .section-comfortable-3{
  width: 81.25vw;
  margin: 0 auto;
}
#x4a .section-comfortable-3 .h2{
  text-align: center;
  margin-bottom: 4.166667vw;
}
#x4a .section-comfortable-3 .tabnav-content{
  margin-top: 2.5vw;
}
#x4a .section-comfortable-3 .stack-list{
  margin-top: .833333vw;
  width: 38.8125vw;
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-comfortable-3{
  width: 100%;
}
#x4a .section-comfortable-3 .h2{
  margin: 0 auto 5.714286vw;
  width: 63.428571vw;
}
#x4a .section-comfortable-3 .tabnav-content{
  margin-top: 5.714286vw;
}
#x4a .section-comfortable-3 .stack-list{
  margin: 2.857143vw auto 0;
  width: 55vw;
}
#x4a .section-comfortable-3 .tabnav-content .tabnav-item + .tabnav-item{
  margin-left: 10vw;
}
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-comfortable-3{
  width: 100%;
}
#x4a .section-comfortable-3 .h2{
  text-align: left;
  margin: 0 auto 11.111111vw;
  width: 72.222222vw;
}
#x4a .section-comfortable-3 .tabnav-content{
  margin-top: 11.111111vw;
}
#x4a .section-comfortable-3 .stack-list{
  margin: 5.555556vw auto 0;
  width: 72.222222vw;
}
#x4a .section-comfortable-3 .tabnav-content .tabnav-item + .tabnav-item{
  margin-left: 19.444444vw;
}
}
#x4a .section-comfortable-4{
  width: 81.25vw;
  margin: 0 auto;
}
#x4a .section-comfortable-4 .copy{
  text-align: center;
  margin-bottom: 4.166667vw;
}
#x4a .section-comfortable-4 .desc{
  width: 41.354167vw;
  margin: 2.5vw auto 0;
  text-align: center;
}
#x4a .section-comfortable-4 .swiper{
  margin: 3.333333vw auto 0;
  overflow: visible;
}
#x4a .section-comfortable-4 .content-container{
  margin: 2.5vw .833333vw 0;
}
#x4a .section-comfortable-4 .content-wrapper{
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#x4a .section-comfortable-4 .content-wrapper .stack-list{
  text-align: left;
}
#x4a .section-comfortable-4 .content-wrapper .control-wrapper{
  display: flex;
  align-items: center;
}
#x4a .section-comfortable-4 .content-wrapper .arrownav-list{
  margin-left: 1.875vw;
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-comfortable-4{
    width: 75.428571vw;
  }
  #x4a .section-comfortable-4 .copy .h2{
    width: 63.428571vw;
    margin: 0 auto 5.714286vw;
    text-align: center;
  }
  #x4a .section-comfortable-4 .content-container{
    margin: 5.714286vw 1.142857vw 0;
  }
  #x4a .section-comfortable-4 .content-wrapper{
        flex-direction: column;
  }
  #x4a .section-comfortable-4 .content-wrapper .control-wrapper{
    width: 100%;
    justify-content: space-between;
    margin: 5.714286vw auto 0;
  }
  #x4a .section-comfortable-4 .desc{
    width: 55vw;
    margin: 5.714286vw auto 0;
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-comfortable-4{
    width: 95.555556vw;
  }
  #x4a .section-comfortable-4 .copy .h2{
    width: 72.222222vw;
    margin: 0 auto 11.111111vw;
    text-align: left;
  }
  #x4a .section-comfortable-4 .content-container{
    width: 72.222222vw;
    margin: 11.111111vw auto 0;
  }
  #x4a .section-comfortable-4 .desc{
    width: 72.222222vw;
    margin: 11.111111vw auto 0;
    text-align: left;
  }
}
#x4a .section-comfortable-5{
  width: 81.25vw;
  margin: 0 auto;
  position: relative;
}
#x4a .section-comfortable-5 .copy{
  width: 21.875vw;
  margin-left: .833333vw;
  position: absolute;
  top: 18.229167vw;
  left: 0;
}
#x4a .section-comfortable-5 .content{
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
#x4a .section-comfortable-5 .content .pic-1{
  width: 53.75vw;
  height: 34.375vw;
  overflow: hidden;
  will-change: transform;
}
#x4a .section-comfortable-5 .content .pic-2{
  width: 25.416667vw;
  margin-top: 16.666667vw;
  transform: translateY(7.8125vw);
  overflow: hidden;
  will-change: transform;
}
#x4a .section-comfortable-5 .desc{
  display: flex;
  justify-content: flex-end;
  margin-right: .833333vw;
  bottom: 0;
  right: 0;
  transform: translateY(1.041667vw);
  will-change: transform;
  white-space: nowrap;
  position: absolute;
}
#x4a .section-comfortable-5 .desc .line{
  width: 1px;
  height: 5.416667vw;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 0 3.333333vw;
}
#x4a .section-comfortable-5 .desc p{
  font-size: 1.145833vw;
}
#x4a .section-comfortable-5 .desc p:nth-child(2){
  font-size: 3.333333vw;
  color: #18191A;
  line-height: 1.25;
  margin-top: .416667vw;
}
#x4a .section-comfortable-5 .desc p:nth-child(2) span{
  font-size: 1.458333vw;
  margin-left: .833333vw;
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-comfortable-5{
    width: 75.428571vw;
  }
  #x4a .section-comfortable-5 .copy{
    position: initial;
    width: 100%;
    margin-left: 0;
    margin-bottom: 5.714286vw;
    display: flex;
    justify-content: space-between;
  }
  #x4a .section-comfortable-5 .copy .h2{
    width: 25.857143vw;
    margin-bottom: 0;
  }
  #x4a .section-comfortable-5 .copy p{
    width: 47.857143vw;
  }
  #x4a .section-comfortable-5 .content .pic-1{
    width: 47.857143vw;
    height: auto;
    transform: translateY(0);
  }
  #x4a .section-comfortable-5 .content .pic-2{
    width: 25.857143vw;
    margin-top: 0;
    transform: translateY(0);
  }
  #x4a .section-comfortable-5 .desc .line{
    height: 8.285714vw;
    margin: 0 5.142857vw;
  }
  #x4a .section-comfortable-5 .desc{
    justify-content: center;
    transform: translateY(0);
    margin: 5.714286vw auto 0;
    position: initial;
  }
  #x4a .section-comfortable-5 .desc p{
    font-size: 2vw;
  }
  #x4a .section-comfortable-5 .desc p:nth-child(2){
    font-size: 4vw;
  }
  #x4a .section-comfortable-5 .desc p:nth-child(2) span{
    font-size: 2vw;
    margin-left: 1.142857vw;
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-comfortable-5{
    width: 95.555556vw;
  }
  #x4a .section-comfortable-5 .copy{
    width: 72.222222vw;
    margin: 0 auto;
    position: initial;
  }
  #x4a .section-comfortable-5 .copy .h2{
    margin-bottom: 11.111111vw;
    width: auto;
  }
  #x4a .section-comfortable-5 .content {
    flex-direction: column;
  }
  #x4a .section-comfortable-5 .content .pic-1{
    width: auto;
    height: auto;
    transform: translateY(0);
  }
  #x4a .section-comfortable-5 .content .pic-2{
    width: auto;
    margin-top: 2.777778vw;
    transform: translateY(0);
  }
  #x4a .section-comfortable-5 .desc{
    justify-content: space-between;
    transform: translateY(0);
    margin: 0 auto;
    flex-wrap: wrap;
    width: 72.222222vw;
  }
  #x4a .section-comfortable-5 .text-content{
    width: 72.222222vw;
    margin: 11.111111vw auto 8.888889vw;
  }
  #x4a .section-comfortable-5 .desc>div{ 
    width: 30.555556vw;
    padding-top: 4.444444vw;
    border-top: solid 1px rgba(24,25,26,.2);
  }
  #x4a .section-comfortable-5 .desc>div:nth-child(1){
    margin-bottom: 8.888889vw;
  }
  #x4a .section-comfortable-5 .desc p{
    font-size: 3.888889vw;
  }
  #x4a .section-comfortable-5 .desc p:nth-child(2){
    font-size: 8.888889vw;
  }
  #x4a .section-comfortable-5 .desc p:nth-child(2) span{
    font-size: 3.888889vw;
    margin-left: 3.333333vw;
  }
}
#x4a .section-comfortable-6{
  width: 81.25vw;
  margin: 0 auto;
}
#x4a .section-comfortable-6 .h2{
  text-align: center;
  margin-bottom: 4.166667vw;
}
#x4a .section-comfortable-6 .tabnav-content{
  margin-top: 2.5vw;
}
#x4a .section-comfortable-6 .stack-list{
  margin-top: .833333vw;
  width: 41.666667vw;
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-comfortable-6{
    width: 100%;
    margin: 0 auto;
  }
  #x4a .section-comfortable-6 .h2{
    width: 63.428571vw;
    text-align: center;
    margin: 0 auto 5.714286vw;
  }
  #x4a .section-comfortable-6 .stack-list{
    width: 66.928571vw;
    margin: 2.857143vw auto 0;
  }
  #x4a .section-comfortable-6 .tabnav-content{
    margin-top: 5.714286vw;
  }
  #x4a .section-comfortable-6 .tabnav-content .tabnav-item + .tabnav-item{
    margin-left: 6.285714vw;
  }
  #x4a .section-comfortable-6 .tabnav-content .tabnav-wrapper{
    padding: 0 13.428571vw;
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-comfortable-6{
    width: 100%;
    margin: 0 auto;
  }
  #x4a .section-comfortable-6 .h2{
    width: 72.222222vw;
    text-align: left;
    margin: 0 auto 11.111111vw;
  }
  #x4a .section-comfortable-6 .stack-list{
    width: 72.222222vw;
    margin: 5.555556vw auto 0;
  }
  #x4a .section-comfortable-6 .tabnav-content{
    margin-top: 11.111111vw;
  }
  #x4a .section-comfortable-6 .tabnav-content .tabnav-item + .tabnav-item{
    margin-left: 13.888889vw;
  }
  #x4a .section-comfortable-6 .tabnav-content .tabnav-wrapper{
    padding: 0 13.888889vw;
  }
}
#x4a .section-comfortable-7 .gallery-container{
  margin: 0 auto;
}
#x4a .section-comfortable-7 .h2{
  text-align: center;
  margin-bottom: 4.166667vw;
}
#x4a .section-comfortable-7 .gallery-container .clip-item {
  transform: scale(1);
}
#x4a .section-comfortable-7 .colournav-container{
  flex-direction: column-reverse;
  position: absolute;
  bottom: 3.333333vw;
  left: 50%;
  transform: translateX(-50%);
}
#x4a .section-comfortable-7 .colournav-container .label-list{
  width: 100%;
}
#x4a .section-comfortable-7 .colournav-container .label-item{
  color: rgba(255,255,255,.7);
  width: 100%;
  text-align: center;
  font-weight: 400;
  margin-top: 1.25vw;
  transition: opacity .8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4a .section-comfortable-7 .colournav-container .label-item span{
  color: #ffffff;
  display: block;
  font-weight: 500;
  line-height: 1.25;
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-comfortable-7 .gallery-container{
    width: 100%;
  }
  #x4a .section-comfortable-7 .h2{
    text-align: center;
    margin-bottom: 5.714286vw;
  }
  #x4a .section-comfortable-7 .colournav-container{
    position: initial;
    transform: none;
    flex-direction: column-reverse;
    margin-top: 5.714286vw;
  }
  #x4a .section-comfortable-7 .colournav-container .label-item{
    color: #797C80;
    margin-top: 1.428571vw;
    margin-bottom: 0;
    font-size: 2.285714vw;
  }
  #x4a .section-comfortable-7 .colournav-container .label-item span{
    color: #18191A;
  }
  #x4a .section-comfortable-7 .gallery .gallery-slide{
    overflow: hidden;
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-comfortable-7 .gallery-container{
    width: 100%;
  }
  #x4a .section-comfortable-7 .h2{
    width: 72.222222vw;
    text-align: left;
    margin: 0 auto 11.111111vw;
  }
  #x4a .section-comfortable-7 .colournav-container{
    position: initial;
    transform: none;
    flex-direction: column-reverse;
    margin-top: 11.111111vw;
  }
  #x4a .section-comfortable-7 .colournav-container .label-item{
    color: #797C80;
    margin-top: 2.777778vw;
    margin-bottom: 0;
    font-size: 4.444444vw;
  }
  #x4a .section-comfortable-7 .colournav-container .label-item span{
    color: #000;
  }
  #x4a .section-comfortable-7 .gallery .gallery-slide{
    height: auto;
  }
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-smart .section-header .desc{
    width: 63.428571vw;
    bottom: 5.428571vw;
    opacity: .7;
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-smart .section-header .desc{
    width: 79.166667vw;
    margin: 11.111111vw auto 0;
    position: initial;
    opacity: 1;
    transform: none;
  }
  #x4a .section-smart .section-header .desc p {
    color: #797C80;
  }
}
#x4a .section-drive .section-header .desc{
  width: 41.145833vw;
}

@media (max-aspect-ratio: 11/10){
  #x4a .section-drive .section-header .desc{
    width: 68.857143vw;
    bottom: 5.428571vw;
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-drive .section-header .desc{
    width: 72.222222vw;
    margin: 11.111111vw auto 0;
    position: initial;
    opacity: 1;
    transform: none;
  }
  #x4a .section-drive .section-header .desc p {
    color: #797C80;
  }
}
#x4a .section-drive-1{
  overflow: hidden;
}
#x4a .section-drive-1 .content{
  width: 81.25vw;
  margin: 0 auto;
}
#x4a .section-drive-1 .h2{
  text-align: center;
  margin-bottom: 4.166667vw;
}
#x4a .section-drive-1 .swiper{
  overflow: visible;
}
#x4a .section-drive-1 .swiper-slide{
  width: 40vw;
}
#x4a .section-drive-1 .swiper-slide .text-content{
  margin: 2.395833vw .833333vw 0;
}
#x4a .section-drive-1 .swiper-slide .text-content .h3{
  color: #000;
  font-size: 1.354167vw;
  margin-bottom: 1.25vw;
}
#x4a .section-drive-1 .pagination-content{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 4.166667vw;
}
#x4a .section-drive-1 .arrownav-list{
  margin-left: 1.875vw;
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-drive-1 .content{
    width: 75.428571vw;
  }
  #x4a .section-drive-1 .h2{
    text-align: center;
    width: 63.428571vw;
    margin: 0 auto 5.714286vw;
  }
  #x4a .section-drive-1 .swiper-slide{
    width: 100%;
  }
  #x4a .section-drive-1 .swiper-slide .text-content .h3{
    font-size: 2.857143vw;
    margin-bottom: 1.428571vw;
  }
  #x4a .section-drive-1 .swiper-slide .text-content{
    margin: 5.714286vw 0 0 1.142857vw;
    width: 52.857143vw;
  }
  #x4a .section-drive-1 .pagination-content{
    width: 73.142857vw;
    margin: 2.285714vw auto 0;
    justify-content: space-between;
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-drive-1 .content{
    width: 95.555556vw;
  }
  #x4a .section-drive-1 .h2{
    text-align: left;
    width: 72.222222vw;
    margin: 0 auto 11.111111vw;
  }
  #x4a .section-drive-1 .swiper-slide{
    width: 100%;
  }
  #x4a .section-drive-1 .swiper-slide .text-content .h3{
    font-size: 5.555556vw;
    margin-bottom: 5.555556vw;
  }
  #x4a .section-drive-1 .swiper-slide .text-content{
    margin: 11.111111vw 11.666667vw 0;
    width: auto;
  }
  #x4a .section-drive-1 .pagination-content{
    width: 72.222222vw;
    margin: 11.111111vw auto 0;
    justify-content: space-between;
  }
}
#x4a .section-drive-2{
  width: 81.25vw;
  margin: 0 auto;
}
#x4a .section-drive-2 .h2{
  text-align: center;
  margin-bottom: 4.166667vw;
}
#x4a .section-drive-2 .desc{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 2.5vw .833333vw 0;
}
#x4a .section-drive-2 .desc .left{
  width: 27.604167vw;
}
#x4a .section-drive-2 .desc .h3{
  font-size: 1.354167vw;
  color: #000;
  margin-bottom: 1.25vw;
}
#x4a .section-drive-2 .desc .right{
  display: flex;
}
#x4a .section-drive-2 .desc .right p{
  font-size: 1.145833vw;
}
#x4a .section-drive-2 .desc .right p:nth-child(2){
  font-size: 1.458333vw;
  color: #18191A;
  line-height: 1.25;
  margin-top: .416667vw;
}
#x4a .section-drive-2 .desc .right p:nth-child(2) span{
  font-size: 3.333333vw;
  margin-right: .833333vw;
}
#x4a .section-drive-2 .desc .right .line{
  width: 1px;
  height: 5.416667vw;
  background-color: rgba(0, 0, 0, 0.2);
  margin: .208333vw 3.333333vw 0;
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-drive-2{
    width: 75.428571vw;
  }
  #x4a .section-drive-2 .copy{
    text-align: center;
    margin: 0 auto 5.714286vw;
    width: 63.428571vw;
  }
  #x4a .section-drive-2 .h2{
    margin: 0 auto 2.285714vw;
  }
  #x4a .section-drive-2 .desc{
    flex-direction: column;
    margin: 5.714286vw auto 0;
    text-align: center;
    align-items: center;
  }
  #x4a .section-drive-2 .desc .left{
    width: auto;
    text-align: center;
  }
  #x4a .section-drive-2 .desc .h3{
    font-size: 2.857143vw;
    margin-bottom: 1.428571vw;
  }
  #x4a .section-drive-2 .desc .right {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 0;
  }
  #x4a .section-drive-2 .desc .right .line{
    height: 8.285714vw;
    margin: 0 5.714286vw;
  }
  #x4a .section-drive-2 .desc .right p{
    font-size: 2vw;
  }
  #x4a .section-drive-2 .desc .right p:nth-child(2){
    font-size: 2vw;
    margin-top: 1.428571vw;
  }
  #x4a .section-drive-2 .desc .right p:nth-child(2) span{
    font-size: 4vw;
    margin-right: 1.142857vw;
  }
  #x4a .section-drive-2 .desc .right-1,
  #x4a .section-drive-2 .desc .right-3{
    text-align: left;
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-drive-2{
    width: 95.555556vw;
  }
  #x4a .section-drive-2 .copy{
    width: 72.222222vw;
    margin: 0 auto;
  }
  #x4a .section-drive-2 .h2{
    text-align: left;
    width: 72.222222vw;
    margin: 0 auto 11.111111vw;
  }
  #x4a .section-drive-2 .desc{
    flex-direction: column;
    width: 72.222222vw;
    margin: 11.111111vw auto 0;
    text-align: left;
  }
  #x4a .section-drive-2 .desc .left{
    width: auto;
    text-align: left;
  }
  #x4a .section-drive-2 .desc .h3{
    font-size: 5.555556vw;
    margin-bottom: 5.555556vw;
  }
  #x4a .section-drive-2 .desc .right {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 8.333333vw;
  }
  #x4a .section-drive-2 .desc .right .right-1{
    order: 1;
  }
  #x4a .section-drive-2 .desc .right .right-2{
    order: 3;
    margin-top: 6.666667vw;
    white-space: nowrap;
  }
  #x4a .section-drive-2 .desc .right .right-3{
    order: 2;
  }
  #x4a .section-drive-2 .desc .right>div{
    width: 30.555556vw;
    padding-top: 4.444444vw;
    border-top: solid 1px rgba(24,25,26,.2);
  }
  #x4a .section-drive-2 .desc .right p{
    font-size: 3.888889vw;
  }
  #x4a .section-drive-2 .desc .right p:nth-child(2){
    font-size: 3.888889vw;
    margin-top: 1.388889vw;
  }
  #x4a .section-drive-2 .desc .right p:nth-child(2) span{
    font-size: 8.888889vw;
    margin-right: 3.333333vw;
  }
}
#x4a .section-drive-3{
  width: 81.25vw;
  margin: 0 auto;
}
#x4a .section-drive-3 .copy{
  margin-left: .833333vw;
  margin-bottom: 3.333333vw;
}
#x4a .section-drive-3.swiper-style-1 .gallery{
  width: 62.5vw;
}
#x4a .section-drive-3 .pagination-line{
  width: 6.25vw;
  margin-left: .9375vw;
  margin-right: .9375vw;
}
#x4a .section-drive-3 .stack-list,
#x4a .section-drive-3 .stack-list-1{
  text-align: left;
}
#x4a .section-drive-3 .stack-list .h3,
#x4a .section-drive-3 .stack-list-1 .h3{
  font-weight: 500;
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-drive-3{
    width: 75.428571vw;
  }
  #x4a .section-drive-3 .copy{
    margin-bottom: 5.714286vw;
    text-align: center;
  }
  #x4a .section-drive-3.swiper-style-1 .gallery{
    width: 100%;
  }
  #x4a .section-drive-3 .pagination-line{
    width: 10.5vw;
    margin-left: 1.714286vw;
    margin-right: 1.714286vw;
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-drive-3{
    width: 95.555556vw;
  }
  #x4a .section-drive-3 .copy{
    width: 72.222222vw;
    margin: 0 auto 11.111111vw;
    text-align: left;
  }
  #x4a .section-drive-3.swiper-style-1 .gallery{
    width: 100%;
  }
  #x4a .section-drive-3 .pagination-line{
    width: 20.416667vw;
    margin-left: 3.333333vw;
    margin-right: 3.333333vw;
  }
}
#x4a .section-drive-4 .h2{
  text-align: center;
  margin-bottom: 4.166667vw;
}
#x4a .section-drive-4 .gallery{
  margin: 3.333333vw auto 0;
}

#x4a .section-drive-4 .tabnav-item + .tabnav-item{
  margin-left: 2.083333vw;
}
#x4a .section-drive-4 .stack-content{
  width: 81.25vw;
  margin: 0 auto;
  background: #F5F6F7;
}
#x4a .section-drive-4 .stack-item{
  display: flex;
  justify-content: space-between;
}
#x4a .section-drive-4 .stack-item .left{
  width: 34.791667vw;
  text-align: left;
}
#x4a .section-drive-4 .stack-item:nth-child(2) .left{
  width: 37.916667vw;
}
#x4a .section-drive-4 .stack-item .left p{
  margin-top: 1.25vw;
}
#x4a .section-drive-4 .stack-list{
  padding: 2.5vw 3.333333vw;
}
#x4a .section-drive-4 .stat-list .stat-value,
#x4a .section-drive-4 .stat-list-1 .stat-value-1{
  color: #000;
}

#x4a .section-drive-4 .stat-list,
#x4a .section-drive-4 .stat-list-1 {
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  display: flex;
  align-items: center;
}
#x4a .section-drive-4 .stat-list .line,
#x4a .section-drive-4 .stat-list-1 .line{
  width: 1px;
  height: 5.416667vw;
  margin: 0 3.333333vw;
  background-color: rgba(0, 0, 0, 0.2);
}

#x4a .section-drive-4 .stat-item {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  white-space: nowrap;
  flex-direction: column;
}

#x4a .section-drive-4 .stat-value,
#x4a .section-drive-4 .stat-value-1 {
  position: relative;
  display: flex;
  overflow: hidden;
  height: 1em;
  font-size: var(--stat-number-font-size, 3.333333vw);
  color: #18191A;
}
#x4a .section-drive-4 .stat-number {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
}
#x4a .section-drive-4 .stat-number span {
  height: 1em;
  line-height: 1.25;
}
#x4a .section-drive-4 .stat-item .stat-unit{
  margin-left: .833333vw;
  line-height: 1.25;
  color: #18191A;
  font-size: 1.666667vw;
}

#x4a .section-drive-4 .stat-item .stat-caption{
  line-height: 1.25;
  color: #7A7C80;
  margin-bottom: .3125vw;
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-drive-4 .h2{
    margin-bottom: 5.714286vw;
  }
  #x4a .section-drive-4 .tabnav-item + .tabnav-item{
    margin-left: 5.714286vw;
  }
  #x4a .section-drive-4 .gallery{
    margin: 4.571429vw auto 0;
    width: 75.428571vw;
  }
  #x4a .section-drive-4 .stack-content{
    width: 75.428571vw;
  }
  #x4a .section-drive-4 .stack-list{
    padding: 5.714286vw;
  }
  #x4a .section-drive-4 .stack-item {
    flex-direction: column;
  }
  #x4a .section-drive-4 .stack-item .left{
    width: 100%;
    margin-bottom: 4.285714vw;
  }
  #x4a .section-drive-4 .stack-item:nth-child(2) .left{
    width: 100%;
  }
  #x4a .section-drive-4 .stat-list, #x4a .section-drive-4 .stat-list-1 {
    justify-content: flex-start;
  }
  #x4a .section-drive-4 .stack-item .left p{
    margin-top: 2.857143vw;
  }
  #x4a .section-drive-4 .stat-item .stat-caption{
    margin-bottom: 1.142857vw;
  }
  #x4a .section-drive-4 .stat-value, #x4a .section-drive-4 .stat-value-1{
    font-size: var(--stat-number-font-size, 4.571429vw);
  }
  #x4a .section-drive-4 .stat-item .stat-unit{
    font-size: 2vw;
    margin-left: 1.142857vw;
  }
  #x4a .section-drive-4 .stat-list .line, #x4a .section-drive-4 .stat-list-1 .line{
    height: 7.857143vw;
    margin: 0 5vw;
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-drive-4 .h2{
    width: 72.222222vw;
    margin: 0 auto 11.111111vw;
    text-align: left;
  }
  #x4a .section-drive-4 .tabnav-item + .tabnav-item{
    margin-left: 11.111111vw;
  }
  #x4a .section-drive-4 .gallery{
    margin: 8.888889vw auto 0;
    width: 95.555556vw;
  }
  #x4a .section-drive-4 .stack-content{
    width: 95.555556vw;
  }
  #x4a .section-drive-4 .stack-list{
    padding: 6.111111vw 0 11.666667vw;
  }
  #x4a .section-drive-4 .stack-item {
    flex-direction: column;
  }
  #x4a .section-drive-4 .stack-item .left{
    width: 72.222222vw;
    margin: 0 auto 8.333333vw;
  }
  #x4a .section-drive-4 .stack-item:nth-child(2) .left{
    width: 72.222222vw;
  }
  #x4a .section-drive-4 .stack-item .left .h3{
    font-size: 4.444444vw;
  }
  #x4a .section-drive-4 .stat-list, #x4a .section-drive-4 .stat-list-1 {
    margin-left: 11.666667vw;
  }
  #x4a .section-drive-4 .stack-item .left p{
    margin-top: 2.857143vw;
  }
  #x4a .section-drive-4 .stat-item .stat-caption{
    margin-bottom: 2.285714vw;
  }
  #x4a .section-drive-4 .stat-value, #x4a .section-drive-4 .stat-value-1{
    font-size: var(--stat-number-font-size, 4.571429vw);
  }
  #x4a .section-drive-4 .stat-item .stat-unit{
    font-size: 3.888889vw;
    margin-left: 3.333333vw;
  }
  #x4a .section-drive-4 .stat-list .line, #x4a .section-drive-4 .stat-list-1 .line{
    display: none;
  }
  #x4a .section-drive-4 .stat-list .stat-item{
    width: 36.111111vw;
    padding-top: 4.444444vw;
    border-top: solid 1px rgba(24, 25, 26, 0.2);
  }
  #x4a .section-drive-4 .stat-list-1 .stat-item{
    width: 29.166667vw;
    padding-top: 4.444444vw;
    border-top: solid 1px rgba(24, 25, 26, 0.2);
  }
  #x4a .section-drive-4 .stat-list-1 .stat-item:nth-child(1){
    margin-right: 8.333333vw;
  }
  #x4a .section-drive-4 .stat-list .stat-item:nth-child(1){
    margin-right: 5.555556vw;
  }
  #x4a .section-drive-4 .stat-list-1 .stat-item:nth-child(3){
    width: 41.388889vw;
  }
}
#x4a .section-peace .section-header .desc {
  width: 36.979167vw;
}
#x4a .section-peace .section-header .desc p{
  color: rgba(211, 211, 212);
}
#x4a .section-peace .section-header .desc span{
  color: #fff;
  font-weight: 400;
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-peace .section-header .desc{
    width: 79.714286vw;
    bottom: 5.428571vw;
    color: #fff;
  }
  #x4a .section-peace .section-header .desc span{
    color: #D3D3D4;
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-peace .section-header .desc{
    width: 75.972222vw;
    margin: 11.111111vw auto 0;
    position: initial;
    opacity: 1;
    transform: none;
  }
  #x4a .section-peace .section-header .desc span{
    color: #797C80;
    display: block;
  }
  #x4a .section-peace .section-header .desc p{
    color: #797C80;
    text-align: left;
  }
}
#x4a .section-peace-1{
  width: 81.25vw;
  margin: 0 auto;
}
#x4a .section-peace-1 .h2{
  text-align: center;
  margin-bottom: 4.166667vw;
}
#x4a .section-peace-1 .tabnav-content{
  margin-top: 2.395833vw;
}
#x4a .section-peace-1 .stack-list{
  margin-top: .833333vw;
  width: 41.666667vw;
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-peace-1{
    width: 100%;
  }
  #x4a .section-peace-1 .h2{
    text-align: center;
    width: auto;
    margin: 0 auto 5.714286vw;
  }
  #x4a .section-peace-1 .tabnav-content{
    margin-top: 5.714286vw;
  }
  #x4a .section-peace-1 .stack-list{
    margin: 2.857143vw auto 0;
    width: 63.428571vw;
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-peace-1{
    width: 100%;
  }
  #x4a .section-peace-1 .h2{
    text-align: left;
    width: 72.222222vw;
    margin: 0 auto 11.111111vw;
  }
  #x4a .section-peace-1 .tabnav-content{
    margin-top: 11.111111vw;
  }
  #x4a .section-peace-1 .stack-list{
    margin: 5.555556vw auto 0;
    width: 72.222222vw;
  }
}
#x4a .section-peace-2{
  width: 81.25vw;
  margin: 0 auto;
}
#x4a .section-peace-2 .h2{
  margin-bottom: 4.166667vw;
}
#x4a .section-peace-2 .swiper{
  overflow: visible;
}
#x4a .section-peace-2 .swiper-wrapper{
  justify-content: space-between;
}
#x4a .section-peace-2 .swiper-slide{
  flex-shrink: 1;
  width: 46.041667vw;
}
#x4a .section-peace-2 .swiper-slide .inline-video{
  position: relative;
}
#x4a .section-peace-2 .swiper-slide:nth-child(2){
  width: 33.125vw;
  transform: translateY(13.541667vw);
}
#x4a .section-peace-2 .swiper-slide .copy{
  margin: 2.5vw .833333vw 0;
}
#x4a .section-peace-2 .swiper-slide .copy .h3{
  font-size: 1.354167vw;
  color: #000;
  margin-bottom: 1.25vw;
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-peace-2{
    width: 100%;
    overflow: hidden;
  }
  #x4a .section-peace-2 .h2{
    text-align: center;
    width: 63.428571vw;
    margin: 0 auto 5.714286vw;
  }
  #x4a .section-peace-2 .swiper{
    width: 75.428571vw;
    overflow: visible;
  }
  #x4a .section-peace-2 .swiper-slide{
    flex-shrink: 0;
    width: 100%;
  }
  #x4a .section-peace-2 .swiper-slide:nth-child(2){
    margin-top: 0;
    transform: translateY(0);
  }
  #x4a .section-peace-2 .swiper-slide .copy{
    width: 63.428571vw;
    margin: 5.714286vw auto 5.428571vw;
    text-align: center;
    opacity: 0;
    transition: opacity .5s ease;
  }
  #x4a .section-peace-2 .swiper-slide.swiper-slide-active .copy{
    opacity: 1;
  }
  #x4a .section-peace-2 .swiper-slide .copy .h3{
    font-size: 2.857143vw;
    margin-bottom: 1.428571vw;
  }
  #x4a .section-peace-2 .swiper-pagination{
    position: initial;
  }
  #x4a .section-peace-2 .swiper-pagination-bullet{
    width: 4.571429vw;
    height: .214286vw;
    background: rgba(24, 25, 26, 0.2);
    opacity: 1;
    border-radius: .571429vw;
    transition: background-color .8s cubic-bezier(0.65, 0.05, 0.36, 1);
    margin: 0 .857143vw;
  }
  #x4a .section-peace-2 .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: rgba(0, 0, 0, 1);
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-peace-2{
    width: 95.555556vw;
  }
  #x4a .section-peace-2 .h2{
    text-align: left;
    width: 72.222222vw;
    margin: 0 auto 11.111111vw;
  }
  #x4a .section-peace-2 .swiper{
    overflow: hidden;
    width: 100%;
  }
  #x4a .section-peace-2 .swiper-slide{
    flex-shrink: 0;
    width: 100%;
  }
  #x4a .section-peace-2 .swiper-slide:nth-child(2){
    margin-top: 0;
    transform: translateY(0);
  }
  #x4a .section-peace-2 .swiper-slide .copy{
    width: 72.222222vw;
    margin: 11.111111vw auto;
    text-align: left;
  }
  #x4a .section-peace-2 .swiper-slide .copy .h3{
    font-size: 5.555556vw;
    margin-bottom: 5.555556vw;
  }
  #x4a .section-peace-2 .swiper-pagination{
    position: initial;
  }
  #x4a .section-peace-2 .swiper-pagination-bullet{
    width: 8.888889vw;
    height: .416667vw;
    background: rgba(24, 25, 26, 0.2);
    opacity: 1;
    border-radius: 1.111111vw;
    transition: background-color .8s cubic-bezier(0.65, 0.05, 0.36, 1);
    margin: 0 1.666667vw;
  }
  #x4a .section-peace-2 .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: rgba(0, 0, 0, 1);
  }
}

#x4a .section-safety-1{
  width: 81.25vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#x4a .section-safety-1 .h2{
  margin-bottom: 3.125vw;
  text-align: left;
}
#x4a .section-safety-1 .gallery{
  width: 53.75vw;
}
#x4a .section-safety-1 .tabnav-content{
  align-items: flex-start;
}
#x4a .section-safety-1 .tabnav-list{
  flex-direction: column;
  align-items: flex-start;
}

#x4a .section-safety-1 .tabnav-box{
  overflow: hidden;
  position: relative;
  padding-left: 1.25vw;
}
#x4a .section-safety-1 .tabnav-wrapper::after{
  content: '';
  width: 2px;
  height: var(--desc-box);
  background-color: rgba(24, 25, 26, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  transition: background-color 0.8s cubic-bezier(0.65, 0.05, 0.36, 1), height 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4a .section-safety-1 .tabnav-wrapper::before{
  content: '';
  width: 2px;
  height: var(--desc-box-height);
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(var(--desc-top));
  transition: background-color 0.8s cubic-bezier(0.65, 0.05, 0.36, 1), transform 0.8s cubic-bezier(0.65, 0.05, 0.36, 1), height 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4a .section-safety-1 .tabnav-box + .tabnav-box{
  margin-top: 2.5vw;
}
#x4a .section-safety-1 .tabnav-list .tabnav-box .desc-box{
  height: 0;
  transition: height 0.8s cubic-bezier(0.65, 0.05, 0.36, 1), margin-top 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  margin-top: 0;
}
#x4a .section-safety-1 .tabnav-list .tabnav-box.current .desc-box{
  height: var(--desc-height);
  margin-top: .833333vw;
}
#x4a .section-safety-1 .tabnav-item{
  position: relative;
  z-index: 1;
  white-space: normal;
  padding-bottom: 0;
  font-weight: 500;
  font-size: 1.354167vw;
  color: #18191a;
}
#x4a .section-safety-1 .tabnav-item.current{
  color: #000;
}
#x4a .section-safety-1 .tabnav-item + .tabnav-item{
  margin-top: 1.875vw;
  margin-left: 0;
}
#x4a .section-safety-1 .tabnav-indicator{
  display: none;
}
#x4a .section-safety-1 .stack-list{
  display: none;
}
#x4a .section-safety .section-header .desc{
  width: 44.791667vw;
}
#x4a .section-safety .section-header .desc p{
  color: #D3D3D4;
}
#x4a .section-safety .section-header .desc p span{ 
  color: #ffffff;
  font-weight: 500;
}
@media (max-aspect-ratio: 11/10){
#x4a .section-safety .section-header .desc{
  position: initial;
  transform: translateX(0);
  margin: 5.714286vw auto 0;
  width: 74.285714vw;
}
#x4a .section-safety .section-header .desc p{
  color: #797C80;
  text-align: left;
}
#x4a .section-safety .section-header .desc p span{
  color: #18191A;
  font-weight: 500;
}
  #x4a .section-safety-1{
    width: 100%;
    display: block;
  }
  #x4a .section-safety-1 .h2{
    text-align: center;
    width: 63.428571vw;
    margin: 0 auto 5.714286vw;
  }
  #x4a .section-safety-1 .gallery-container{
    width: 75.428571vw;
    margin: 0 auto;
    display: block;
  }
  #x4a .section-safety-1 .tabnav-content{
    padding: 0;
    background-color: #fff;
    margin-top: 5.714286vw;
  }
  #x4a .section-safety-1 .gallery{
    width: 100%;
  }

  #x4a .section-safety-1 .tabnav-list{
    flex-direction: row;
    text-align: center;
  }
  #x4a .section-safety-1 .tabnav-box{
    opacity: 1;
    transition: opacity 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
    margin: 0 auto;
  }
  #x4a .section-safety-1 .tabnav-box.current{
    opacity: 1;
  }
  #x4a .section-safety-1 .tabnav-box + .tabnav-box{
    margin-top: 0;
    margin-left: 8.571429vw;
  }
  #x4a .section-safety-1 .tabnav-list .tabnav-box.current .desc-box,
  #x4a .section-safety-1 .tabnav-list .tabnav-box .desc-box{
    height: 100%;
    margin: 0;
  }
  #x4a .section-safety-1 .tabnav-wrapper{
    padding: 0;
  }
  #x4a .section-safety-1 .tabnav-box{
    padding: 0;
  }
  #x4a .section-safety-1 .tabnav-item{
    line-height: 1.25;
    margin-bottom: 1.714286vw;
    font-size: 2.285714vw;
    color: #797c80;
  }
  #x4a .section-safety-1 .tabnav-container{
    line-height: 1.6;
    white-space: normal;
  }
  #x4a .section-safety-1 .swiper-pagination{
    position: initial;
    margin-top: 5.714286vw;
  }
  #x4a .section-safety-1 .swiper-pagination-bullet{
    width: 4.571429vw;
    height: .214286vw;
    background: rgba(24, 25, 26, 0.2);
    opacity: 1;
    border-radius: .571429vw;
    transition: background-color .8s cubic-bezier(0.65, 0.05, 0.36, 1);
    margin: 0 .857143vw;
  }
  #x4a .section-safety-1 .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: rgba(0, 0, 0, 1);
  }
  #x4a .section-safety-1 .tabnav-indicator{
    display: block;
  }
  #x4a .section-safety-1 .stack-list{
    display: flex;
    margin: 2.857143vw auto 0;
    width: 58.714286vw;
  }
}
@media (max-aspect-ratio: 7/10){

  #x4a .section-safety-1{
    width: 100%;
    display: block;
  }
  #x4a .section-safety-1 .h2{
    text-align: left;
    width: 72.222222vw;
    margin: 0 auto 11.111111vw;
  }
  #x4a .section-safety-1 .gallery-container{
    width: 95.555556vw;
    margin: 0 auto;
  }
  #x4a .section-safety-1 .gallery{
    width: 100%;
  }
  #x4a .section-safety-1 .tabnav-content{
    margin-top: 11.111111vw;
  }
  #x4a .section-safety-1 .tabnav-content::before, 
  #x4a .section-safety-1 .tabnav-content::after,
  #x4a .section-safety-1 .tabnav-box.current::after,
  #x4a .section-safety-1 .tabnav-box::after{
    content: none;
  }
  #x4a .section-safety-1 .tabnav-list{
    flex-direction: row;
  }
  #x4a .section-safety-1 .tabnav-box{
    opacity: 1;
    transition: opacity 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
    margin: 0 auto;
    text-align: left;
  }
  #x4a .section-safety-1 .tabnav-box.current{
    opacity: 1;
  }
  #x4a .section-safety-1 .tabnav-box + .tabnav-box{
    margin-left: 16.666667vw;
    margin-top: 0;
  }
  #x4a .section-safety-1 .tabnav-list .tabnav-box.current .desc-box,
  #x4a .section-safety-1 .tabnav-list .tabnav-box .desc-box{
    height: 100%;
  }
  #x4a .section-safety-1 .tabnav-wrapper{
    padding: 0;
  }
  #x4a .section-safety-1 .tabnav-box{
    padding: 0;
  }
  #x4a .section-safety-1 .tabnav-item{
    line-height: 1.25;
    margin-bottom: 3.333333vw;
    font-size: 4.444444vw;
    font-weight: 700;
  }
  #x4a .section-safety-1 .tabnav-container{
    line-height: 1.6;
    white-space: normal;
  }
  #x4a .section-safety-1 .swiper-pagination{
    position: initial;
    margin-top: 8.333333vw;
  }
  #x4a .section-safety-1 .swiper-pagination-bullet{
    width: 8.888889vw;
    height: .416667vw;
    background: rgba(24, 25, 26, 0.2);
    opacity: 1;
    border-radius: 1.111111vw;
    transition: background-color .8s cubic-bezier(0.65, 0.05, 0.36, 1);
    margin: 0 1.666667vw;
  }
  #x4a .section-safety-1 .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: rgba(0, 0, 0, 1);
  }
  #x4a .section-safety-1 .stack-list {
    margin: 5.555556vw auto 0;
    width: 72.222222vw;
  }
}
#x4a .section-safety-2{
  width: 81.25vw;
  margin: 0 auto;
}
#x4a .section-safety-2 .h2{
  text-align: center;
  margin-bottom: 4.166667vw;
}
#x4a .section-safety-2 .tabnav-content{
  margin-top: 2.5vw;
}
#x4a .section-safety-2 .stack-list{
  margin-top: .833333vw;
  width: 47.916667vw;
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-safety-2{
    width: 100%;
  }
  #x4a .section-safety-2 .h2{
    text-align: center;
    width: 63.428571vw;
    margin: 0 auto 5.714286vw;
  }
  #x4a .section-safety-2 .tabnav-content{
    margin-top: 5.714286vw;
  }
  #x4a .section-safety-2 .stack-list{
    width: 69.285714vw;
    margin: 2.857143vw auto 0;
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-safety .section-header .desc {
    width: 72.222222vw;
    margin: 11.111111vw auto 0;
    position: initial;
    opacity: 1;
    transform: none;
  }
  #x4a .section-safety-2{
    width: 100%;
  }
  #x4a .section-safety-2 .h2{
    text-align: left;
    width: 72.222222vw;
    margin: 0 auto 11.111111vw;
  }
  #x4a .section-safety-2 .tabnav-content{
    margin-top: 11.111111vw;
  }
  #x4a .section-safety-2 .stack-list{
    width: 72.222222vw;
    margin: 5.555556vw auto 0;
  }
}
#x4a .section-safety-3{
  width: 81.25vw;
  margin: 0 auto;
}
#x4a .section-safety-3 .h2{
  text-align: center;
  margin-bottom: 4.166667vw;
}
#x4a .section-safety-3 .content{
  display: flex;
}
#x4a .section-safety-3 .content .pic-content{
  width: 53.75vw;
}
#x4a .section-safety-3 .content .desc{
  width: 20.833333vw;
  padding: 4.166667vw 3.333333vw 0;
  background-color: #F5F6F7;
  box-sizing: content-box;
}
#x4a .section-safety-3 .h3{
  font-size: 1.354167vw;
  margin-top: 3.125vw;
  line-height: 1.25;
  font-weight: 500;
}
#x4a .section-safety-3 .swiper-pagination{
  display: none;
}
#x4a .section-safety-3 .content .desc .h3 p{
  font-weight: 400;
  line-height: 1.6;
  margin-top: 1.25vw;

}
@media (max-aspect-ratio: 11/10){
  #x4a .section-safety-3{
    width: 100%;
  }
  #x4a .section-safety-3 .content{
    flex-direction: column;
    width: 75.428571vw;
    margin: 0 auto;
  }
  #x4a .section-safety-3 .h2{
    text-align: center;
    width: 63.428571vw;
    margin: 0 auto 5.714286vw;
  }
  #x4a .section-safety-3 .content .pic-content{
    width: 100%;
  }
  #x4a .section-safety-3 .content .desc{
    width: 64vw;
    padding: 5.714286vw 5.714286vw 6.785714vw;
  }
  #x4a .section-safety-3 .content .desc span{
    display: inline-block;
  }
  #x4a .section-safety-3 .content .desc .h3 p{
    display: inline;
  }
  #x4a .section-safety-3 .h3{
    font-size: 2.285714vw;
    margin-top: 3.428571vw;
    margin-bottom: 0;
    line-height: 1.6;
    white-space: nowrap;
  }
  #x4a .section-safety-3 .gallery-container .swiper{
    height: calc(100% + 22.714286vw);
  }
  #x4a .section-safety-3 .gallery-container{
    width: 75.428571vw;
    margin: 0 auto;
  }
  #x4a .tab-swiper .gallery-container .gallery-slide{
    width: 36.857143vw;
    flex-shrink: 0;
  }
  #x4a .tab-swiper .gallery-container .gallery-slide + .gallery-slide{
    margin-left: 1.714286vw;
  }
  #x4a .section-safety-3 .tabnav-content{
    margin-top: 0;
    padding-bottom: 5.714286vw;
  }
  #x4a .section-safety-3 .stack-list{
    width: 100%;
    margin: 0 0 0 12.285714vw;
  }
  #x4a .section-safety-3 .content-wrapper{
    width: 75.428571vw;
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: space-between;
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-safety-3{
    width: 100%;
  }
  #x4a .section-safety-3 .h2{
    text-align: left;
    width: 72.222222vw;
    margin: 0 auto 11.111111vw;
  }
  #x4a .section-safety-3 .content{
    width: 95.555556vw;
  }
  #x4a .section-safety-3 .content .desc span{
    display: none;
  }
  #x4a .section-safety-3 .content .desc{
    width: 72.222222vw;
    padding: 11.111111vw 11.666667vw 15.833333vw;
  }
  #x4a .section-safety-3 .h3{
    font-size: 5.555556vw;
    line-height: 1.25;
    margin-top: 7.5vw;
    white-space: normal;
  }
  #x4a .section-safety-3 .content .desc .h3 p{
    display: block;
    margin-top: 2.777778vw;
  }
  #x4a .section-safety-3 .gallery-container{
    width: 95.555556vw;
    margin: 0 auto;
  }
  #x4a .tab-swiper .gallery-container .gallery-slide{
    width: 100%;
  }
  #x4a .tab-swiper .gallery-container .gallery-slide + .gallery-slide{
    margin-left: -100%;
  }
  #x4a .tab-swiper .gallery-slide .clip-item{
    transform: scale(1.15);
  }
  #x4a .tab-swiper .gallery-slide.current .clip-item{
    transform: scale(1);
  }
  #x4a .tab-swiper .gallery-slide.current .clip-item {
      -webkit-clip-path: inset(0 0 0 0);
      clip-path: inset(0 0 0 0);
  }
  #x4a .tab-swiper .gallery-slide.left .clip-item {
    -webkit-clip-path: inset(0 100% 0 0);
      clip-path: inset(0 100% 0 0);
  }
  #x4a .tab-swiper .gallery-slide.right .clip-item {
    -webkit-clip-path: inset(0 0 0 100%);
      clip-path: inset(0 0 0 100%);
  }
  #x4a .section-safety-3 .tabnav-content{
    margin-top: 0;
    padding-bottom: 0;
  }
  #x4a .section-safety-3 .stack-list{
    width: 95.555556vw;
    margin: 0 auto;
  }
  #x4a .section-safety-3 .swiper-pagination{
    bottom: 11.111111vw;
  }
  #x4a .section-safety-3 .swiper-pagination-bullet{
    width: 8.888889vw;
    height: .416667vw;
    background: rgba(24, 25, 26, 0.2);
    opacity: 1;
    border-radius: 1.111111vw;
    transition: background-color .8s cubic-bezier(0.65, 0.05, 0.36, 1);
    margin: 0 1.666667vw;
  }
  #x4a .section-safety-3 .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: rgba(0, 0, 0, 1);
  }
  #x4a .section-safety-3 .content-container{
    background: #f5f6f7;
    width: 95.555556vw;
    margin: -1px auto 0;
    padding-bottom: 16.666667vw;
  }
}
#x4a .section-configuration .configuration-content{
  position: relative;
}
#x4a .section-configuration .h2.text-move{
  text-align: center;
  margin-bottom: 4.166667vw;
  position: absolute;
  top: 3.854167vw;
  left: 50%;
  transform: translate(-50%,40%);
  z-index: 1;
  color: #fff;
}
#x4a .section-configuration .h2.text-move.animated{
  transform: translate(-50%,0);
}
#x4a .section-configuration .content{
  position: relative;
  background-color: #151515;

}
#x4a .section-configuration .box-shadow{
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(21, 21, 21, 0.38) 23.6%, rgba(21, 21, 21) 50%, rgba(21, 21, 21) 95%);
  width: 100%;
  height: 22.291667vw;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: -2px;
}
#x4a .section-configuration .text-content{
  display: flex;
  justify-content: center;
  z-index: 1;
  position: absolute;
  bottom: 3.125vw;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
#x4a .section-configuration .text-content .title{
  position: relative;
  width: 10.833333vw;
  margin-bottom: 1.041667vw;
  height: 1.875vw;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: .416667vw;
}
#x4a .section-configuration .text-content .title p{
  position: absolute;
  width: max-content;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
}

#x4a .section-configuration .text-content>div + div{
  margin-left: 5vw;
}
#x4a .section-configuration .text-content .desc{
  display: flex;
  white-space: nowrap;
}
#x4a .section-configuration .text-content .desc p{
  color: rgba(255, 255, 255, 0.8);
}
#x4a .section-configuration .text-content .desc p + p{
  margin-left: 3.125vw;
}
#x4a .section-configuration .text-content .desc span{
  display: block;
  color: #fff;
  font-size: 2.083333vw;
  font-weight: 500;
  line-height: 1.25;
  margin-top: .208333vw;
}
#x4a .section-configuration .text-content .desc span b{
  font-weight: 500;
  font-size: 1.041667vw;
  margin-left: .833333vw;
}
#x4a .section-configuration .button-container{
  position: absolute;
  bottom: -3.958333vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  transition: opacity 0.8s;
}
#x4a .section-configuration .button-container .button-normal{
  position: relative;
  width: 10.208333vw;
}
#x4a .section-configuration .button-container .button-content{
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#x4a .section-configuration .button-container .button-content p{
  font-size: .9375vw;
  position: initial;
  color: #000;
  font-weight: 400;
}
#x4a .section-configuration .button-container .pdp-cta{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#x4a .section-configuration .button-container .button-content .button-arrow{
  width: .9375vw;
  margin-left: .416667vw;
  transition: transform 0.8s;
}
#x4a .section-configuration .note{
  background: #151515;
  padding-top: 8.020833vw;
  padding-right: 16.25vw;
  text-align: right;
}
#x4a .section-configuration .note p{
  font-size: max(.625vw, 12px);
}
@media (hover: hover) {
  #x4a .section-configuration .button-container:hover{
    opacity: .7;
  }
  #x4a .section-configuration .button-container:hover .button-arrow{
    transform: translateX(0.520833vw);
  }
}
@media (max-width: 1240px) {
  #x4a .section-configuration .note p{
    font-size: .625vw;
  }
}
@media (max-aspect-ratio: 11/10){
  #x4a .section-configuration .h2.text-move{
    margin-bottom: 5.714286vw;
    transform: translate(-50%,40%);
    top: 5vw;
  }
  #x4a .section-configuration .h2.text-move.animated{
    transform: translate(-50%,0);
  }
  #x4a .section-configuration .text-content{
    flex-wrap: wrap;
    justify-content: space-between;
    width: 52.571429vw;
    margin: 0 auto;
    bottom: 14.571429vw;
  }
  #x4a .section-configuration .text-content .desc {
    justify-content: space-between;
    margin-top: 2.285714vw;
  }
  #x4a .section-configuration .text-content .desc p{
    font-size: 2vw;
  }
  #x4a .section-configuration .text-content .desc p + p{
    margin-left: 7.714286vw;
  }
  #x4a .section-configuration .text-content .desc span{
    font-size: 4vw;
    margin-top: .714286vw;
  }
  #x4a .section-configuration .text-content .desc span b{
    font-size: 2vw;
    margin-left: 1.142857vw;
  }
  #x4a .section-configuration .text-content>div.item{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 19.857143vw;
  }
  #x4a .section-configuration .text-content>div + div{
    margin-left: 0;
    margin-top: 0;
  }

  #x4a .section-configuration .text-content .line{
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 4.571429vw 0;
  }
  #x4a .section-configuration .text-content .title{
    width: 100%;
    height: 4.571429vw;
    margin: 0;
    border-radius: .571429vw;
  }
  #x4a .section-configuration .text-content .title p{
    font-size: 1.857143vw;
    font-weight: 700;
  }
  #x4a .section-configuration .box-shadow{
    height: 31.428571vw;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 33%, rgba(21, 21, 21) 65%);
  }
  #x4a .section-configuration .button-container{
    position: initial;
    transform: none;
    background: #151515;
    padding-top: 31.857143vw;
    margin-bottom: -1px;
  }
  #x4a .section-configuration .button-container:hover{
    opacity: 1;
  }
  #x4a .section-configuration .button-container:hover .button-arrow{
    transform: translateX(0);
  }
  #x4a .section-configuration .button-container .button-content p{
    font-size: 1.857143vw;
  }
  #x4a .section-configuration .button-container .button-normal{
    width: 13.714286vw;
  }
  #x4a .section-configuration .note{
    padding-top: 5.714286vw;
    padding-right: 0;
    margin: 0 auto -1px;
    text-align: left;
  }
  #x4a .section-configuration .note p{
    width: 75.142857vw;
    margin: 0 auto;
    font-size: 1.714286vw;
  }
}
@media (max-aspect-ratio: 7/10){
  #x4a .section-configuration .h2.text-move{
    top: 9.722222vw;
    width: max-content;
  }
  #x4a .section-configuration .text-content{
    flex-direction: column;
    width: 77.777778vw;
    bottom: 22.222222vw;
  }
  #x4a .section-configuration .text-content .desc {
    justify-content: space-between;
    margin-top: 0;
    margin-left: 8.888889vw;
  }
  #x4a .section-configuration .text-content .desc p{
    font-size: 3.333333vw;
  }
  #x4a .section-configuration .text-content .desc p + p{
    margin-left: 0;
  }
  #x4a .section-configuration .text-content .desc span{
    font-size: 8.888889vw;
    margin-top: 1.388889vw;
  }
  #x4a .section-configuration .text-content .desc span b{
    font-size: 3.888889vw;
    margin-left: 3.333333vw;
  }
  #x4a .section-configuration .text-content>div.item{
    flex-direction: row;
    width: 73.611111vw;
  }
  #x4a .section-configuration .text-content>div + div{
    margin-left: 0;
    margin-top: 0;
  }
  #x4a .section-configuration .text-content .line{
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 4.444444vw auto;
  }
  #x4a .section-configuration .text-content .title{
    width: 35.277778vw;
    height: 8.888889vw;
    margin: 0 auto;
    border-radius: 1.111111vw;
  }
  #x4a .section-configuration .text-content .title p{
    font-size: 3.333333vw;
  }
  #x4a .section-configuration .box-shadow{
    height: 76.944444vw;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 15%, rgba(21, 21, 21) 22%);
    top: 59.444444vw;
    bottom: auto;
  }
  #x4a .section-configuration .button-container{
    padding-top: 83.333333vw;
  }
  #x4a .section-configuration .button-container .button-normal{
    width: 26.666667vw;
  }
  #x4a .section-configuration .button-container .button-content p{
    font-size: 3.611111vw;
  }
  #x4a .section-configuration .note{
    padding-top: 11.111111vw;
  }
  #x4a .section-configuration .note p{
    font-size: 3.333333vw;
    width: 85vw;
  }
}
#x4a .section-footnote {
  background-color: #151515;
}
#x4a .section-footnote .footnote-container{
  width: 67.5vw;
  margin: 0 auto;
  padding-top: 2.083333vw;
  border-top: solid 2px rgba(229, 229, 229, 0.4);
}
#x4a .section-footnote .footnote-list {
  font-size: 0.625vw;
}
@media (max-width: 1920px) and (min-aspect-ratio: 11/10) {
  #x4a .section-footnote .footnote-list {
    font-size: 12px;
  }
}
@media (max-aspect-ratio: 11/10) {

  #x4a .section-footnote .footnote-list {
    font-size: 1.714286vw;
  }
  #x4a .section-footnote .footnote-container{
    width: 75.428571vw;
    padding-top: 5.714286vw;
  }
}
@media (max-aspect-ratio: 7/10) {

  #x4a .section-footnote .footnote-container{
    width: 91.111111vw;
    padding-top: 11.111111vw;
  }
  #x4a .section-footnote .footnote-list {
    font-size: 3.333333vw;
  }
}
#x4a .section-footnote ol {
  padding-left: 1.5em;
}
#x4a .section-footnote ul {
  margin-top: 1.041667vw;
}
@media (max-aspect-ratio: 11/10) {
  #x4a .section-footnote ul {
    margin-top: 13.888889vw;
  }
}
#x4a .section-footnote li {
  font-size: inherit;
  list-style-type: decimal;
  color: #797C80;
}
#x4a .section-footnote li + li {
  margin-top: 0.5em;
}
#x4a .section-footnote li.current {
  color: #fff;
}
#x4a .section-footnote .disclaimer {
  list-style-type: none;
}
#x4a .section-footnote a {
  color: #37f;
}


/* color */
#x4a .section-color-new .color-selection {
  position: relative;
  overflow: hidden;
}
#x4a .section-color-new .h2{
  text-align: center;
  margin-bottom: 4.166667vw;
}
#x4a .section-color-new .gallery-car-container {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  transform: translateX(0%);
}
#x4a .section-color-new .gallery-background {
  transition: transform 0s 1.5s;
  will-change: transform;
}
#x4a .section-color-new .gallery-car-wrapper {
  position: relative;
  z-index: 1;
  transform: translateZ(0);
  width: 100%;
  margin-top: -15.520833vw;
}
#x4a .section-color-new .gallery-car {
  position: relative;
  width: 78.125vw;
  margin-right: auto;
  margin-left: auto;
}

#x4a .section-color-new .gallery-car-wheel {
  position: absolute;
  transform: rotate(360deg);
}
#x4a .section-color-new .front-wheel {
  top: 10.052083vw;
  left: 11.71875vw;
  width: 9.375vw;
}
#x4a .section-color-new .back-wheel {
  top: 10.052083vw;
  left: 52.760417vw;
  width: 9.375vw;
}
#x4a .section-color-new .gallery.animating .gallery-car-container {
  overflow: visible;
}
#x4a .section-color-new .gallery.animating .gallery-car-wrapper {
  transition: transform 1.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4a .section-color-new .gallery-slide-out .current .gallery-car-wrapper {
  transform: translateX(100%);
}
#x4a .section-color-new .gallery-slide-out .current .gallery-car-wheel {
  transform: rotate(360deg);
}
#x4a .section-color-new .gallery-car-wheel-container.current .gallery-car-wheel{
  transform: rotate(0deg);
  transition: transform 1.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4a .section-color-new .animating .gallery-car-container, 
#x4a .section-color-new .animating .gallery-background, 
#x4a .section-color-new .animating .gallery-car-wheel {
  transition: transform 1.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4a .section-color-new .current .gallery-car-container {
  z-index: 3;
}
#x4a .section-color-new .current .gallery-background {
  transform: translateX(0%);
}
#x4a .section-color-new .left .gallery-car-container {
  transform: translateX(-100%);
}

#x4a .section-color-new .left .gallery-background {
   transform: translateX(100%);
}
#x4a .section-color-new .left .gallery-car-wheel-container.current .gallery-car-wheel {
  transform: rotate(-720deg);
}
#x4a .section-color-new .right .gallery-car-container {
  transform: translateX(100%);
}
#x4a .section-color-new .right .gallery-background {
   transform: translateX(-100%);
}
#x4a .section-color-new .right .gallery-car-wheel-container.current .gallery-car-wheel {
  transform: rotate(360deg);
}
#x4a .section-color-new .colournav-container {
  transition: opacity 1.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  opacity: 0;
}
#x4a .section-color-new .colournav-container>div{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
#x4a .section-color-new .colournav-container>div:last-child{
  margin-left: 9.583333vw;
}
#x4a .section-color-new .colournav-container.show {
  opacity: 1;
}
#x4a .section-color-new .label-list,
#x4a .section-color-new .wheel-label-list {
  width: 100%;
  text-align: center;
}
#x4a .section-color-new .label-item,
#x4a .section-color-new .wheel-label-item {
  width: max-content;
  transition: opacity 0.8s 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4a .section-color-new .gallery-car-wheel-container{
  opacity: 0;
  transition: opacity 0.8s 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4a .section-color-new .gallery-car-wheel-container.current{
  opacity: 1;
}
#x4a .section-color-new .colournav-container>div.title-copy{
    display: none;
  }
@media (max-aspect-ratio: 11/10) {
  #x4a .section-color-new .gallery-car-wrapper {
    margin-top: -20.138889vw;
  }


  #x4a .section-color-new .gallery-car {
    width: 92.857143vw;
  }
  #x4a .section-color-new .front-wheel {
    top: 11.95vw;
    left: 13.928571vw;
    width: 11.142857vw;
  }
  #x4a .section-color-new .back-wheel {
    top: 11.95vw;
    left: 62.642857vw;
    width: 11.142857vw;
  }
  #x4a .section-color-new .label-item {
    transition: opacity 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  }
  #x4a .section-color-new .autoplay-trigger {
    top: 90%;
  }
  #x4a .section-color-new .colournav-container>div{
    flex-direction: column;
  }
  #x4a .section-color-new .label-list, #x4a .section-color-new .wheel-label-list{
    justify-content: center;
    margin-top: 1.428571vw;
  }
  #x4a .colournav-container .label-item + .label-item, #x4a .colournav-container .wheel-label-item + .wheel-label-item{
    left: 50%;
    transform: translateX(-50%);
  }
  #x4a .section-color-new .colournav-container>div.title-copy{
    display: none;
  }
}
@media (max-aspect-ratio: 7/10) {
  #x4a .section-color-new .gallery-car-wrapper {
    margin-top: -20.138889vw;
  }

  #x4a .section-color-new .gallery-car {
    width: 110.694444vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: right;
     transition: transform 1.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  }
  #x4a .section-color-new.active .gallery-car{
    transform: translateX(-50%) scale(2);
  }
  #x4a .section-color-new .front-wheel {
    top: 14.305556vw;
    left: 16.666667vw;
    width: 13.055556vw;
  }
  #x4a .section-color-new .back-wheel {
    top: 14.305556vw;
    left: 75vw;
    width: 13.055556vw;
  }
  #x4a .section-color-new .label-item {
    transition: opacity 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  }
  #x4a .section-color-new .autoplay-trigger {
    top: 90%;
  }
  #x4a .section-color-new .colournav-container{
    flex-direction: column;
    margin-top: 3.333333vw;
  }
  #x4a .section-color-new .colournav-container>div{
    transition: opacity 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  }
  #x4a .section-color-new .colournav-container>div.title-copy{
    display: flex;
    flex-direction: row;
    margin-bottom: 11.111111vw;
    position: relative;
  }
    #x4a .section-color-new .colournav-container>div.title-copy::after{
      content: '';
      width: 100%;
      height: .416667vw;
      position: absolute;
      bottom: 0;
      left: 0;
      background-color: #797C80;
    }
  #x4a .section-color-new .colournav-container>div.title-copy>div:last-child{
    margin-left: 7.777778vw;
  }
  #x4a .section-color-new .colournav-container>div.title-copy>div{
    position: relative;
    display: inline;
    padding-bottom: 3.333333vw;
    z-index: 2;
  }
  #x4a .section-color-new .colournav-container>div.title-copy .h3{
    color: #797C80;
  }
  #x4a .section-color-new .colournav-container>div.title-copy .current .h3{
    color: #000;
  }
  #x4a .section-color-new .colournav-container>div.title-copy .current{
    border-bottom: solid 3px #000;
  }
  #x4a .section-color-new .colournav-container>div:last-child{
    margin-left: 0;
    position: absolute;
    bottom: 0;
    opacity: 0;
    z-index: 1;
  }
  #x4a .section-color-new .colournav-container>div:nth-child(2){
    z-index: 2;
  }
  #x4a .section-color-new.active .colournav-container>div:nth-child(2){
    opacity: 0;
    z-index: 1;
  }
  #x4a .section-color-new.active .colournav-container>div:last-child{
    opacity: 1;
    z-index: 2;
  }
}