html {
  scroll-behavior: auto !important;
  overscroll-behavior-y: auto !important;
}
body,*{
  padding: 0;
  margin: 0;
}

.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-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;
  }
}
@media only screen and (max-width: 420px){
  #localnav .ln-title .ln-link{
    font-size: 12px;
  }
}

#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;
  }
}
#x4u {
  line-height: 1.6;
  background-color: #FFF;
  overflow: hidden;
}
#x4u section {
  position: relative;
}
#x4u picture, #x4u img, #x4u svg, #x4u canvas, #x4u video {
  display: block;
  width: 100%;
}

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

#x4u .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;
}
#x4u .nowrap {
  display: inline-block;
  white-space: nowrap;
}
#x4u .blur-up {
  transition: filter 400ms;
  filter: blur(10px);
}
#x4u .blur-up.lazyloaded {
  filter: blur(0);
}
#x4u br.lg {
  display: block;
}
#x4u br.md {
  display: none;
}
#x4u br.xs {
  display: none;
}

@media (max-aspect-ratio: 11/10) {
  #x4u br.lg {
    display: none;
  }
  #x4u br.md {
    display: none;
  }
  #x4u br.xs {
    display: block;
  }
}

#x4u .pt-200 {
  padding-top: 10.416667vw;
}
#x4u .py-200 {
  padding-top: 10.416667vw;
  padding-bottom: 10.416667vw;
}
#x4u .py-160 {
  padding-top: 8.333333vw;
  padding-bottom: 8.333333vw;
}
#x4u .pb-200 {
  padding-bottom: 10.416667vw;
}
#x4u .pb-160 {
  padding-bottom: 8.333333vw;
}

@media (max-aspect-ratio: 11/10) {
  #x4u .pt-200, #x4u .xs\:pt-200 {
    padding-top: 27.777778vw;
  }
  #x4u .py-200, #x4u .xs\:py-200 {
    padding-top: 27.777778vw;
    padding-bottom: 27.777778vw;
  }
  #x4u .py-160{
    padding-top: 22.222222vw;
    padding-bottom: 22.222222vw;
  }
  #x4u .pb-200, #x4u .xs\:pb-200 {
    padding-bottom: 27.777778vw;
  }
  #x4u .pb-160{
    padding-bottom: 22.222222vw;
  }
}
#x4u .hidden, #x4u .lg\:hidden{
  display: none;
}

@media (max-aspect-ratio: 11/10) {
  #x4u .hidden, #x4u .xs\:hidden{
    display: none;
  }
  #x4u .block, #x4u .xs\:block{
    display: block;
  }
}
#x4u .h2, #x4u .h3 {
  font-weight: 700;
  line-height: 1.25;
}
#x4u .h2 {
  font-size: 2.083333vw;
  margin-bottom: 1.041667vw;
  color: #18191A;
}
#x4u .h2.animated{
  background-position-x: 0%;
}
#x4u .h3 {
  font-size: 1.354167vw;
  color: #18191A;
}
#x4u .h3.h3-40{
  font-size: 2.083333vw;
  margin-bottom: 1.041667vw;
}
#x4u .h3.dark{
  color: #18191A;
}
#x4u .h3.headline{
  font-size: 1.354167vw;
  margin-bottom: 1.041667vw;
  font-weight: 700;
}
#x4u p {
  font-size: 1.041667vw;
  color: #797C80;
}
#x4u p.headline{
  color: #fff;
}
#x4u .big-title{
  font-size: 4.166667vw;
  color: #fff;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  will-change: transform, opacity, filter;
}
#x4u .text-white {
  color: #fff;
}

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


@media (max-aspect-ratio: 11/10) {
  #x4u .h2 {
    font-size: 8.888889vw;
    margin-bottom: 4.444444vw;
  }
  #x4u .h3 {
    font-size: 4.444444vw;
  }
  #x4u .h3.h3-40{
    font-size: 8.888889vw;
    margin-bottom: 4.444444vw;
  }
  #x4u .h3.headline{
    font-size: 5.555556vw;
    margin-bottom: 3.333333vw;
  }
  #x4u p {
    font-size: 4.444444vw;
  }
  #x4u .big-title{
    font-size: 11.111111vw;
    color: #18191A;
    font-weight: 500;
  }
  
  #x4u .note {
    font-size: 3.333333vw;
  }
  #x4u .h2, #x4u .h3{
    font-weight: 500;
  }
}
#x4u .carousel-video .swiper-wrapper, #x4u .carousel-video [data-swiper-parallax-x], #x4u .carousel-video [data-swiper-parallax-opacity] {
  transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4u .carousel-video .swiper-slide:not(.swiper-slide-active),
#x4u .carousel .swiper-slide:not(.swiper-slide-active){
  cursor: pointer;
}
#x4u .carousel-video .video-container,
#x4u .carousel-video-1 .video-container{
  position: relative;
}
#x4u .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;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
#x4u .play-pause-button:hover {
  backdrop-filter: blur(8px) brightness(.9);
  -webkit-backdrop-filter: blur(8px) brightness(.9);
}

#x4u .play-pause-button .button-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
#x4u.no-inline-video .play-pause-button{
  display: none;
}

@media (max-aspect-ratio: 11/10) {
  #x4u .play-pause-button {
    right: 4.444444vw;
    bottom: 4.444444vw;
    width: 8.888889vw;
    height: 8.888889vw;
  }
  #x4u .play-pause-button:hover {
    backdrop-filter: blur(8px) brightness(1);
  -webkit-backdrop-filter: blur(8px) brightness(1);
  }
}

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

#x4u .button-container {
  display: flex;
  justify-content: center;
  cursor: pointer;
}
#x4u .button-container .button-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#x4u .button-container .button-link:hover .button-background {
  opacity: 0.7;
}
#x4u .button-container .button-background {
  transition: opacity 0.3s;
}
#x4u .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) {
  #x4u .button-container .button-background {
    opacity: 1 !important;
  }
  #x4u .button-container .button-copy {
    font-size: 3.611111vw;
  }
  
}

#x4u .tabnav-content {
  display: flex;
  align-items: center;
  flex-direction: column;
}
#x4u .tabnav-container {
  position: relative;
}
#x4u .tabnav-list {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
#x4u .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;
  transition: opacity 0.3s, color 0.3s;
  will-change: transform;
  opacity: 1;
}
#x4u .tabnav-item + .tabnav-item {
  margin-left: 2.083333vw;
}
@media (any-hover: hover) and (pointer: fine){
  #x4u .tabnav-item:hover{
    opacity: .8;
  }
}
#x4u .tabnav-item.current {
  color: #18191A;
  opacity: 1;
}
#x4u .tabnav-item sup{
  pointer-events: none;
}
#x4u .tabnav-indicator {
  position: relative;
  width: 100%;
  height: 2px;
}
#x4u .tabnav-indicator::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(24, 25, 26, 0.4);
}
#x4u .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;
}
#x4u .stack-list {
  display: flex;
}
#x4u .stack-list {
  text-align: center;
}
#x4u .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;
}
#x4u .stack-item + .stack-item {
  margin-left: -100%;
}
#x4u .stack-item.current {
  z-index: 1;
  opacity: 1;
}

@media (max-aspect-ratio: 11/10) {
  #x4u .headline-wrapper{
    text-align: left;
  }
  #x4u .tabnav-content {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
  }
  #x4u .tabnav-content::before, #x4u .tabnav-content::after {
    position: absolute;
    z-index: 1;
    top: -1.388889vw;
    width: 12.222222vw;
    height: 12.222222vw;
    content: "";
    pointer-events: none;
  }
  #x4u .tabnav-content::before {
    left: 0;
    background-image: linear-gradient(90deg, #ffffff 40%, transparent);
  }
  #x4u .tabnav-content::after {
    right: 0;
    background-image: linear-gradient(90deg, transparent, #ffffff 60%);
  }
  #x4u .tabnav-container {
    position: relative;
    display: flex;
    justify-content: center;
    line-height: 0;
    white-space: nowrap;
  }
  #x4u .tabnav-container.is-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  #x4u .tabnav-container.is-scroll::-webkit-scrollbar {
    display: none;
  }
  #x4u .tabnav-wrapper {
    padding-right: 11.111111vw;
    padding-left: 11.111111vw;
  }
  #x4u .tabnav-list {
    position: relative;
    display: flex;
  }
  #x4u .tabnav-item {
    padding-bottom: 3.333333vw;
    font-size: 4.444444vw;
  }
  #x4u .tabnav-item + .tabnav-item {
    margin-left: 7.777778vw;
  }
  #x4u .tabnav-indicator {
    height: 0.416667vw;
  }
  #x4u .stack-list {
    text-align: left;
  }
  #x4u .stack-item {
    font-size: 4.444444vw;
  }
  #x4u .stack-list{
    text-align: left;
  }
}

#x4u .stat-list {
  display: flex;
}
#x4u .stat-list .stat-value,
#x4u .stat-list-1 .stat-value {
  font-size: 3.333333vw;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

#x4u .stat-list .stat-value-item,
#x4u .stat-list-1 .stat-value-item{
  display: flex;
  flex-direction: column;
  align-items: baseline;
  width: 100%;
}
#x4u .stat-list .stat-value-item .stat-line{
  width: 12.1875vw;
  transform: translateX(-1.40625vw);
}
#x4u .stat-list .stat-value-content,
#x4u .stat-list-1 .stat-value-content{
  display: flex;
  align-items: baseline;
}
#x4u .stat-list .stat-unit,
#x4u .stat-list-1 .stat-unit {
  font-size: 1.145833vw;
  font-weight: 400;
}
#x4u .stat-list .stat-caption,
#x4u .stat-list-1 .stat-caption {
  font-size: 1.145833vw;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
}

@media (max-aspect-ratio: 11/10) {
  #x4u .stat-list,
  #x4u .stat-list-1 {
    display: grid;
    grid-template-columns: auto auto;
  }
  #x4u .stat-list .stat-value,
  #x4u .stat-list-1 .stat-value {
    font-size: 8.888889vw;
  }
  #x4u .stat-list .stat-unit,
  #x4u .stat-list-1 .stat-unit {
    font-size: 4.444444vw;
    font-weight: 400;
  }
  #x4u .stat-list .stat-caption,
  #x4u .stat-list-1 .stat-caption {
    font-size: 3.888889vw;
    margin-bottom: 1.388889vw;
  }
  #x4u .stat-list .stat-value-item,
  #x4u .stat-list-1 .stat-value-item{
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
#x4u .pagination-item {
  display: flex;
  overflow: hidden;
  align-items: center;
  width: auto;
  font-size: var(--pagination-font-size, 1.041667vw);
  font-weight: 600;
  line-height: 1;
  color: #18191a;
}
#x4u .pagination-item.swiper-pagination-lock {
  display: none;
}
#x4u .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;
}
#x4u .pagination-line {
  position: relative;
  overflow: hidden;
  width: 3.125vw;
  height: 2px;
  margin-right: .3125vw;
  margin-left: .3125vw;
  background-color: #e5e5e5;
}
#x4u .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;
}
#x4u .autoplay-animating .pagination-line::before {
  transition-duration: 3.8s;
  transform: scaleX(1);
}
#x4u .autoplay-animating .autoplay-3s .pagination-line::before {
  transition-duration: 2.8s;
  transform: scaleX(1);
}
#x4u .pagination-total {
  opacity: 0.2;
}

@media (max-aspect-ratio: 11/10) {
  #x4u .pagination-item {
    font-size: var(--pagination-font-size, 3.888889vw);
  }
  #x4u .pagination-line {
    width: 20.555556vw;
    height: 0.416667vw;
    margin-right: 3.333333vw;
    margin-left: 3.333333vw;
  }
}
#x4u .arrownav-list {
  display: flex;
}
#x4u .arrownav-list .arrownav-item {
  position: relative;
  width: 2.5vw;
  cursor: pointer;
  transition: opacity 0.4s;
  outline: 0;
  mask-image: url(../images/icons/arrow-right.svg);
  mask-size: 100%;
  mask-repeat: no-repeat;
  mask-position: center;
}
#x4u .arrownav-list .arrownav-item svg{
  height: auto;
}
#x4u .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: none;
  z-index: 2;
}
#x4u .arrownav-list .arrownav-item .arrow-icon{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
#x4u .arrownav-list .arrownav-next {
  margin-left: 1.25vw;
}
#x4u .arrownav-list .arrownav-item.arrownav-disabled {
  cursor: default;
  opacity: 1;
  pointer-events: none;
}
#x4u .arrownav-list .arrownav-item .arrownav-item-color{
  transition: all .8s ease;
}
#x4u .arrownav-list .arrownav-item.arrownav-disabled .arrownav-item-color{
  stop-color: rgba(201,200,201);
}
#x4u .arrownav-list .arrownav-item.arrownav-disabled .arrownav-item-color-w{
  stop-color: rgba(224,212,212);
}
@media (hover: hover) {
  #x4u .arrownav-list .arrownav-item:hover .mask-pic{
    transform: translate(-50%, -50%) scale(1);
  }

  #x4u .arrownav-list .arrownav-item.arrownav-disabled:hover .mask-pic{
    transform: translate(-50%, -50%) scale(0);
  }
}

@media (max-aspect-ratio: 11/10) {
  #x4u .arrownav-list .arrownav-item{
    width: 10.555556vw;
  }
  #x4u .arrownav-list .arrownav-next{
    margin-left: 3.333333vw;
  }
  #x4u .arrownav-list {
    display: flex;
  }
  #x4u .arrownav-list .arrownav-item:hover{
    opacity: 1;
  }
  #x4u .arrownav-list .arrownav-item:hover .mask-pic{
  transform: translate(-50%, -50%) scale(0);
}
}
#x4u .tab-swiper {
  position: relative;
}
#x4u .tab-swiper .swiper-content {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#x4u .tab-swiper .tablist-wrapper {
  position: relative;
}
#x4u .tab-swiper .tablist {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
#x4u .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;
}
#x4u .tab-swiper .tabnav.current {
  opacity: 1;
}
#x4u .tab-swiper .tabnav-indicator {
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.5);
}
#x4u .tab-swiper .indicator {
  width: 0;
  height: 100%;
  background-color: #be55e5;
}
#x4u .tab-swiper .caption-list {
  display: flex;
  margin-top: 1.5625vw;
  text-align: center;
}
#x4u .tab-swiper .caption {
  position: relative;
  width: 100%;
  font-size: 1.25vw;
  transition: opacity 0.4s;
  opacity: 0;
  color: #fff;
}
#x4u .tab-swiper .caption + .caption {
  margin-left: -100%;
}
#x4u .tab-swiper .caption.current {
  z-index: 1;
  opacity: 1;
}
@media (max-aspect-ratio: 11/10) {
  #x4u .tab-swiper .swiper-content {
    display: block;
    width: 100%;
  }
  #x4u .tab-swiper .tablist-wrapper {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    line-height: 0;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  #x4u .tab-swiper .tablist-wrapper::-webkit-scrollbar {
    display: none;
  }
  #x4u .tab-swiper .tablist {
    position: relative;
    display: inline-block;
    margin: 0 8.333333vw;
  }
  #x4u .tab-swiper .tablist::after {
    position: absolute;
    right: 0;
    bottom: -3px;
    left: 0;
    height: 3px;
    content: "";
    background-color: rgba(128, 128, 128, 0.5);
  }
  #x4u .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;
  }
  #x4u .tab-swiper .tabnav.current {
    color: #000;
  }
  #x4u .tab-swiper .tabnav + .tabnav {
    margin-left: 11.111111vw;
  }
  #x4u .tab-swiper .tabnav-indicator {
    width: 0;
    height: 3px;
    margin: 0 8.333333vw;
  }
  #x4u .tab-swiper .caption-list {
    width: 83.333333vw;
    margin: 4.166667vw auto 0;
    text-align: left;
  }
  #x4u .tab-swiper .caption {
    font-size: 3.888889vw;
    color: #808080;
  }
}
#x4u .gallery-container {
  position: relative;
}
#x4u .gallery-container .gallery {
  position: relative;
}
#x4u .gallery-container .gallery-wrapper {
  display: flex;
}
#x4u .gallery-container .gallery-slide {
  position: relative;
  width: 100%;
}
#x4u .gallery-container .gallery-slide + .gallery-slide {
  margin-left: -100%;
}
#x4u .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);
}
#x4u .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);
}
#x4u .gallery-container .swiper {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#x4u .carousel-video-1 .swiper-slide picture,
#x4u .carousel-video-1 .swiper-slide video{
  cursor: pointer;
}
#x4u .carousel-video-1  .swiper .swiper-slide-active picture, 
#x4u .carousel-video-1  .swiper .swiper-slide-active video, 
#x4u .carousel-video-1 .swiper.no-click .swiper-slide-active ~ .swiper-slide-visible picture, 
#x4u .carousel-video-1 .swiper.no-click .swiper-slide-active ~ .swiper-slide-visible video{
  cursor: auto;
}
#x4u .swiper-style-1 .gallery-container,
#x4u .tabnav-swiper .gallery-container,
#x4u .tabnav-swiper-1 .gallery-container,
#x4u .tabnav-swiper-2 .gallery-container{
  display: flex;
  overflow: hidden;
}
#x4u .swiper-style-1 .gallery,
#x4u .tabnav-swiper .gallery,
#x4u .tabnav-swiper-1 .gallery,
#x4u .tabnav-swiper-2 .gallery {
  z-index: 3;
  flex-shrink: 0;
  width: 100%;
}
#x4u .swiper-style-1 .gallery-slide.current .clip-item,
#x4u .tabnav-swiper .gallery-slide.current .clip-item,
#x4u .swiper-color .gallery-slide.current .clip-item,
#x4u .tabnav-swiper-1 .gallery-slide.current .clip-item,
#x4u .tabnav-swiper-2 .gallery-slide.current .clip-item {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
}
#x4u .swiper-style-1 .gallery-slide.left .clip-item,
#x4u .tabnav-swiper .gallery-slide.left .clip-item,
#x4u .tabnav-swiper-1 .gallery-slide.left .clip-item,
#x4u .tabnav-swiper-2 .gallery-slide.left .clip-item,
#x4u .swiper-color .gallery-slide.left .clip-item {
  -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}
#x4u .swiper-style-1 .gallery-slide.right .clip-item,
#x4u .tabnav-swiper .gallery-slide.right .clip-item,
#x4u .tabnav-swiper-1 .gallery-slide.right .clip-item,
#x4u .tabnav-swiper-2 .gallery-slide.right .clip-item,
#x4u .swiper-color .gallery-slide.right .clip-item {
  -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
}
#x4u .swiper-style-1 .zoom-in-transition,
#x4u .tabnav-swiper .zoom-in-transition,
#x4u .tabnav-swiper-1 .zoom-in-transition {
  transition: transform 0.8s;
  transform-origin: left;
}
#x4u .swiper-style-1 .zoom-in-slide,
#x4u .tabnav-swiper .zoom-in-slide {
  transform: scale(1.3);
}
#x4u .tabnav-swiper-1 .zoom-in-slide{
  transform: scale(1.52);
}
#x4u .swiper-style-1 .content-container,
#x4u .tabnav-swiper .content-container {
  padding: 3.333333vw 2.5vw;
  background-color: #f5f6f7;
}
#x4u .tabnav-swiper-1 .tabnav-content{
  padding: 8.333333vw 4.166667vw;
  background-color: #f5f6f7;
}
#x4u .swiper-style-1 .content-wrapper,
#x4u .tabnav-swiper .content-wrapper,
#x4u .tabnav-swiper-1 .content-wrapper  {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
#x4u .swiper-style-1 .stack-list {
  order: 2;
}
#x4u .swiper-style-1 .pagination-item {
  order: 1;
}
#x4u .swiper-style-1 .arrownav-list {
  order: 3;
}

@media (max-aspect-ratio: 11/10) {
  #x4u .swiper-style-1 .gallery-container {
    display: block;
  }
  #x4u .tabnav-swiper .gallery-container{
    width: 91.111111vw;
    margin: 0 auto;
  }
  #x4u .swiper-style-1 .gallery {
    width: 100%;
  }

  #x4u .swiper-style-1 .gallery,
  #x4u .tabnav-swiper .gallery {
    z-index: 3;
    flex-shrink: 0;
    width: 91.111111vw;
  }
  #x4u .swiper-style-1 .zoom-in-slide {
    transition: none;
    transform: none;
  }
  #x4u .swiper-style-1 .content-container {
    padding: 11.111111vw 11.666667vw 16.666667vw;
  }
  #x4u .swiper-style-1 .content-wrapper {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    height: auto;
  }
  #x4u .swiper-style-1 .stack-list {
    order: 1;
    margin-bottom: 11.111111vw;
  }
  #x4u .swiper-style-1 .pagination-item {
    order: 2;
  }
  #x4u .swiper-style-1 .h3 {
    font-size: 5.555556vw;
  }
}
#x4u .swiper-style-2 .text-content {
  width: 51.666667vw;
  padding-left: 13.020833vw;
}
#x4u .swiper-style-2 .xs-gallery {
  display: none;
}
#x4u .swiper-style-2 .lg-gallery-slide {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#x4u .swiper-style-2 .clip-item-1 {
  width: 51.666667vw;
  margin-top: 6.770833vw;
}
#x4u .swiper-style-2 .clip-item-2 {
  width: 27.5vw;
}
#x4u .swiper-style-2 .gallery-slide{
  -webkit-mask-image: url("../images/icons/mask-img.svg");
  mask-image: url("../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;
}
 #x4u .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;
}

#x4u .swiper-style-2 .caption-container {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 1.666667vw;
  font-size: 1.041667vw;
}
#x4u .swiper-style-2 .caption-title {
  font-size: inherit;
  color: #fff;
}
#x4u .swiper-style-2 .caption-copy {
  font-size: inherit;
  color: rgba(255, 255, 255, 0.6);
}
#x4u .swiper-style-2 .swiper {
  height: 55%;
}
#x4u .swiper-style-2 .content-container {
  display: flex;
  justify-content: space-between;
  width: 79.583333vw;
  margin: 2.395833vw auto 0;
  align-items: flex-end;
}
#x4u .swiper-style-2 .content-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
}
#x4u .swiper-style-2 .arrownav-list {
  margin-bottom: 1.25vw;
}
#x4u .swiper-style-2 .stack-list{
  text-align: left;
  width: 32.291667vw;
}
#x4u .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) {
  #x4u .swiper-style-2 .text-content {
    width: 72.222222vw;
    padding-left: 0;
  }
  #x4u .swiper-style-2 .lg-gallery {
    display: none;
  }
  #x4u .swiper-style-2 .xs-gallery {
    display: block;
  }
  #x4u .swiper-style-2 .gallery-slide{
  -webkit-mask-size: 1%;
  mask-size: 1%;
  -webkit-mask-position: center;
  mask-position: center;
}
 #x4u .swiper-style-2 .gallery-slide.current{
  -webkit-mask-size: 400%;
  mask-size: 400%;
}
  #x4u .swiper-style-2 .caption-container {
    margin: 4.444444vw 11.111111vw;
    font-size: 3.888889vw;
    text-align: center;
  }
  #x4u .swiper-style-2 .caption-title {
    font-size: 4.722222vw;
  }
  #x4u .swiper-style-2 .swiper {
    height: 70%;
  }
  #x4u .swiper-style-2 .content-container {
    position: static;
    justify-content: center;
    width: 72.222222vw;
    flex-direction: column;
    margin: 11.111111vw auto 0;
  }
  #x4u .swiper-style-2 .stack-list{
    width: auto;
  }
  #x4u .swiper-style-2 .content-wrapper {
    justify-content: space-between;
    width: 72.222222vw;
    flex-direction: row;
    margin-top: 11.111111vw;
  }
  #x4u .swiper-style-2 .arrownav-list {
    margin-left: 0;
  }
  #x4u .swiper-style-2 .stack-list .stack-item span{
    font-size: 4.444444vw;
    margin-bottom: 3.333333vw;
  }
}

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

#x4u .section-color .gallery-slide .clip-item{
  -webkit-mask-image: url("../images/icons/mask-img-2.svg");
  mask-image: url("../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;
}

#x4u .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);
}
#x4u .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);
}
#x4u .swiper-style-3 .content-container {
  padding: 2.5vw .833333vw 0;
}
#x4u .swiper-style-3 .content-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 100%;
}
#x4u .swiper-style-3 .stack-list {
  flex-shrink: 0;
}
#x4u .swiper-style-3 .stack-item .headline{
  font-size: 1.354167vw;
  color: #000;
}
#x4u .swiper-style-3 .stack-item .intro{
  font-size: 1.041667vw;
}
#x4u .swiper-style-3 .pagination-container {
  display: flex;
  align-items: center;
  width: 6.145833vw;
  height: 2.916667vw;
  margin-top: 1.25vw;
}
#x4u .swiper-style-3 .arrownav-list {
  justify-content: flex-end;
  width: auto;
  margin-top: 1.25vw;
}

@media (max-aspect-ratio: 11/10) {
 #x4u .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);
}
#x4u .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);
}
#x4u .tabnav-swiper-1 .gallery-slide.left .clip-item {
  -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}
#x4u .tabnav-swiper-1 .gallery-slide.right .clip-item {
  -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
}
#x4u .section-color .gallery-slide.current .clip-item{
    -webkit-mask-size: 600%;
    mask-size: 600%;
    transform: scale(1);
}
  #x4u .swiper-style-3 .zoom-in-slide {
    transition: none;
    transform: none;
  }
  #x4u .swiper-style-3 .content-container {
    padding: 11.111111vw 0 0;
    width: 72.222222vw;
    margin: 0 auto;
  }
  #x4u .swiper-style-3 .content-wrapper {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    height: auto;
  }
  #x4u .swiper-style-3 .stack-list {
    order: 1;
    margin-bottom: 11.111111vw;
  }
  #x4u .swiper-style-3 .stack-item .headline{
    font-size: 5.555556vw;
  }
  #x4u .swiper-style-3 .stack-item .intro {
    font-size: 4.444444vw;
  }
  #x4u .swiper-style-3 .pagination-container {
    order: 2;
    width: auto;
    height: auto;
    margin-top: 0;
  }
  #x4u .swiper-style-3 .arrownav-list {
    width: auto;
    margin-top: 0;
  }
}
#x4u .colournav-container {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
#x4u .colournav-container .label-list {
  position: relative;
  display: flex;
  align-items: center;
}
#x4u .colournav-container .label-item {
  font-size: 1.041667vw;
  font-weight: 700;
  opacity: 0;
  color: #18191a;
}
#x4u .colournav-container .label-item + .label-item{
  position: absolute;
  top: 0;
  left: 0;
}
#x4u .colournav-container .label-item.current {
  z-index: 1;
  opacity: 1;
}
#x4u .colournav-container .label-item sup{
  pointer-events: none;
}
#x4u .colournav-container .label-item.current sup{
  pointer-events: auto;
}
#x4u .colournav-container .colournav-list{
  display: flex;
}
#x4u .colournav-container .colournav-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1875vw;
  cursor: pointer;
}
#x4u .colournav-container .colournav-item + .colournav-item {
  margin-left: 0.208333vw;
}
#x4u .colournav-container .colournav-item.current {
  cursor: default;
}
#x4u .colournav-container .colournav-item.current .colour-swatch-indicator {
  opacity: 1;
}
#x4u .colournav-container .colour-swatch-indicator {
  position: absolute;
  transition: opacity 0.8s;
  pointer-events: none;
  opacity: 0;
}
#x4u .colournav-container .colour-swatch {
  width: 100%;
  pointer-events: none;
}

@media (max-aspect-ratio: 11/10) {
  #x4u .colournav-container .label-item {
    font-size: 4.444444vw;
  }
  #x4u .colournav-container .colournav-item {
    width: 10vw;
  }
  #x4u .colournav-container .colournav-item + .colournav-item{
    margin-left: 1.944444vw;
  }
}
#x4u .tab-swiper .gallery-container .gallery-wrapper{
  justify-content: space-between;
}
#x4u .tab-swiper .gallery-container .gallery-slide{
  width: 26.25vw;
}
#x4u .tab-swiper .gallery-container .gallery-slide + .gallery-slide{
  margin-left: 0;
}
#x4u .tab-swiper .gallery-container .clip-item{
  transform: scale(1);
}
#x4u .tab-swiper .stack-list{
  width: 100%;
  justify-content: space-between;
  
}
#x4u .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;
}
#x4u .tab-swiper .stack-item + .stack-item{
  margin-left: 0;
}
#x4u .tab-swiper .stack-item .h3{
  font-size: 1.354167vw;
  color: #000;
  margin-bottom: 1.25vw;
}

@media (max-aspect-ratio: 11/10){
  #x4u .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;
  }
  #x4u .tab-swiper .stack-item.current{
    opacity: 1;
  }
  #x4u .tab-swiper .stack-item + .stack-item{
    margin-left: -100%;
  }
  #x4u .tab-swiper .stack-item .h3{
    font-size: 5.555556vw;
    color: #000;
    margin-bottom: 5.555556vw;
  }
  #x4u .tab-swiper .stack-item p{
    font-size: 4.444444vw;
  }
  #x4u .tab-swiper .tabnav-content::before,
  #x4u .tab-swiper .tabnav-content::after{
    content: none;
  }
  #x4u .tab-swiper .swiper-slide:last-child{
    display: block;
  }
}
/* Page style */
#x4u .section-header{
  position: relative;
  text-align: center;
  
}
#x4u .section-header .section-headline{
  position: absolute;
  top: 5.208333vw;
  transform: translateX(-50%);
  left: 50%;
  text-align: center;
  z-index: 4;
}
#x4u .section-header .section-headline .sub-title{
  font-size: 1.354167vw;
  color: #ffffff;
  margin-bottom: .833333vw;
}
#x4u .section-header .pic{
  overflow: hidden;
}
#x4u .section-header .copy{
  text-align: center;
  transform: translateY(5.208333vw);
  transition: transform .8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4u .section-header.animated .copy{
  transform: translateY(0);
}
#x4u .text-animate .text-move{
  opacity: 0;
  transform: translateY(40%);
  transition: transform .8s ease, opacity .8s ease;
}
#x4u .text-animate .text-move.animated{
  opacity: 1;
  transform: translateY(0);
}

@media (max-aspect-ratio: 11/10){
  #x4u .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;
  }

  #x4u .section-header .section-headline{
    transition: transform .8s ease, opacity .8s ease;
    width: auto;
    position: initial;
    transform: none;
  }
  #x4u .section-header .copy{
    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);
    transform: translateY(80%);
  }
  #x4u .section-header.animated .copy{
    opacity: 1;
  }
  #x4u .section-header .desc{
    width: 72.222222vw;
    bottom: 8.333333vw;
  }
  #x4u .section-header .desc p{
    color: #797C80;
  }
  #x4u .section-header .section-headline p{
    margin-top: 4.166667vw;
  }
  #x4u .section-header .section-headline .h3,
  #x4u .section-header .section-headline p{
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
  #x4u .section-header .section-headline p.subtitle{
    margin-top: 4.166667vw;
  }
  #x4u .section-header .section-headline .sub-title{
    margin: 0 auto 2.222222vw;
    color: #18191A;
    font-size: 3.333333vw;
  }
}
#x4u .section-hero{
  position: relative;
  overflow: hidden;
}
#x4u .section-hero .hero-title{
  position: absolute;
  top: 6.25vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 17.708333vw;
}
#x4u .section-hero .hero-desc{
  font-size: 1.875vw;
  text-align: center;
  color: rgba(255, 255, 255);
  margin-top: .416667vw;
  white-space: nowrap;
  letter-spacing: .208333vw;
  line-height: 1.25;
}
#x4u .section-hero .hero-content{
  position: relative;
}
#x4u .section-hero .hero-content .shadow{
  position: absolute;
  width: 100%;
  height: 13.958333vw;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(to bottom, rgba(4,17,33,0) 0%, rgba(21,17,19) 70%, rgba(21,17,19) 100%);
  z-index: 1;
}
#x4u .section-hero .hero-content .hero-notes{
  width: 27.365104vw;
  right: 1.25vw;
  bottom: 1.25vw;
  position: absolute;
  z-index: 2;
}

@media (max-aspect-ratio: 11/10){
  #x4u .section-hero .hero-content .hero-notes{
    width: 69.444444vw;
    right: 5.555556vw;
    bottom: 5.555556vw;
  }
  #x4u .section-hero .hero-title{
    top: 22.222222vw;
    width: 63.888889vw;
  }
  #x4u .section-hero .hero-desc{
    font-size: 6.527778vw;
    margin-top: 1.666667vw;
    letter-spacing: .833333vw;
  }
  #x4u .section-hero .hero-picture::before {
    padding-bottom: 194.44%;
  }
  #x4u .section-hero .pic-1{
    transform: translateX(-50%) scale(1.361);
  }
  #x4u .section-hero .pic-2{
    transform: translateX(-50%) scale(1.361);
  }
  #x4u .section-hero.animated .pic-1,
  #x4u .section-hero.animated .pic-2{
    transform: translateX(-50%) scale(1);
  }
  #x4u .section-hero .pic-3{
    transform: translate(-50%,-13.888889vw) scale(1);
  }
  #x4u .section-hero.animated .pic-3{
    transform: translate(-50%,10.833333vw) scale(1.115);
  }
  #x4u .section-hero .hero-content .shadow{
    height: 25vw;
  }
}
@media (max-width: 800px) and (min-aspect-ratio: 11/10) and (min-width:720px){ 
  #x4u .section-hero.animated .hero-title{
    top: 8vw;
  }
}
#x4u .section-appearance{
  position: relative;
}
#x4u .section-appearance-0{
  position: relative;
  margin-top: -1px;
}
#x4u .section-appearance-0 .pic{
  overflow: hidden;
}
#x4u .section-appearance-0 .section-appearance-header{
  position: absolute;
  top: 4.6875vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
#x4u .section-appearance .section-appearance-0 .big-title{
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(to bottom, #EFF7FF 0%, #7496B0 100%);
  transform: translateY(5.208333vw);
  transition: transform .8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4u .section-appearance .section-appearance-0 .desc{
  transform: translateY(5.208333vw);
  transition: transform .8s cubic-bezier(0.65, 0.05, 0.36, 1);
  color: #ffffff;
  margin-top: 2.083333vw;
  text-align: center;
}
#x4u .section-appearance.animated .section-appearance-0 .big-title,
#x4u .section-appearance.animated .section-appearance-0 .desc{
  transform: translateY(0)
}
#x4u .section-appearance .section-appearance-0 .title-icon{
  width: 19.0625vw;
  margin: 0 auto;
  transform: translateY(120%);
  transition: transform .8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4u .section-appearance.animated .section-appearance-0 .title-icon{
  transform: translateY(0)
}
#x4u .section-appearance .section-appearance-0 .title-icon .icon-1,
#x4u .section-appearance .section-appearance-0 .title-icon .icon-2,
#x4u .section-appearance .section-appearance-0 .title-icon .icon-3{
  position: absolute;
  transition: transform .8s .8s cubic-bezier(0.65, 0.05, 0.36, 1), opacity .8s .8s cubic-bezier(0.65, 0.05, 0.36, 1);
  opacity: 0;
}
#x4u .section-appearance .section-appearance-0 .title-icon .icon-1{
  width: 1.25vw;
  right: 4.6875vw;
  top: 1.927083vw;
  transform: translate(-1.041667vw, .833333vw);
}
#x4u .section-appearance.animated .section-appearance-0 .title-icon .icon-1{
  opacity: .9;
  transform: translate(0, 0);
}
#x4u .section-appearance .section-appearance-0 .title-icon .icon-2{
  width: 1.09375vw;
  top: 2.604167vw;
  left: 5.833333vw;
  transform: translate(.9375vw, 0px);
}
#x4u .section-appearance.animated .section-appearance-0 .title-icon .icon-2{
  opacity: .68;
  transform: translate(0, 0);
}
  
#x4u .section-appearance .section-appearance-0 .title-icon .icon-3{
  width: 2.083333vw;
  top: 0;
  right: 6.5625vw;
  transform: translate(-1.354167vw, .520833vw);
}
#x4u .section-appearance.animated .section-appearance-0 .title-icon .icon-3{
  opacity: 1;
  transform: translate(0, 0);
}
@media (max-aspect-ratio: 11/10){
  #x4u .section-appearance-0 .section-appearance-header{
    width: max-content;
    top: 13.888889vw;
  }
  #x4u .section-appearance .section-appearance-0 .big-title{
    background-image: linear-gradient(to bottom, #D9ECFF 0%, #8DB4D2 44%, #8DB4D2 100%);
  }
  #x4u .section-appearance .section-appearance-0 .title-icon{
    width: 40vw;
    margin: 0 auto;
  }
  #x4u .section-appearance .section-appearance-0 .title-icon .icon-1{
    width: 2.777778vw;
    right: 9.722222vw;
    top: 4.166667vw;
    transform: translate(-2.222222vw, 1.944444vw);
  }
  #x4u .section-appearance .section-appearance-0 .title-icon .icon-2{
    width: 2.222222vw;
    left: 12.222222vw;
    top: 5.555556vw;
    transform: translate(1.388889vw, 0px);
  }
  #x4u .section-appearance .section-appearance-0 .title-icon .icon-3{
    width: 4.444444vw;
    right: 13.75vw;
    top: 0;
    transform: translate(-2.777778vw, 1.388889vw);
  }
  #x4u .section-appearance .section-appearance-0 .desc{
    color: #797C80;
    width: 77.777778vw;
    margin: 8.888889vw auto 0;
  }
}

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

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

#x4u .section-appearance-1 .stat-item {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  white-space: nowrap;
}

#x4u .section-appearance-1 .stat-value {
  position: relative;
  display: flex;
  overflow: hidden;
  height: 1em;
  font-size: var(--stat-number-font-size, 3.333333vw);
  color: #18191A;
}
#x4u .section-appearance-1 .stat-number {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
}
#x4u .section-appearance-1 .stat-number span {
  height: 1em;
  line-height: 1;
}
#x4u .section-appearance-1 .stat-item .stat-unit{
  margin-left: .833333vw;
  line-height: 1.25;
  color: #18191A;
}
#x4u .section-appearance-1 .stat-item .stat-caption{
  line-height: 1.25;
  color: #797C80;
  margin-left: auto;
  width: 100%;
}
@media (max-aspect-ratio: 11/10){
  #x4u .section-appearance-1 .stat-item .stat-caption{
    order: 2;
    width: auto;
    color: #000;
  }
  #x4u .stat-list .stat-value-item .stat-line{
    order: 3;
    width: 100%;
    transform: none;
  }
  #x4u .stat-list .stat-value-item .stat-value-content{
    order: 1;
    margin-left: 2.222222vw;
  }
}
#x4u .section-appearance-2{
  overflow: hidden;
}
#x4u .section-appearance-2 .content{
  width: 70.833333vw;
  margin: 0 auto;
}
#x4u .section-appearance-2 .content .copy{
  margin-left: .833333vw;
}
#x4u .section-appearance-2 .swiper{
  overflow: visible;
  margin: 0 auto;
}
#x4u .section-appearance-2 .content-container{
  margin: 2.5vw .833333vw 0;
}
#x4u .section-appearance-2 .content-wrapper{
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#x4u .section-appearance-2 .content-wrapper .stack-list{
  text-align: left;
}
#x4u .section-appearance-2 .content-wrapper .control-wrapper{
  display: flex;
  align-items: center;
}
#x4u .section-appearance-2 .content-wrapper .arrownav-list{
  margin-left: 1.875vw;
}

@media (max-aspect-ratio: 11/10) {
  #x4u .section-appearance-1{
    padding-top: 0;
  }
  #x4u .section-appearance-1 .content .pic-content{
    width: 95.555556vw;
  }
  #x4u .section-appearance-1 .stat-list {
    position: static;
    width: 80.972222vw;
    display: flex;
    margin-top: 13.888889vw;
  }
  #x4u .section-appearance-1 .stat-item {
    width: 100%;
    padding-top: 0;
    border-top: solid 1px rgba(255, 255, 255, 0.4);
  }
  #x4u .section-appearance-1 .stat-item + .stat-item{
    margin-top: 3.333333vw;
  }
  #x4u .section-appearance-1 .stat-value {
    font-size: var(--stat-number-font-size, 6.666667vw);
  }
  #x4u .section-appearance-1 .stat-item .stat-unit{
    margin-left: 4.444444vw;
  }

  #x4u .section-appearance-1 .copy-top{
    width: 72.222222vw;
    margin: 27.777778vw auto 11.111111vw;
    padding-top: 0;
    text-align: left;
  }
  #x4u .section-appearance-1 .copy-top p{
    width: 76.388889vw;
  }
  #x4u .section-appearance-1 .content .inline-video{
    width: 95.555556vw;
  }
  #x4u .section-appearance-2 .content{
    width: 91.111111vw;
  }
  #x4u .section-appearance-2 .content .copy{
    width: 72.222222vw;
    text-align: left;
    margin: 0 auto;
  }
  #x4u .section-appearance-2 .swiper{
    margin: 0 auto;
  }
  #x4u .section-appearance-2 .content-container{
    margin: 8.888889vw 6.666667vw 0;
  }
  #x4u .section-appearance-2 .content-wrapper{
    flex-direction: column;
    align-items: stretch;
  }
  #x4u .section-appearance-2 .content-wrapper .control-wrapper{
    margin: 8.888889vw 2.777778vw 0;
    justify-content: space-between;
  }
}

#x4u .section-color .color-selection {
  position: relative;
  overflow: hidden;
}
#x4u .section-color .gallery-car-container {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  transform: translateX(0%);
}
#x4u .section-color .gallery.animating .gallery-car-container {
  overflow: visible;
}
#x4u .section-color .current .gallery-car-container {
  z-index: 3;
}

#x4u .section-color .colournav-container {
  flex-direction: column;
  position: absolute;
  bottom: 4.166667vw;
  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);
}
#x4u .section-color.animated .colournav-container {
  transform: translate(-50%,0);
  opacity: 1;
}
#x4u .section-color .label-list {
  width: auto;
  text-align: center;
  margin-bottom: .833333vw;
}
#x4u .section-color .label-item {
  width: max-content;
  transition: opacity 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  color: #fff;
}
#x4u .section-color .gallery-slide.left .clip-item,
#x4u .section-color .gallery-slide.right .clip-item,
#x4u .section-color .gallery-slide.current .clip-item{
  clip-path: none;
}
#x4u .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);
}
#x4u .section-color.animated .copy-content{
  transform: translate(-50%,0);
  opacity: 1;
}
#x4u .section-color .gallery-container .gallery{
    margin-top: -1px;
}

@media (max-aspect-ratio: 11/10) {
  #x4u .section-color .copy-content{
    position: initial;
    transform: translate(0,40%);
    width: 72.222222vw;
    margin:0 auto 11.111111vw;
    text-align: left;
  }
  #x4u .section-color.active .copy-content{
    opacity: 1;
    transform: translate(0,0);
  }
  #x4u .section-color .copy-content .h3{
    color: #18191A;
    font-weight: 400;
  }
  #x4u .section-color .label-item {
    transition: opacity 0.8s ease;
    color: #18191A;
  }
  #x4u .section-color .autoplay-trigger {
    top: 90%;
  }
  #x4u .section-color .colournav-container{
    flex-direction: column;
    position: initial;
    margin-top: 6.666667vw;
    transform: none;
    opacity: 1;
  }
  #x4u .colournav-container .label-item{
    font-size: 4.444444vw;
  }
  #x4u .section-color .label-list{
    margin-bottom: 2.222222vw;
    margin-top: 0;
  }
}
#x4u .section-appearance-4{
  overflow: hidden;
}
#x4u .section-appearance-4 .content{
  width: 71.458333vw;
  margin: 0 auto 0 14.583333vw;
}
#x4u .section-appearance-4 .swiper{
  overflow: visible;
}
#x4u .section-appearance-4 .swiper-slide{
  width: 34.895833vw;
}


#x4u .section-appearance-4 .swiper-slide .text-content{
  margin: 2.083333vw .833333vw 0;
  cursor: auto;
}
#x4u .section-appearance-4 .swiper-slide .text-content h3{
  color: #000;
  font-size: 1.354167vw;
  margin-bottom: 1.25vw;
}
#x4u .section-appearance-4 .pagination-content{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 2.5vw;
}
#x4u .section-appearance-4 .arrownav-list{
  margin-left: auto;
  margin-right: .833333vw;
}

@media (max-aspect-ratio: 11/10){
  #x4u .section-appearance-4 .content{
    width: 91.111111vw;
    margin: 0 auto;
  }
  #x4u .section-appearance-4 h2{
    text-align: left;
    width: 72.222222vw;
    margin: 0 auto 11.111111vw;
  }
  #x4u .section-appearance-4 .swiper-slide{
    width: 86.666667vw;
  }
  #x4u .section-appearance-4 .swiper-slide .text-content h3{
    font-size: 5.555556vw;
    margin-bottom: 3.333333vw;
  }
  #x4u .section-appearance-4 .swiper-slide .text-content{
    margin: 8.888889vw 2.222222vw 0 6.666667vw;
    width: auto;
  }
  #x4u .section-appearance-4 .pagination-content{
    width: 72.222222vw;
    margin: 8.888889vw 9.444444vw 0 auto;
    justify-content: space-between;
  }
  #x4u .section-appearance-4 .arrownav-list{
    margin-right: 0;
  }
}
#x4u .section-appearance-5{
  width: 70.833333vw;
  margin: 0 auto;
}
#x4u .section-appearance-5 .h2{
  text-align: center;
  margin-bottom: 3.333333vw;
}
#x4u .section-appearance-5 .tabnav-content{
  margin-top: 2.5vw;
}
#x4u .section-appearance-5 .stack-list{
  margin-top: .833333vw;
  width: 38.8125vw;
}

@media (max-aspect-ratio: 11/10){
  #x4u .section-appearance-5{
    width: 100%;
  }
  #x4u .section-appearance-5 .h2{
    text-align: left;
    margin: 0 0 8.888889vw 11.111111vw;
    width: 72.222222vw;
  }
  #x4u .section-appearance-5 .tabnav-content{
    margin-top: 8.888889vw;
  }
  #x4u .section-appearance-5 .stack-list{
    margin: 6.666667vw auto 0;
    width: 77.777778vw;
  }
  #x4u .section-appearance-5 .tabnav-content .tabnav-item + .tabnav-item{
    margin-left: 7.777778vw;
  }
}
#x4u .section-appearance-6 .content{
  width: 70.833333vw;
  margin: 0 auto;
}
#x4u .section-appearance-6 .content .copy{
  text-align: center;
  margin-bottom: 3.333333vw;
}
@media (max-aspect-ratio: 11/10){
  #x4u .section-appearance-6 .content{
    width: 91.111111vw;
  }
  #x4u .section-appearance-6 .content .copy{
    text-align: left;
    margin: 0 0 8.888889vw 6.666667vw;
    width: 77.777778vw;
  }
}
#x4u .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;
}
#x4u .section-comfortable .comfortable-header picture{
  transform: scale(.65);
  transition: transform .8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4u .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%);
}
#x4u .section-comfortable .comfortable-header.animated picture{
  transform: scale(1);
}
#x4u .section-comfortable .comfortable-headline{
  position: absolute;
  top: 5.729167vw;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  text-align: center;
}

#x4u .section-comfortable .comfortable-header .desc{
  position: absolute;
  width: 34.375vw;
  bottom: 3.333333vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
#x4u .section-comfortable .comfortable-header .desc p{
  color: rgba(255, 255, 255, 0.8);
}

@media (max-aspect-ratio: 11/10){
  #x4u .section-comfortable .section-header .desc{
    width: 72.222222vw;
    margin: 11.111111vw auto 0;
    position: initial;
    opacity: 1;
    transform: none;
  }
  #x4u .section-comfortable .section-header .desc p{
    color: #797C80;
  }
  #x4u .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;
}
#x4u .section-comfortable .comfortable-header picture{
  transform: scale(1);
  transition: none;
}

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

}
}
#x4u .section-comfortable-1{
  position: relative;
}
#x4u .section-comfortable-1 .gallery-container{
  width: 100%;
}
#x4u .section-comfortable-1 .gallery{
  width: 100%;
}
#x4u .section-comfortable-1 .tabnav-content{
  position: absolute;
  bottom: 4.166667vw;
  z-index: 4;
  left: 50%;
  transform: translateX(-50%);
}
#x4u .section-comfortable-1 .tabnav-content .tabnav-item{
  color: #B9B9B9;
}
#x4u .section-comfortable-1 .tabnav-content .tabnav-item.current{
  color: #ffffff;
}
#x4u .section-comfortable-1 .tabnav-indicator::before{
  background-color: rgba(255, 255, 255, 0.4);
}
#x4u .section-comfortable-1 .tabnav-indicator::after{
  background-color: rgba(255, 255, 255, 1);
}
#x4u .section-comfortable-1 .stack-list{
  margin-top: .833333vw;
}
#x4u .section-comfortable-1 .stack-item{
  color: #fff;
}
@media (max-aspect-ratio: 11/10){
  #x4u .section-comfortable-1{
    margin-top: 8.888889vw;
  }
  #x4u .section-comfortable-1 .tabnav-content{
    position: initial;
    margin-top: 8.888889vw;
    transform: none;
  }
  #x4u .section-comfortable-1 .tabnav-content .tabnav-item{
    color: #797C80;
  }
  #x4u .section-comfortable-1 .tabnav-content .tabnav-item.current{
    color: #18191A;
  }
  #x4u .section-comfortable-1 .tabnav-indicator::before{
    background-color: rgba(24, 25, 26, 0.2);
  }
  #x4u .section-comfortable-1 .tabnav-indicator::after{
    background-color: rgba(24, 25, 26, 1);
  }
  #x4u .section-comfortable-1 .stack-list{
    width: 77.777778vw;
    margin: 6.666667vw auto 0;
    text-align: center;
  }
  #x4u .section-comfortable-1 .stack-item{
    color: #797C80;
  }
}
#x4u .section-comfortable-2{
  overflow: hidden;
}
#x4u .section-comfortable-2 .content{
  width: 70.833333vw;
  margin: 0 auto;
}
#x4u .section-comfortable-2 .content .copy{
  margin-left: .833333vw;
}
#x4u .section-comfortable-2 .swiper{
  overflow: visible;
  margin: 3.333333vw auto 0;
}
#x4u .section-comfortable-2 .content-container{
  margin: 2.083333vw .833333vw 0;
}
#x4u .section-comfortable-2 .content-wrapper{
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#x4u .section-comfortable-2 .content-wrapper .stack-list{
  text-align: left;
}
#x4u .section-comfortable-2 .content-wrapper .control-wrapper{
  display: flex;
  align-items: center;
}
#x4u .section-comfortable-2 .content-wrapper .arrownav-list{
  margin-left: 1.875vw;
}
@media (max-aspect-ratio: 11/10){
  #x4u .section-comfortable-2 .content{
    width: 91.111111vw;
  }
  #x4u .section-comfortable-2 .content .copy{
    margin-left: 6.666667vw;
  }
  #x4u .section-comfortable-2 .swiper{
    margin: 8.888889vw auto 0;
  }
  #x4u .section-comfortable-2 .content-container{
    margin: 8.888889vw 6.666667vw 0;
  }
  #x4u .section-comfortable-2 .content-wrapper{
    flex-direction: column;
    align-items: stretch;
  }
  #x4u .section-comfortable-2 .content-wrapper .control-wrapper{
    margin: 8.888889vw 2.777778vw 0;
  }
  #x4u .section-comfortable-2 .content-wrapper .arrownav-list{
    margin-left: auto;
  }
}
#x4u .section-comfortable-3{
  width: 100%;
  overflow: hidden;
}
#x4u .section-comfortable-3 .content{
  width: 70.833333vw;
  margin: 0 auto;
}
#x4u .section-comfortable-3 .content .copy{
  width: 30.208333vw;
  text-align: center;
  margin: 0 auto;
}
#x4u .section-comfortable-3 .gallery-container{
  overflow: visible;
  margin-top: 3.333333vw;
}
#x4u .section-comfortable-3 .swiper-wrapper{ 
  transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4u .section-comfortable-3 .gallery-wrapper{
  transition: transform .8s cubic-bezier(0.65, 0.05, 0.36, 1);
  will-change: transform;
}
#x4u .section-comfortable-3 .gallery-wrapper.active{
  transform: translateX(calc(-100% - 19.375vw - 2.5vw));
}
#x4u .section-comfortable-3 .gallery{
  transition: transform .8s cubic-bezier(0.65, 0.05, 0.36, 1);
  will-change: transform;
}
#x4u .section-comfortable-3 .gallery.mousehover{
  transform: translateX(calc(-19.375vw - 1.25vw));
}
#x4u .section-comfortable-3 .gallery-slide{
  width: 19.375vw;
  height: 30.208333vw;
  flex-shrink: 0;
  transition: width .8s cubic-bezier(0.65, 0.05, 0.36, 1);
}

#x4u .section-comfortable-3 .gallery-container .gallery-slide + .gallery-slide{
  margin-left: 1.25vw;
}
#x4u .section-comfortable-3  .text-content{
  white-space: nowrap;
}
#x4u .section-comfortable-3 .gallery-slide .text-content{
  position: absolute;
  left: 1.666667vw;
  bottom: 1.666667vw;
  color: #fff;
  font-weight: 700;
}
#x4u .section-comfortable-3 .gallery-slide.current .text-content{
  z-index: 2;
}
#x4u .section-comfortable-3 .gallery-container .swiper{
  visibility: hidden;
}
#x4u .section-comfortable-3 .pagination-content{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 70.833333vw;
  margin-top: 2.5vw;
}
#x4u .section-comfortable-3 .pagination-content .arrownav-list{
  margin-left: 1.875vw;
}
#x4u .section-comfortable-3 .gallery-container .clip-item{
  transform: scale(1);
}
#x4u .section-comfortable-3 .gallery-container .clip-item img{
  height: 30.208333vw;
  object-fit: cover;
}
#x4u .section-comfortable-3 .gallery-slide:hover{
  width: 40vw;
}
@media (max-aspect-ratio: 11/10){
  #x4u .section-comfortable-3 .content{
    width: 91.111111vw;
    overflow: hidden;
  }
  #x4u .section-comfortable-3 .content .copy{
    width: 77.777778vw;
    margin: 0 0 0 6.666667vw;
    text-align: left;
  }
  #x4u .section-comfortable-3 .gallery-slide{
    width: 100%;
    height: auto;
  }
  #x4u .section-comfortable-3 .gallery-container{
    margin-top: 8.888889vw;
    width: 100%;
  }
  #x4u .section-comfortable-3 .gallery-container .gallery-slide + .gallery-slide{
    margin-left: -100%;
  }
   #x4u .section-comfortable-3 .gallery-wrapper{
    position: relative;
   }
  #x4u .section-comfortable-3 .gallery-wrapper.active{
    transform: translateX(0%);
  }
  #x4u .section-comfortable-3  .gallery-slide.current .clip-item {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  #x4u .section-comfortable-3  .gallery-slide.left .clip-item {
    -webkit-clip-path: inset(0 100% 0 0);
      clip-path: inset(0 100% 0 0);
  }
  #x4u .section-comfortable-3  .gallery-slide.right .clip-item {
    -webkit-clip-path: inset(0 0 0 100%);
      clip-path: inset(0 0 0 100%);
  }
  #x4u .section-comfortable-3 .gallery-container .clip-item picture{
    transform: scale(1);
    transition: transform 0s 0.8s;
  }
  #x4w .gallery-container .current .clip-item picture{
    transition: transform 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
    transform: scale(1);
  }
  #x4u .section-comfortable-3 .pagination-content{
    width: 72.222222vw;
    justify-content: space-between;
    margin: 8.888889vw auto 0;
  }
  #x4u .section-comfortable-3 .gallery-slide .text-content{
    bottom: 6.666667vw;
    left: 50%;
    transform: translateX(-50%);
  }
  #x4u .section-comfortable-3 .gallery-slide:hover{
    width: 100%;
  }
  #x4u .section-comfortable-3 .gallery-container .swiper{
    visibility: visible;
  }
  #x4u .section-comfortable-3 .pagination-content .arrownav-list.animating .arrownav-item{
    pointer-events: none;
  }
  #x4u .section-comfortable-3 .gallery-container .clip-item img{
    height: auto;
  }
}
#x4u .section-comfortable-4{
  width: 70.833333vw;
  margin: 0 auto;
}
#x4u .section-comfortable-4 .h2{
  text-align: center;
  margin-bottom: 3.333333vw;
}
#x4u .section-comfortable-4 .tabnav-content{
  margin-top: 2.5vw;
}
#x4u .section-comfortable-4 .stack-list{
  margin-top: .833333vw;
  width: 38.8125vw;
}

@media (max-aspect-ratio: 11/10){
  #x4u .section-comfortable-4{
    width: 100%;
  }
  #x4u .section-comfortable-4 .h2{
    text-align: left;
    margin: 0 0 8.888889vw 11.111111vw;
    width: 72.222222vw;
  }
  #x4u .section-comfortable-4 .tabnav-content{
    margin-top: 8.888889vw;
  }
  #x4u .section-comfortable-4 .stack-list{
    margin: 6.666667vw auto 0;
    width: 77.777778vw;
    text-align: center;
  }
}

#x4u .section-comfortable-5 .gallery-container{
  margin: 0 auto;
  width: 70.833333vw;
}
#x4u .section-comfortable-5 .h2{
  text-align: center;
  margin-bottom: 4.166667vw;
}
#x4u .section-comfortable-5 .gallery-container .clip-item {
  transform: scale(1);
}
#x4u .section-comfortable-5 .colournav-container{
  flex-direction: column;
  position: absolute;
  bottom: 2.083333vw;
  left: 50%;
  transform: translateX(-50%);
}
#x4u .section-comfortable-5 .colournav-container .label-list{
  width: 100%;
}
#x4u .section-comfortable-5 .colournav-container .label-item{
  color: rgba(255,255,255,.7);
  width: 100%;
  text-align: center;
  font-weight: 700;
  margin-bottom: .833333vw;
  transition: opacity .8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
#x4u .section-comfortable-5 .colournav-container .label-item span{
  color: #ffffff;
  display: block;
  font-weight: 700;
  line-height: 1.25;
}

@media (max-aspect-ratio: 11/10){
  #x4u .section-comfortable-5 .gallery-container{
    width: 100%;
  }
  #x4u .section-comfortable-5 .h2{
    width: 72.222222vw;
    text-align: left;
    margin: 0 auto 11.111111vw;
  }
  #x4u .section-comfortable-5 .colournav-container{
    position: initial;
    transform: none;
    flex-direction: column;
    margin-top: 6.666667vw;
  }
  #x4u .section-comfortable-5 .colournav-container .label-item{
    color: #797C80;
    margin-bottom: 2.222222vw;
    font-size: 4.444444vw;
    margin-top: 0;
  }
  #x4u .section-comfortable-5 .colournav-container .label-item span{
    color: #18191A;
  }
  #x4u .section-comfortable-5 .gallery .gallery-slide{
    height: auto;
  }
}

@media (max-aspect-ratio: 11/10){
  #x4u .section-smart .section-header .desc{
    width: 79.166667vw;
    margin: 11.111111vw auto 0;
    position: initial;
    opacity: 1;
    transform: none;
  }
  #x4u .section-smart .section-header .desc p {
    color: #797C80;
  }
}
#x4u .section-drive .section-header .section-headline{
  margin-bottom: 3.333333vw;
}
#x4u .section-drive .section-header .section-headline .copy p{
  color: rgba(255, 255, 255, .9);
  margin-top: 2.083333vw;
}
#x4u .section-drive .section-header .desc{
  position: absolute;
  left: 50%;
  bottom: 4.166667vw;
  transform: translateX(-50%);
}
#x4u .section-drive .section-header .desc p{
  color: rgba(255, 255, 255, .9);
}
#x4u .section-drive .section-header .desc p span{
  color: rgba(255, 255, 255);
  font-weight: 700;
}
@media (max-aspect-ratio: 11/10){
  #x4u .section-drive .section-header .section-headline{
    margin-bottom: 8.888889vw;
  }
  #x4u .section-drive .section-header .desc{
    width: 77.777778vw;
    margin: 8.888889vw auto 0;
    position: initial;
    opacity: 1;
    transform: none;
  }
  #x4u .section-drive .section-header .desc p {
    color: #797C80;
  }
}
#x4u .section-drive-1{
  overflow: hidden;
}
#x4u .section-drive-1 .content{
  width: 71.875vw;
  margin: 0 auto 0 14.583333vw;
}
#x4u .section-drive-1 .h2{
  text-align: center;
  margin-bottom: 4.166667vw;
}
#x4u .section-drive-1 .swiper{
  overflow: visible;
}
#x4u .section-drive-1 .swiper-slide{
  width: 34.895833vw;
}
#x4u .section-drive-1 .swiper-slide .text-content{
  margin: 2.083333vw .833333vw 0;
}

#x4u .section-drive-1 .pagination-content{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 2.5vw;
}
#x4u .section-drive-1 .arrownav-list{
  margin-left: 1.875vw;
}

@media (max-aspect-ratio: 11/10){
  #x4u .section-drive-1 .content{
    width: 91.111111vw;
    margin: 0 auto;
  }
  #x4u .section-drive-1 .h2{
    text-align: left;
    width: 72.222222vw;
    margin: 0 auto 11.111111vw;
  }
  #x4u .section-drive-1 .swiper-slide{
    width: 86.666667vw;
  }
  #x4u .section-drive-1 .swiper-slide .text-content .h3{
    font-size: 5.555556vw;
    margin-bottom: 3.333333vw;
  }
  #x4u .section-drive-1 .swiper-slide .text-content{
    margin: 8.888889vw 0 0 6.666667vw;
    width: auto;
  }
  #x4u .section-drive-1 .pagination-content{
    width: 72.222222vw;
    margin: 8.888889vw auto 0;
    justify-content: space-between;
  }
  #x4u .section-drive-1 .arrownav-list{
    margin-left: auto;
  }
}
#x4u .section-drive-2{
  width: 70.833333vw;
  margin: 0 auto;
}
#x4u .section-drive-2 .h2{
  text-align: center;
  margin-bottom: 3.333333vw;
}
#x4u .section-drive-2 .tabnav-content{
  margin-top: 2.5vw;
}
#x4u .section-drive-2 .stack-list{
  margin-top: .833333vw;
  width: 38.8125vw;
}

@media (max-aspect-ratio: 11/10){
  #x4u .section-drive-2{
    width: 91.111111vw;
  }
  #x4u .section-drive-2 .copy{
    width: 72.222222vw;
    margin: 0 auto;
  }
  #x4u .section-drive-2 .h2{
    text-align: left;
    width: 72.222222vw;
    margin: 0 0 8.888889vw 6.666667vw;
  }
  #x4u .section-drive-2 .tabnav-content{
    margin-top: 8.888889vw;
  }
  #x4u .section-drive-2 .stack-list{
    width: 77.777778vw;
    margin: 6.666667vw auto 0;
    text-align: center;
  }
}
#x4u .section-drive-3{
  overflow: hidden;
}
#x4u .section-drive-3 .content{
  width: 70.833333vw;
  margin: 0 auto;
}
#x4u .section-drive-3 .content .copy{
  margin-left: .833333vw;
}
#x4u .section-drive-3 .swiper{
  overflow: visible;
  margin: 3.333333vw auto 0;
}
#x4u .section-drive-3 .content-container{
  margin: 2.083333vw .833333vw 0;
}
#x4u .section-drive-3 .content-wrapper{
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#x4u .section-drive-3 .content-wrapper .stack-list{
  text-align: left;
}
#x4u .section-drive-3 .content-wrapper .control-wrapper{
  display: flex;
  align-items: center;
}
#x4u .section-drive-3 .content-wrapper .arrownav-list{
  margin-left: 1.875vw;
}
@media (max-aspect-ratio: 11/10){
  #x4u .section-drive-3 .content{
    width: 91.111111vw;
  }
  #x4u .section-drive-3 .content .copy{
    width: 72.222222vw;
    margin: 0 0 7.5vw 6.666667vw;
    text-align: left;
  }
  #x4u .section-drive-3 .content-container{
    margin: 8.888889vw 6.666667vw 0;
  }
  #x4u .section-drive-3 .content-wrapper{
    flex-direction: column;
  }
  #x4u .section-drive-3 .content-wrapper .control-wrapper{
    width: 72.222222vw;
    margin-top: 8.888889vw;
  }
  #x4u .section-drive-3 .content-wrapper .arrownav-list{
    margin-left: auto;
  }
}

#x4u .section-tuling-1{
  overflow: hidden;
}
#x4u .section-tuling-1 .content{
  width: 70.833333vw;
  margin: 0 auto;
}
#x4u .section-tuling-1 .content .copy{
  margin-left: .833333vw;
}
#x4u .section-tuling-1 .swiper{
  overflow: visible;
  margin: 3.333333vw auto 0;
}
#x4u .section-tuling-1 .content-container{
  margin: 3.333333vw .833333vw 0;
}
#x4u .section-tuling-1 .content-wrapper{
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
#x4u .section-tuling-1 .content-wrapper .stack-list{
  text-align: left;
}
#x4u .section-tuling-1 .content-wrapper .control-wrapper{
  display: flex;
  align-items: center;
}
#x4u .section-tuling-1 .content-wrapper .arrownav-list{
  margin-left: 1.875vw;
}

@media (max-aspect-ratio: 11/10){
  #x4u .section-tuling .section-headline{
    margin-bottom: 8.888889vw;
  }
  #x4u .section-tuling-1 .content{
    width: 91.111111vw;
  }
  #x4u .section-tuling-1 .content .copy{
    width: 72.222222vw;
    margin: 0 0 8.888889vw 6.666667vw;
    text-align: left;
  }
  #x4u .section-tuling-1 .content-container{
    margin: 8.888889vw 6.666667vw 0;
  }
  #x4u .section-tuling-1 .content-wrapper{
    flex-direction: column;
  }
  #x4u .section-tuling-1 .content-wrapper .control-wrapper{
    width: 72.222222vw;
    margin: 8.888889vw auto 0;
  }
  #x4u .section-tuling-1 .content-wrapper .arrownav-list{
    margin-left: auto;
  }
}
#x4u .section-tuling-2 .content,
#x4u .section-tuling-3 .content{
  display: flex;
  align-items: center;
  margin-left: 14.583333vw;
}
#x4u .section-tuling-2 .content .pic,
#x4u .section-tuling-3 .content .pic{
  width: 52.083333vw;
}
#x4u .section-tuling-2 .content .copy{
  width: 15.520833vw;
  margin-left: 4.6875vw;
}
#x4u .section-tuling-3 .content .copy{
  width: 15vw;
  margin-right: 3.75vw;
}
@media (max-aspect-ratio: 11/10){
  #x4u .section-tuling-2 .content{
    flex-direction: column-reverse;
    margin: 0 auto;
  }
  #x4u .section-tuling-3 .content{
    flex-direction: column;
    margin: 0 auto;
  }
  #x4u .section-tuling-2 .content .pic, 
  #x4u .section-tuling-3 .content .pic{
    width: 91.111111vw;
  }
  #x4u .section-tuling-2 .content .copy,
  #x4u .section-tuling-3 .content .copy{
    width: 77.777778vw;
    margin: 0 auto 8.888889vw;
  }
}
#x4u .section-safety .section-header .section-headline{
  margin-bottom: 3.333333vw;
}
#x4u .section-safety .section-header .desc{
  position: absolute;
  left: 50%;
  bottom: 4.166667vw;
  transform: translateX(-50%);
  text-align: center;
}
#x4u .section-safety .section-header .desc p{
  color: rgba(255,255,255,.9);
}
@media (max-aspect-ratio: 11/10){
  #x4u .section-safety .section-header .section-headline{
    margin-bottom: 8.888889vw;
  }
  #x4u .section-safety .section-header .desc{
    width: 77.777778vw;
    margin: 8.888889vw auto 0;
    position: initial;
    opacity: 1;
    transform: none;
  }
  #x4u .section-safety .section-header .desc p{
    color: #797C80;
  }
}
#x4u .section-safety-1{
  width: 70.833333vw;
  margin: 0 auto;
}
#x4u .section-safety-1 .h2{
  text-align: center;
  margin-bottom: 3.333333vw;
}
#x4u .section-safety-1 .tabnav-content{
  margin-top: 2.5vw;
}
#x4u .section-safety-1 .stack-list{
  margin-top: .833333vw;
  width: 38.8125vw;
}

@media (max-aspect-ratio: 11/10){
  #x4u .section-safety-1{
    width: 100%;
  }
  #x4u .section-safety-1 .h2{
    text-align: left;
    width: 72.222222vw;
    margin: 0 0 8.888889vw 11.111111vw;
  }
  #x4u .section-safety-1 .tabnav-content{
    margin-top: 8.888889vw;
  }
  #x4u .section-safety-1 .stack-list{
    width: 77.777778vw;
    margin: 6.666667vw auto 0;
  }
}
#x4u .section-safety-2{
  overflow: hidden;
}
#x4u .section-safety-2 .content{
  width: 70.833333vw;
  margin: 0 auto;
}
#x4u .section-safety-2 .content .copy{
  margin-left: .833333vw;
}
#x4u .section-safety-2 .swiper{
  overflow: visible;
  margin: 3.333333vw auto 0;
}
#x4u .section-safety-2 .content-container{
  margin: 2.083333vw .833333vw 0;
}
#x4u .section-safety-2 .content-wrapper{
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#x4u .section-safety-2 .content-wrapper .stack-list{
  text-align: left;
}
#x4u .section-safety-2 .content-wrapper .control-wrapper{
  display: flex;
  align-items: center;
}
#x4u .section-safety-2 .content-wrapper .arrownav-list{
  margin-left: 1.875vw;
}
@media (max-aspect-ratio: 11/10){
  #x4u .section-safety-2 .content{
    width: 91.111111vw;
  }
  #x4u .section-safety-2 .content .copy{
    width: 72.222222vw;
    margin: 0 0 8.888889vw 6.666667vw;
    text-align: left;
  }
  #x4u .section-safety-2 .content-container{
    margin: 8.888889vw 6.666667vw 0;
  }
  #x4u .section-safety-2 .content-wrapper{
    flex-direction: column;
  }
  #x4u .section-safety-2 .content-wrapper .control-wrapper{
    width: 72.222222vw;
    margin-top: 8.888889vw;
  }
  #x4u .section-safety-2 .content-wrapper .arrownav-list{
    margin-left: auto;
  }
}
#x4u .section-safety-3 .content{
  width: 70.833333vw;
  margin: 0 auto;
}
#x4u .section-safety-3 .content .copy{
  width: 39.583333vw;
  margin: 0 auto 3.333333vw;
  text-align: center;
}

@media (max-aspect-ratio: 11/10){
  #x4u .section-safety-3 .content{
    width: 91.111111vw;
  }
  #x4u .section-safety-3 .content .copy{
  width: 77.777778vw;
  margin: 0 0 8.888889vw 6.666667vw;
  text-align: left;
}
}
#x4u .section-safety-4{
  overflow: hidden;
}
#x4u .section-safety-4 .content{
  width: 70.833333vw;
  margin: 0 auto;
}
#x4u .section-safety-4 .content .copy{
  margin-left: .833333vw;
}
#x4u .section-safety-4 .swiper{
  overflow: visible;
  margin: 3.333333vw auto 0;
}
#x4u .section-safety-4 .content-container{
  margin: 3.333333vw .833333vw 0;
}
#x4u .section-safety-4 .content-wrapper{
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
#x4u .section-safety-4 .content-wrapper .stack-list{
  text-align: left;
}
#x4u .section-safety-4 .content-wrapper .control-wrapper{
  display: flex;
  align-items: center;
}
#x4u .section-safety-4 .content-wrapper .arrownav-list{
  margin-left: 1.875vw;
}

@media (max-aspect-ratio: 11/10){
  #x4u .section-tuling .section-headline{
    margin-bottom: 8.888889vw;
  }
  #x4u .section-safety-4 .content{
    width: 91.111111vw;
  }
  #x4u .section-safety-4 .content .copy{
    width: 72.222222vw;
    margin: 0 0 8.888889vw 6.666667vw;
    text-align: left;
  }
  #x4u .section-safety-4 .content-container{
    margin: 8.888889vw 6.666667vw 0;
  }
  #x4u .section-safety-4 .content-wrapper{
    flex-direction: column;
  }
  #x4u .section-safety-4 .content-wrapper .control-wrapper{
    width: 72.222222vw;
    margin-top: 8.888889vw;
  }
  #x4u .section-safety-4 .content-wrapper .arrownav-list{
    margin-left: auto;
  }
}
#x4u .section-configuration .configuration-content{
  position: relative;
}
#x4u .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;
}
#x4u .section-configuration .h2.text-move.animated{
  transform: translate(-50%,0);
}
#x4u .section-configuration .content{
  position: relative;
  background-color: #151515;

}
#x4u .section-configuration .desc-content{
  position: absolute;
  bottom: 4.166667vw;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
}
#x4u .section-configuration .text-content{
  display: flex;
  justify-content: center;
}
#x4u .section-configuration .text-content .title{
  position: relative;
  width: 14.895833vw;
  margin-bottom: 1.041667vw;
  height: 1.875vw;
  backdrop-filter: blur(2px) brightness(1.5);
  -webkit-backdrop-filter: blur(2px) brightness(1.5);
  background-color: rgba(255, 255, 255, .8);
  border-radius: .416667vw;
}
#x4u .section-configuration .text-content .title p{
  position: absolute;
  width: max-content;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #18191A;
}

#x4u .section-configuration .text-content>div + div{
  margin-left: 4.6875vw;
}
#x4u .section-configuration .text-content .desc{
  display: flex;
  white-space: nowrap;
}
#x4u .section-configuration .text-content .desc p{
  color: rgba(255, 255, 255, 0.8);
}
#x4u .section-configuration .text-content .desc p + p{
  margin-left: 3.125vw;
}
#x4u .section-configuration .text-content .desc span{
  display: block;
  color: #fff;
  font-size: 2.083333vw;
  font-weight: 500;
  line-height: 1.25;
  margin-top: .208333vw;
}
#x4u .section-configuration .text-content .desc span b{
  font-weight: 500;
  font-size: 1.041667vw;
  margin-left: .833333vw;
}
#x4u .section-configuration .button-container{
  width: max-content;
  margin: 2.5vw auto 0;
}
#x4u .section-configuration .button-container .button-normal{
  position: relative;
  width: 10.208333vw;
}
#x4u .section-configuration .button-container .button-content{
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#x4u .section-configuration .button-container .button-content p{
  font-size: .9375vw;
  position: initial;
  color: #000;
  font-weight: 400;
}
#x4u .section-configuration .button-container .pdp-cta{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#x4u .section-configuration .button-container .button-content .button-arrow{
  width: .9375vw;
  margin-left: .416667vw;
  transition: transform 0.8s;
}


@media (any-hover: hover) and (pointer: fine) {
  #x4u .section-configuration .button-container:hover{
    opacity: .7;
  }
  #x4u .section-configuration .button-container:hover .button-arrow{
    transform: translateX(0.520833vw);
  }
}

@media (max-aspect-ratio: 11/10){
  #x4u .section-configuration .h2.text-move{
    top: 9.722222vw;
    width: auto;
    position: initial;
    color: #18191A;
    transform: translateY(40%);
    margin-bottom: 8.888889vw;
  }
  #x4u .section-configuration .h2.text-move.animated{
    transform: translateY(0);
  }
  #x4u .section-configuration .desc-content{
    bottom: 8.888889vw;
    width: 77.777778vw;
  }
  #x4u .section-configuration .text-content{
    flex-direction: column;
    width: 77.777778vw;
    bottom: 22.222222vw;
  }
  #x4u .section-configuration .text-content .desc {
    justify-content: space-between;
    margin-top: 0;
    margin-left: 9.444444vw;
  }
  #x4u .section-configuration .text-content .desc p{
    font-size: 3.333333vw;
  }
  #x4u .section-configuration .text-content .desc p + p{
    margin-left: 0;
  }
  #x4u .section-configuration .text-content .desc span{
    font-size: 8.888889vw;
    margin-top: 1.388889vw;
  }
  #x4u .section-configuration .text-content .desc span b{
    font-size: 3.888889vw;
    margin-left: 3.333333vw;
  }
  #x4u .section-configuration .text-content>div.item{
    display: flex;
    flex-direction: row;
    width: 73.611111vw;
  }
  #x4u .section-configuration .text-content>div + div{
    margin-left: 0;
    margin-top: 0;
  }
  #x4u .section-configuration .text-content .line{
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 5vw auto 4.444444vw;
  }
  #x4u .section-configuration .text-content .title{
    width: 34.722222vw;
    height: 12.777778vw;
    margin: 0 auto;
    border-radius: 1.111111vw;
  }
  #x4u .section-configuration .text-content .title p{
    font-size: 3.333333vw;
  }
  #x4u .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;
  }
  #x4u .section-configuration .button-container{
    margin-top: 1.388889vw;
  }
  #x4u .section-configuration .button-container .button-normal{
    width: 26.666667vw;
  }
  #x4u .section-configuration .button-container .button-content p{
    font-size: 3.611111vw;
  }
  #x4u .section-configuration .note{
    padding-top: 11.111111vw;
  }
  #x4u .section-configuration .note p{
    font-size: 3.333333vw;
    width: 85vw;
  }
}
#x4u .section-footnote{
  width: 67.5vw;
  margin: 0 auto;
  padding-bottom: 80px;
  --font-size: 14px;
  font-size: var(--font-size);
  --icon-size: 16px;
}
#x4u .section-footnote .footnote-list {
  padding-inline-start: 1.5em;
}
#x4u .section-footnote ul{
  font-size: inherit;
  margin-top: 1.6em;
}
#x4u .section-footnote li {
  font-size: inherit;
  list-style-type: decimal;
  color: #000000;
  line-height: 1.6em;
  margin: .5em 0;
  font-weight: 500;
  position: relative;
}
#x4u .section-footnote li.current {
  font-weight: 800;
}
#x4u .section-footnote i {
  position: absolute;
  bottom: 0;
  display: none;
  width: var(--icon-size);
  height: var(--icon-size);
  cursor: pointer;
  transform: translateY(calc((var(--font-size) * 1.6 - var(--icon-size)) / 2 * -1));
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23e7e7e8'/%3E%3Cpath d='M3.239,8.986,3.233,8.98a.688.688,0,0,1-.014-.972L5.942,5.28H.689A.685.685,0,0,1,.2,5.089l-.009-.01A.689.689,0,0,1,0,4.6V4.589a.7.7,0,0,1,.188-.48L.194,4.1a.681.681,0,0,1,.494-.213H5.911L3.225,1.178a.694.694,0,0,1,0-.979l0,0A.669.669,0,0,1,3.7,0a.772.772,0,0,1,.473.171l.021.017L7.838,3.845a1.151,1.151,0,0,1,.222.331l.008.019V4.2a1.036,1.036,0,0,1,.076.39v0a1.082,1.082,0,0,1-.312.76L4.212,8.976a.683.683,0,0,1-.487.2.715.715,0,0,1-.486-.194' transform='translate(3.411 12.076) rotate(-90)' fill='%23000'/%3E%3C/svg%3E") center/100% no-repeat;
}
#x4u .section-footnote li.current i {
  display: inline-block;
}
@media (max-aspect-ratio: 11/10) {
    #x4u .section-footnote{
        width: 91.111111vw;
        margin-top: 0;
        position: relative;
        z-index: 2;
        --font-size: 3.333333vw;
        --icon-size: 4.722222vw;
    }
    #x4u .section-footnote .footnote-list {
        font-size: 3.333333vw;
    }
    #x4u .section-footnote li {
        line-height: 1.6;
    }
}


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

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

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

@media (max-aspect-ratio: 11/10) {
  #x4u .section-color-new .gallery-car-wrapper {
    margin-top: -20.138889vw;
  }

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