:root {
  --toc-width: clamp(240px, 25vw, 480px);
  --team-header-width: 30%;
}

.paused *,
.paused ::before,
.paused ::after {
  animation-play-state: paused !important;
  transition: none !important;
}

.wrapper.main {
  position: relative;
  z-index: 1;
}

.main-header {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 9;
  overflow: hidden;
}
@media (max-width: 1600px) {
  .main-header {
    height: auto;
    aspect-ratio: 16/9;
    max-height: 100dvh;
  }
}
@media (max-width: 799px) {
  .main-header {
    height: 100dvh;
    max-height: 1068px;
    aspect-ratio: auto;
  }
}
@media (min-width: 1921px) {
  .main-header {
    max-height: 1440px;
  }
}
.main-header::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  box-shadow: 0 0 12px 3px white;
  background-color: white;
  z-index: 1;
}
.main-header .header-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.main-header .header-wrapper .hero-bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  translate: -50% -50%;
  overflow: hidden;
  z-index: 1;
}
.main-header .header-wrapper .hero-bg-img .hero-slide-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  translate: -50% -50%;
  overflow: hidden;
}
.main-header .header-wrapper .hero-bg-img .hero-slide-bg .image-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}
.main-header .header-wrapper .hero-bg-img .hero-slide-bg .image-container.move-background {
  animation-name: move-background;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes move-background {
  0% {
    transform: scale(1) translateY(0);
  }
  100% {
    transform: scale(1.1) translateY(5%);
  }
}
.main-header .header-wrapper .hero-bg-img .hero-slide-bg#hero-slide-bg-1 .image-container {
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url("../img/hero-img-1.jpg");
}
.main-header .header-wrapper .hero-bg-img .hero-slide-bg#hero-slide-bg-2 .image-container {
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url("../img/hero-img-2.jpg");
}
.main-header .header-wrapper .hero-bg-img .hero-slide-bg#hero-slide-bg-3 .image-container {
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url("../img/hero-img-3.jpg");
}
.main-header .header-wrapper .hero-bg-img .hero-slide-bg#hero-slide-bg-4 .image-container {
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url("../img/hero-img-4.jpg");
}
.main-header .header-wrapper .hero-bg-img .hero-slide-bg:not(:first-child) {
  opacity: 0;
}
.main-header .header-wrapper .hero-bg-img .hero-slide-bg.show {
  animation-name: slide-image-fade-in;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.main-header .header-wrapper .hero-bg-img .hero-slide-bg.top {
  z-index: 2;
}
.main-header .header-wrapper .hero-bg-img .hero-slide-bg.back {
  z-index: 0;
}
.main-header .header-wrapper .hero-bg-img .hero-slide-bg.hide {
  animation-name: slide-image-fade-out;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes slide-image-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slide-image-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.main-header .header-wrapper .hero-global-map {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
}
.main-header .header-wrapper .hero-global-map .map-graphics {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: auto;
  aspect-ratio: 89/50;
  background-image: url("../img/global-map.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (min-width: 1921px) {
  .main-header .header-wrapper .hero-global-map .map-graphics {
    max-width: 1920px;
  }
}
.main-header .header-wrapper .hero-global-map .map-graphics .location-markers {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
.main-header .header-wrapper .hero-global-map .map-graphics .location-markers .marker {
  position: absolute;
  translate: -50% -50%;
  width: clamp(24px, 2.5vw, 48px);
  aspect-ratio: 1/1;
}
.main-header .header-wrapper .hero-global-map .map-graphics .location-markers .marker.animate::before, .main-header .header-wrapper .hero-global-map .map-graphics .location-markers .marker.animate::after {
  will-change: transform, opacity;
}
.main-header .header-wrapper .hero-global-map .map-graphics .location-markers .marker.animate::before {
  animation: small-pulse 3s ease 0s infinite normal none;
}
.main-header .header-wrapper .hero-global-map .map-graphics .location-markers .marker.animate::after {
  animation: small-pulse 3s ease 0.1s infinite normal none;
}
.main-header .header-wrapper .hero-global-map .map-graphics .location-markers .marker .dot {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 12%;
  height: 12%;
  background-color: #ffffff;
  background-color: #38b4c8;
  background-color: #38b4c8;
  border-radius: 100%;
}
.main-header .header-wrapper .hero-global-map .map-graphics .location-markers .marker::before, .main-header .header-wrapper .hero-global-map .map-graphics .location-markers .marker::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 100%;
}
.main-header .header-wrapper .hero-global-map .map-graphics .location-markers .marker::before {
  width: 50%;
  height: 50%;
  background-color: rgba(56, 180, 200, 0.2);
  opacity: 0;
}
.main-header .header-wrapper .hero-global-map .map-graphics .location-markers .marker::after {
  width: 100%;
  height: 100%;
  background-color: rgba(56, 180, 200, 0.1);
  opacity: 0;
}
@keyframes small-pulse {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  40% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
  }
}
.main-header .header-wrapper .hero-global-map.show {
  animation-name: map-fade-in;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
.main-header .header-wrapper .hero-global-map.hide {
  animation-name: map-fade-out;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
@keyframes map-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes map-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.main-header .header-wrapper .hero-slide-contents {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  translate: -50% -50%;
  z-index: 3;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy.top {
  z-index: 2;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy.back {
  z-index: 0;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy#hero-slide-copy-3 {
  width: 100%;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy:not(:first-child) .line {
  opacity: 0;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy .line.show {
  animation-name: text-fade-in;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy .line.hide {
  animation-name: text-fade-out;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes text-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes text-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy .header-text .line {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy .header-text .line:first-child {
  translate: 0 -50%;
  font-family: "Poppins", sans-serif;
  font-size: min(var(--vw-based-48), 48px);
  font-weight: 100;
  line-height: 1.5;
  color: #ffffff;
}
@media (max-width: 1462px) {
  .main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy .header-text .line:first-child {
    font-size: min(var(--vw-based-32), 32px);
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  .main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy .header-text .line:first-child {
    font-size: min(var(--vw-based-24), 24px);
  }
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy .header-text .line:nth-child(2) {
  position: relative;
  translate: 0 50%;
  font-family: "Roboto Condensed", sans-serif;
  font-size: min(var(--vw-based-72), 72px);
  font-weight: 100;
  line-height: 1;
  letter-spacing: min(var(--vw-based-8), 8px);
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 0 20px #ffffff;
  white-space: nowrap;
}
@media (max-width: 1462px) {
  .main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy .header-text .line:nth-child(2) {
    font-size: min(var(--vw-based-48), 48px);
    letter-spacing: min(var(--vw-based-6), 6px);
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  .main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy .header-text .line:nth-child(2) {
    font-size: min(var(--vw-based-32), 32px);
    letter-spacing: min(var(--vw-based-4), 4px);
  }
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy .header-text .line:nth-child(2)#typed-text-container {
  display: block;
  width: auto;
  min-height: min(var(--vw-based-72), 72px);
}
@media (max-width: 1462px) {
  .main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy .header-text .line:nth-child(2)#typed-text-container {
    min-height: min(var(--vw-based-48), 48px);
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  .main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy .header-text .line:nth-child(2)#typed-text-container {
    min-height: min(var(--vw-based-32), 32px);
  }
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy .header-text .line:nth-child(2)#typed-text-container #typed-text {
  display: none;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy .header-text .line:nth-child(2)#typed-text-container #typed-text.show {
  display: block;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy .header-text .line:nth-child(2)#typed-text-container .cursor {
  display: block;
  position: absolute;
  top: 50%;
  right: -2px;
  translate: 0 -50%;
  width: 1px;
  height: 100%;
  background-color: #ffffff;
  visibility: hidden;
  animation: blink 0.8s infinite step-end;
}
@keyframes blink {
  50% {
    visibility: visible;
  }
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy .header-text.center .line {
  display: block;
  left: 50%;
  translate: -50% -50%;
  font-family: "Poppins", sans-serif;
  font-size: min(var(--vw-based-48), 48px);
  font-weight: 100;
  line-height: 1.5;
  color: #ffffff;
  text-shadow: 0 0 20px #ffffff;
  text-align: center;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy .header-text.center .line span {
  font-weight: 600;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy .header-text.center .line span.en {
  font-weight: 500;
}
@media (max-width: 1462px) {
  .main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy .header-text.center .line {
    font-size: min(var(--vw-based-32), 32px);
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  .main-header .header-wrapper .hero-slide-contents .wrapper.hero-copy .hero-slide-copy .header-text.center .line {
    font-size: min(var(--vw-based-24), 24px);
  }
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers {
  position: absolute;
  bottom: 24px;
  right: 0px;
  z-index: 1;
}
@media (max-width: 1462px) {
  .main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers {
    bottom: 16px;
  }
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers {
  position: absolute;
  bottom: 48px;
  right: 0;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers.top {
  z-index: 2;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers.back {
  z-index: 0;
}
@media (max-width: 1462px) {
  .main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers {
    bottom: 32px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  .main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers {
    bottom: 16px;
  }
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .header-text,
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .total,
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .metrics-list,
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .description {
  opacity: 0;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .header-text,
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .total,
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .metrics-list {
  position: relative;
  white-space: nowrap;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .header-text.show, .main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .header-text.hide,
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .metrics-list.show,
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .metrics-list.hide,
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .total.show,
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .total.hide {
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .header-text.show,
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .metrics-list.show,
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .total.show {
  will-change: opacity, transform;
  animation-name: numbers-fade-in;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .header-text.hide,
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .metrics-list.hide,
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .total.hide {
  will-change: none;
  animation-name: numbers-fade-out;
  animation-timing-function: cubic-bezier(0.5, 0, 0, 1);
}
@keyframes numbers-fade-in {
  0% {
    transform: translateY(12px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes numbers-fade-out {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-12px);
    opacity: 0;
  }
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .header-text,
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers p {
  color: #ffffff;
  text-align: right;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .header-text {
  margin-bottom: min(var(--vw-based-16), 16px);
  font-family: "Roboto Condensed", sans-serif;
  font-size: min(var(--vw-based-48), 48px);
  font-weight: 700;
  letter-spacing: min(var(--vw-based-4), 4px);
  line-height: 1;
  text-transform: uppercase;
  color: #ccd4d5;
}
@media (max-width: 1462px) {
  .main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .header-text {
    font-size: min(var(--vw-based-40), 40px);
  }
}
@media (max-width: 599px) {
  .main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .header-text {
    padding-right: 4px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  .main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .header-text {
    font-size: min(var(--vw-based-20), 20px);
    letter-spacing: min(var(--vw-based-2), 2px);
  }
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .total {
  font-family: "Poppins", sans-serif;
  font-size: min(var(--vw-based-128), 128px);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 20px #ffffff;
  word-spacing: -8px;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .total .unit {
  display: inline-block;
  font-size: 70%;
  word-spacing: -4px;
}
@media (max-width: 1462px) {
  .main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .total {
    font-size: min(var(--vw-based-72), 72px);
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  .main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .total {
    font-size: min(var(--vw-based-72), 72px);
  }
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .metrics-list {
  display: flex;
  justify-content: flex-start;
  -moz-column-gap: min(var(--vw-based-32), 32px);
       column-gap: min(var(--vw-based-32), 32px);
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .metrics-list .metric {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .metrics-list .metric .figure {
  font-size: min(var(--vw-based-96), 96px);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 20px #ffffff;
  white-space: nowrap;
  word-spacing: -8px;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .metrics-list .metric .figure .unit {
  display: inline-block;
  font-size: 50%;
  word-spacing: 0;
}
@media (max-width: 1462px) {
  .main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .metrics-list .metric .figure {
    font-size: min(var(--vw-based-72), 72px);
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  .main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .metrics-list .metric .figure {
    font-size: min(var(--vw-based-72), 72px);
  }
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .metrics-list .metric .label {
  margin-top: min(var(--vw-based-8), 8px);
  font-size: clamp(12px, var(--vw-based-14), 14px);
  line-height: 1;
  color: #ccd4d5;
}
@media (max-width: 599px) {
  .main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .hero-slide-numbers .metrics-list .metric .label {
    font-size: 8px;
  }
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .asof {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .asof p {
  font-size: 12px;
  line-height: 1;
  text-align: right;
  color: #809396;
  white-space: nowrap;
}
@media (max-width: 799px) {
  .main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .asof p {
    font-size: 10px;
  }
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .asof.show, .main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .asof.hide {
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .asof.show {
  animation-name: text-fade-in;
}
.main-header .header-wrapper .hero-slide-contents .wrapper.hero-numbers .asof.hide {
  animation-name: text-fade-out;
}
.main-header .header-wrapper .hero-slide-contents .hero-slider-controls {
  position: absolute;
  bottom: 96px;
  left: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
}
@media (max-width: 1462px) {
  .main-header .header-wrapper .hero-slide-contents .hero-slider-controls {
    bottom: 60px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  .main-header .header-wrapper .hero-slide-contents .hero-slider-controls {
    bottom: 24px;
  }
}
.main-header .header-wrapper .hero-slide-contents .hero-slider-controls .controls {
  cursor: pointer;
  width: clamp(24px, var(--vw-based-48), 48px);
  aspect-ratio: 1/1;
}
.main-header .header-wrapper .hero-slide-contents .hero-slider-controls .controls.playing .play {
  display: none;
}
.main-header .header-wrapper .hero-slide-contents .hero-slider-controls .controls.playing .pause {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 960px) and (max-height: 450px) {
  .main-header .header-wrapper .hero-slide-contents .hero-slider-controls .controls {
    width: 24px;
  }
}
@media (hover: hover) {
  .main-header .header-wrapper .hero-slide-contents .hero-slider-controls .controls:hover {
    opacity: 0.7;
  }
}
.main-header .header-wrapper .hero-slide-contents .hero-slider-controls .controls .play,
.main-header .header-wrapper .hero-slide-contents .hero-slider-controls .controls .pause {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.8;
}
.main-header .header-wrapper .hero-slide-contents .hero-slider-controls .controls .play {
  background-image: url("../img/play.svg");
  background-position: 60%;
}
.main-header .header-wrapper .hero-slide-contents .hero-slider-controls .controls .pause {
  display: none;
  background-image: url("../img/pause.svg");
}

main .split-layout {
  position: relative;
}
main .split-layout .blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 4;
}
main .split-layout .toc {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--toc-width);
  height: 100%;
  padding-top: min(12.5vw, 240px);
  padding-bottom: min(12.5vw, 240px);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  z-index: 3;
}
@media (min-width: 1921px) {
  main .split-layout .toc {
    left: calc((100% - 1920px) / 2);
  }
}
@media (max-width: 960px) {
  main .split-layout .toc {
    display: none;
  }
}
main .split-layout .toc .toc-contents {
  width: var(--toc-width);
  display: flex;
  justify-content: center;
}
main .split-layout .toc .toc-contents ul {
  position: sticky;
  top: 144px;
  left: 0;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main .split-layout .toc .toc-contents ul .toc-item {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
main .split-layout .toc .toc-contents ul .toc-item:not(:last-child) .line {
  display: block;
  position: absolute;
  top: 24px;
  left: 11px;
  width: 1px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.5);
}
main .split-layout .toc .toc-contents ul .toc-item .wrapper {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
main .split-layout .toc .toc-contents ul .toc-item .wrapper .dot {
  position: relative;
  width: 24px;
  height: 24px;
}
main .split-layout .toc .toc-contents ul .toc-item .wrapper .dot div {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 7px;
  height: 7px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 100%;
  transition: background-color 0.5s ease;
}
main .split-layout .toc .toc-contents ul .toc-item .wrapper .dot div.blinker {
  width: 0;
  height: 0;
  opacity: 1;
  background-color: #ffffff;
}
main .split-layout .toc .toc-contents ul .toc-item .wrapper p {
  cursor: pointer;
  font-size: clamp(14px, var(--vw-based-16), 16px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  transition: color 1s ease;
}
@media (hover: hover) {
  main .split-layout .toc .toc-contents ul .toc-item:hover p {
    transition: color 0s ease;
    color: rgba(255, 255, 255, 0.8);
  }
}
main .split-layout .toc .toc-contents ul .toc-item.current .wrapper .dot div {
  background-color: white;
}
main .split-layout .toc .toc-contents ul .toc-item.current .wrapper .dot div.blinker {
  animation: pulse2 5s ease 1s infinite forwards;
}
@keyframes pulse2 {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  30% {
    width: 23px;
    height: 23px;
    opacity: 0;
  }
  100% {
    width: 23px;
    height: 23px;
    opacity: 0;
  }
}
main .split-layout .toc .toc-contents ul .toc-item.current .wrapper p {
  color: white;
}
main .split-layout .toc .toc-contents ul .toc-item.current:not(:last-child) .line {
  background-color: rgba(255, 255, 255, 0.8);
  animation: flicker 5s ease infinite forwards;
}
@keyframes flicker {
  0% {
    height: 0;
  }
  20% {
    height: 48px;
  }
  100% {
    height: 48px;
  }
}
main .split-layout .contents {
  position: relative;
  width: 100%;
  overflow: hidden;
}
main .split-layout .contents .section-contents .section-contents-header .section-contents-header-wrapper {
  padding-left: var(--toc-width);
  box-sizing: border-box;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents .section-contents-header .section-contents-header-wrapper {
    padding-left: calc(var(--side-padding) / 2);
  }
}
main .split-layout .contents .section-contents .section-contents-header .section-contents-header-wrapper .header-text.main {
  font-size: clamp(48px, var(--vw-based-72), 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: clamp(6px, var(--vw-based-12), 12px);
  text-transform: uppercase;
  text-shadow: 0 0 15px #ffffff;
  color: #ffffff;
}
main .split-layout .contents .section-contents .section-contents-header .section-contents-header-wrapper .header-text.main span {
  display: block;
  font-weight: 100;
  text-shadow: none;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents .section-contents-header .section-contents-header-wrapper .header-text.main {
    font-size: 48px;
    letter-spacing: 6px;
  }
}
@media (max-width: 799px) {
  main .split-layout .contents .section-contents .section-contents-header .section-contents-header-wrapper .header-text.main {
    font-size: 40px;
    letter-spacing: 5px;
  }
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents .section-contents-header .section-contents-header-wrapper .header-text.main {
    font-size: 32px;
    letter-spacing: 4px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents .section-contents-header .section-contents-header-wrapper .header-text.main {
    font-size: 32px;
    letter-spacing: 4px;
  }
}
main .split-layout .contents .section-contents .slider-controls {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media (max-width: 799px) {
  main .split-layout .contents .section-contents .slider-controls {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
main .split-layout .contents .section-contents .slider-controls .button {
  cursor: pointer;
  width: 40px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 799px) {
  main .split-layout .contents .section-contents .slider-controls .button {
    width: 32px;
  }
}
main .split-layout .contents .section-contents .slider-controls .button::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background-image: url("../img/chevron.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.8;
}
main .split-layout .contents .section-contents .slider-controls .button.go-left::after {
  transform: scaleX(-1);
}
@media (hover: hover) {
  main .split-layout .contents .section-contents .slider-controls .button:hover {
    opacity: 0.7;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents {
  position: relative;
  width: 100%;
  padding-top: min(12.5vw, 240px);
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#strategies .page-contents {
    padding-top: 96px;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00262d;
  z-index: 0;
}
main .split-layout .contents .section-contents#strategies .page-contents::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  box-shadow: 0 0 10px 3px rgba(255, 255, 255, 0.8);
  background-color: white;
  z-index: 3;
}
main .split-layout .contents .section-contents#strategies .page-contents#battery::before {
  background: linear-gradient(135deg, #005e70, #00262d, #001317);
}
main .split-layout .contents .section-contents#strategies .page-contents#battery::after {
  display: none;
}
main .split-layout .contents .section-contents#strategies .page-contents#data-center::before {
  background: linear-gradient(135deg, #48cae4, #1974d2, #0f52ba);
}
main .split-layout .contents .section-contents#strategies .page-contents#fundraising::before {
  background: linear-gradient(135deg, #92d7de, #337385, #332a26);
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper {
  position: relative;
  padding-left: var(--toc-width);
  box-sizing: border-box;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper {
    padding-left: calc(var(--side-padding) / 2);
    padding-right: calc(var(--side-padding) / 2);
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .label {
  width: clamp(96px, var(--vw-based-192), 192px);
  height: clamp(96px, var(--vw-based-192), 192px);
  padding-bottom: clamp(8px, var(--vw-based-24), 24px);
  box-sizing: border-box;
  background: linear-gradient(135deg, #ffffff, #b87333);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .label {
    width: 96px;
    height: 96px;
    padding-bottom: 8px;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .label p {
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(14px, var(--vw-based-24), 24px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .label p span {
  font-weight: 100;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .label p {
    font-size: 14px;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .strategy {
  margin-top: clamp(64px, var(--vw-based-96), 96px);
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .strategy {
    margin-top: 72px;
  }
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .strategy {
    margin-top: 48px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .strategy {
    margin-top: 48px;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .strategy .header-text.main {
  font-family: "Poppins", sans-serif;
  font-size: clamp(48px, var(--vw-based-72), 72px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: clamp(6px, var(--vw-based-12), 12px);
  color: #ffffff;
  text-shadow: 0 0 15px #ffffff;
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .strategy .header-text.main span {
  display: block;
  font-weight: 100;
  text-shadow: none;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .strategy .header-text.main {
    font-size: 48px;
    letter-spacing: 6px;
  }
}
@media (max-width: 799px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .strategy .header-text.main {
    font-size: 40px;
    letter-spacing: 6px;
  }
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .strategy .header-text.main {
    font-size: 32px;
    letter-spacing: 5px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .strategy .header-text.main {
    font-size: 32px;
    letter-spacing: 5px;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .image {
  position: absolute;
  top: clamp(72px, var(--vw-based-144), 144px);
  left: 46%;
  width: min(62vw, 1192px);
  height: auto;
  aspect-ratio: 1192/621;
  z-index: -1;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .image {
    top: 50%;
    left: 20%;
    translate: 0 -50%;
    width: 95%;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .details {
  margin-top: clamp(48px, var(--vw-based-72), 72px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .details {
    margin-top: 32px;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .details .header-text {
  font-size: clamp(24px, var(--vw-based-40), 40px);
  line-height: 1.5;
  letter-spacing: min(var(--vw-based-4), 4px);
  color: #ffffff;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .details .header-text {
    font-size: 24px;
    letter-spacing: 2px;
  }
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .details .header-text {
    font-size: 20px;
    letter-spacing: 1px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .details .header-text {
    font-size: 20px;
    letter-spacing: 1px;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .details .summary {
  margin-top: min(var(--vw-based-8), 8px);
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1462px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .details .summary {
    font-size: clamp(16px, var(--vw-based-24), 24px);
  }
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .details .summary {
    margin-top: 4px;
    font-size: 16px;
  }
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .details .summary {
    font-size: 14px;
  }
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .details .summary br {
    display: none;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .details .summary {
    font-size: 14px;
  }
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .details .summary br {
    display: none;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .details .read-more {
  margin-top: clamp(48px, var(--vw-based-96), 96px);
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .details.en .header-text {
  font-size: clamp(32px, var(--vw-based-48), 48px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1px;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .details.en .header-text {
    font-size: 32px;
  }
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .details.en .header-text {
    font-size: 24px;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .details.en .header-text {
    font-size: 24px;
    letter-spacing: 0.5px;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .details.en .summary {
  margin-top: 16px;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .details.en .summary {
    margin-top: 8px;
  }
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .page-contents-header .page-contents-header-wrapper .details.en .summary br {
    display: none;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy {
  height: 80dvh;
  max-height: 800px;
  margin: auto;
  padding: 0;
  padding-top: 32px;
  border: 0;
  outline: 0;
  background-color: transparent;
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy {
    height: 90dvh;
    padding-top: 24px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy {
    height: 80dvh;
    padding-top: 24px;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper {
  width: 100%;
  height: 100%;
  padding: 96px;
  box-sizing: border-box;
  background-color: rgba(0, 38, 45, 0.8);
  border-radius: var(--common-radius-16);
  overflow: hidden;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper {
    padding: 72px 48px;
  }
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper {
    padding: 24px;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents {
  width: 100%;
  height: 100%;
  padding-right: 48px;
  box-sizing: border-box;
  overscroll-behavior: contain;
  overflow-y: auto;
  border: 0;
  outline: 0;
  display: flex;
  flex-direction: column;
  row-gap: 48px;
  scrollbar-width: thin;
  scrollbar-color: #ffffff #335157;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents {
    padding-right: 32px;
  }
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents {
    padding-right: 16px;
    row-gap: 32px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents {
    padding-right: 16px;
    row-gap: 32px;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents header .header-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents header .header-text span:first-child {
  position: relative;
  display: block;
  padding-bottom: 16px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(18px, var(--vw-based-24), 24px);
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
  white-space: nowrap;
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents header .header-text span:first-child::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(135deg, #e3c7ad, #b87333);
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents header .header-text span:nth-child(2) {
  display: block;
  margin-top: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(32px, var(--vw-based-40), 40px);
  font-weight: 700;
  line-height: 1.5;
  text-transform: none;
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents header .header-text span:first-child {
    font-size: 16px;
  }
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents header .header-text span:nth-child(2) {
    font-size: 24px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents header .header-text span:first-child {
    font-size: 16px;
  }
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents header .header-text span:nth-child(2) {
    font-size: 24px;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents .paragraph {
  display: flex;
  flex-direction: column;
  row-gap: 18px;
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents .paragraph {
    row-gap: 14px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents .paragraph {
    row-gap: 14px;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents .paragraph .header-text {
  font-size: clamp(18px, var(--vw-based-24), 24px);
  line-height: 1.5;
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents .paragraph .header-text {
    font-size: 16px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents .paragraph .header-text {
    font-size: 16px;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents .paragraph ul {
  list-style-type: disc;
  padding-left: 20px;
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents .paragraph ul .header-text {
  font-size: inherit;
  font-weight: 700;
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents::-webkit-scrollbar {
  width: 8px;
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents::-webkit-scrollbar-track {
  background: #335157;
  border-radius: 16px;
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 16px;
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents.en header .header-text span:nth-child(2) {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, var(--vw-based-40), 40px);
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents.en header .header-text span:first-child {
    font-size: 16px;
  }
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents.en header .header-text span:nth-child(2) {
    font-size: 24px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents.en header .header-text span:first-child {
    font-size: 16px;
  }
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents.en header .header-text span:nth-child(2) {
    font-size: 24px;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-contents.en .header-text {
  font-weight: 500 !important;
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-close-button {
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 2px;
  width: 24px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 1;
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-close-button {
    width: 16px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-close-button {
    width: 16px;
  }
}
@media (hover: hover) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-close-button:hover {
    opacity: 0.7;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper dialog.full-strategy .modal-contents-wrapper .modal-close-button::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1;
  background-image: url("../img/close.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents {
  width: 100%;
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights {
  position: relative;
  width: 100%;
  margin-top: clamp(128px, var(--vw-based-192), 192px);
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights {
    margin-top: 96px;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper {
  position: relative;
  padding-top: clamp(48px, var(--vw-based-72), 72px);
  padding-bottom: clamp(64px, var(--vw-based-96), 96px);
  padding-left: var(--toc-width);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 32px;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper {
    padding-left: calc(var(--side-padding) / 2);
  }
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper {
    row-gap: 24px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper {
    row-gap: 24px;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .header-block .header-text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, var(--vw-based-32), 32px);
  font-weight: 400;
  letter-spacing: clamp(6px, var(--vw-based-8), 8px);
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .header-block .header-text {
    font-size: 24px;
    letter-spacing: 6px;
  }
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .header-block .header-text {
    font-size: 20px;
    letter-spacing: 4px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .header-block .header-text {
    font-size: 20px;
    letter-spacing: 4px;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .header-block p {
  color: #ffffff;
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider {
  display: flex;
  -moz-column-gap: 48px;
       column-gap: 48px;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 1462px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider {
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
@media (max-width: 799px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider .slider-item {
  position: relative;
  width: 920px;
  min-height: 360px;
  background-color: #00262d;
  background-image: linear-gradient(135deg, #005e70, #00262d);
  border-radius: var(--common-radius-16);
  overflow: hidden;
  flex: 0 0 auto;
  transition: opacity 0.4s ease;
}
@media (max-width: 1600px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider .slider-item {
    width: 800px;
    min-height: 320px;
  }
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider .slider-item {
    width: 90vw;
    max-width: 800px;
  }
}
@media (max-width: 799px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider .slider-item {
    width: auto;
    max-width: 320px;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider .slider-item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  transition: opacity 1s ease, visibility 0s linear 1s;
  z-index: 1;
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider .slider-item.dim::after {
  visibility: visible;
  opacity: 1;
  transition: opacity 1s ease, visibility 0s linear 0s;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider .slider-item.dim {
    opacity: 0;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider .slider-item a {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
@media (max-width: 799px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider .slider-item a {
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media (hover: hover) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider .slider-item a:hover {
    opacity: 0.7;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider .slider-item a .post-thumbnail {
  position: relative;
  width: 50%;
  height: 100%;
}
@media (max-width: 799px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider .slider-item a .post-thumbnail {
    width: 100%;
    height: auto;
    min-height: 200px;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider .slider-item a .post-thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider .slider-item a .post-details {
  position: relative;
  width: 50%;
  height: 100%;
  padding: 24px 48px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider .slider-item a .post-details * {
  position: relative;
  z-index: 1;
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider .slider-item a .post-details::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 50%;
  background-image: url("../img/tile-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  opacity: 0.3;
}
@media (max-width: 799px) {
  main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider .slider-item a .post-details {
    width: 100%;
    padding: 24px;
  }
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider .slider-item a .post-details .post-date {
  font-size: clamp(12px, var(--vw-based-14), 14px);
  color: rgba(255, 255, 255, 0.8);
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider .slider-item a .post-details .post-title {
  margin-top: 16px;
  font-size: clamp(16px, var(--vw-based-18), 18px);
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider .slider-item a .post-details .post-summary {
  margin-top: 8px;
  font-size: clamp(14px, var(--vw-based-16), 16px);
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider .slider-item a .post-details .read-more {
  margin-top: 32px;
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider .slider-item a .post-details.en .post-title {
  font-weight: 500;
}
main .split-layout .contents .section-contents#strategies .page-contents .page-contents-wrapper .sub-contents.highlights .sub-contents-wrapper .article-block .slider .slider-item a .post-details.en .post-summary {
  font-size: clamp(14px, var(--vw-based-16), 16px);
}
main .split-layout .contents .section-contents#news-releases {
  position: relative;
  padding-top: min(12.5vw, 240px);
  z-index: 2;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#news-releases {
    padding-top: 96px;
  }
}
main .split-layout .contents .section-contents#news-releases::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  box-shadow: 0 0 10px 3px rgba(255, 255, 255, 0.8);
  background-color: white;
  z-index: 2;
}
main .split-layout .contents .section-contents#news-releases .page-contents {
  position: relative;
  width: 100%;
  padding: 48px 0;
}
main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper {
  padding-left: var(--toc-width);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: 24px;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper {
    padding-left: calc(var(--side-padding) / 2);
  }
}
main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper .news-list .slider {
  display: flex;
  justify-content: flex-start;
  -moz-column-gap: 48px;
       column-gap: 48px;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 1462px) {
  main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper .news-list .slider {
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
@media (max-width: 799px) {
  main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper .news-list .slider {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper .news-list .slider .slider-item {
  position: relative;
  width: 480px;
  background: linear-gradient(135deg, #005e70, #00262d);
  border-radius: var(--common-radius-16);
  overflow: hidden;
  flex: 0 0 auto;
  transition: opacity 0.4s ease;
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper .news-list .slider .slider-item {
    width: 80vw;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper .news-list .slider .slider-item {
    width: 80vw;
  }
}
@media (hover: hover) {
  main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper .news-list .slider .slider-item:hover {
    opacity: 0.7;
  }
}
main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper .news-list .slider .slider-item::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-height: 60%;
  background-image: url("../img/tile-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  opacity: 0.3;
}
main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper .news-list .slider .slider-item.dim a::after {
  visibility: visible;
  opacity: 1;
  transition: opacity 1s ease, visibility 0s linear 0s;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper .news-list .slider .slider-item.dim {
    opacity: 0;
  }
}
main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper .news-list .slider .slider-item a {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 48px 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper .news-list .slider .slider-item a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  transition: opacity 1s ease, visibility 0s linear 1s;
  z-index: 1;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper .news-list .slider .slider-item a::after {
    opacity: 0;
  }
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper .news-list .slider .slider-item a {
    padding: 32px;
  }
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper .news-list .slider .slider-item a {
    padding: 24px;
  }
}
main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper .news-list .slider .slider-item a .news-date,
main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper .news-list .slider .slider-item a .news-title {
  color: #ffffff;
}
main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper .news-list .slider .slider-item a .news-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}
main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper .news-list .slider .slider-item a .new {
  position: absolute;
  top: 16px;
  right: 24px;
  padding: 2px 16px;
  border-radius: var(--common-radius-16);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper .news-list .slider .slider-item a .new p {
  position: relative;
  font-size: 12px;
  line-height: 1;
  color: #ffffff;
}
main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper .news-list .slider .slider-item a .new::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #dc143c;
  opacity: 0.8;
}
main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper .news-list .slider.en .news-title {
  margin-top: 8px;
  font-weight: 500;
}
main .split-layout .contents .section-contents#news-releases .page-contents .page-contents-wrapper .read-more {
  margin-top: 24px;
}
main .split-layout .contents .section-contents#team {
  position: relative;
  padding-top: min(12.5vw, 240px);
  padding-bottom: min(12.5vw, 240px);
  z-index: 2;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#team {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper {
  padding-left: var(--toc-width);
  padding-right: calc(var(--side-padding) / 2);
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  -moz-column-gap: 72px;
       column-gap: 72px;
}
@media (max-width: 1600px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper {
    -moz-column-gap: 48px;
         column-gap: 48px;
  }
}
@media (max-width: 1462px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper {
    padding-left: calc(var(--side-padding) / 2);
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .text-block {
  position: relative;
  width: 35%;
}
@media (max-width: 1462px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .text-block {
    width: 100%;
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .text-block .section-contents-header .section-contents-header-wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding-left: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .text-block .section-contents-header .section-contents-header-wrapper .header-text.sub {
  position: relative;
  margin-top: clamp(32px, var(--vw-based-48), 48px);
  padding-top: clamp(32px, var(--vw-based-48), 48px);
  font-size: clamp(24px, var(--vw-based-32), 32px);
  letter-spacing: 1px;
  line-height: 1.5;
}
@media (max-width: 1462px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .text-block .section-contents-header .section-contents-header-wrapper .header-text.sub {
    padding-top: 0;
  }
  main .split-layout .contents .section-contents#team .section-contents-wrapper .text-block .section-contents-header .section-contents-header-wrapper .header-text.sub br {
    display: none;
  }
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .text-block .section-contents-header .section-contents-header-wrapper .header-text.sub {
    font-size: 24px;
  }
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .text-block .section-contents-header .section-contents-header-wrapper .header-text.sub {
    font-size: 20px;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .text-block .section-contents-header .section-contents-header-wrapper .header-text.sub {
    font-size: 20px;
    letter-spacing: 0.5px;
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .text-block .section-contents-header .section-contents-header-wrapper .header-text.sub::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1462px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .text-block .section-contents-header .section-contents-header-wrapper .header-text.sub::before {
    display: none;
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .text-block .section-contents-header .section-contents-header-wrapper .lead {
  margin-top: clamp(18px, var(--vw-based-24), 24px);
  font-size: 18px;
}
@media (max-width: 1462px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .text-block .section-contents-header .section-contents-header-wrapper .lead {
    margin-top: 4px;
    max-width: 720px;
  }
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .text-block .section-contents-header .section-contents-header-wrapper .lead {
    max-width: 100%;
    font-size: 16px;
  }
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .text-block .section-contents-header .section-contents-header-wrapper .lead {
    font-size: 14px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .text-block .section-contents-header .section-contents-header-wrapper .lead {
    font-size: 14px;
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .text-block.en .section-contents-header .section-contents-header-wrapper .header-text.sub {
  font-weight: 500;
  line-height: 1.7;
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block {
  width: 65%;
}
@media (max-width: 1462px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block {
    width: 100%;
    max-width: 800px;
    margin-top: clamp(32px, var(--vw-based-48), 48px);
  }
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block {
    max-width: 100%;
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 32px;
}
@media (max-width: 799px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members {
    -moz-column-gap: 8px;
         column-gap: 8px;
    row-gap: 16px;
  }
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 420px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members {
    grid-template-columns: repeat(2, 1fr);
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member {
  cursor: pointer;
  position: relative;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: var(--common-radius-16);
  overflow: visible;
}
@media (max-width: 799px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member {
    overflow: hidden;
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member .member-overview {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 4px 0px;
  box-sizing: border-box;
  background-color: rgba(0, 38, 45, 0.7);
  transform: translateZ(0);
  opacity: 0;
  z-index: 2;
}
@media (max-width: 799px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member .member-overview {
    padding: 4px;
    border-radius: 0;
    opacity: 1;
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member .member-overview.flip {
  left: -20%;
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member .member-overview.flip::after {
  left: 70%;
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member .member-overview p {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  line-height: 1.5;
  text-align: center;
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member .member-overview .member-position {
  margin-top: 1px;
  font-size: 11px;
}
@media (max-width: 799px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member .member-overview .member-position {
    font-size: 10px;
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member .member-overview .member-name {
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 799px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member .member-overview .member-name {
    font-size: 14px;
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member .member-overview.en .member-name {
  font-size: 12px;
  font-weight: 300;
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member .member-overview.en .member-name span {
  font-weight: 500;
}
@media (max-width: 799px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member .member-overview.en .member-name {
    font-size: 10px;
  }
}
@media (hover: hover) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member:hover .member-overview {
    opacity: 1;
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog {
  cursor: default;
  height: 80dvh;
  max-height: 800px;
  padding: 0;
  padding-top: 32px;
  border: 0;
  outline: 0;
  background-color: transparent;
  overflow: hidden;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog {
    height: 60dvh;
  }
}
@media (max-width: 799px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog {
    height: 80dvh;
  }
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog {
    height: 90dvh;
    padding-top: 24px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog {
    height: 80dvh;
    padding-top: 24px;
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog p {
  cursor: text;
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  outline: 0;
  display: flex;
  align-items: stretch;
  background-color: rgba(0, 38, 45, 0.8);
  border-radius: var(--common-radius-16);
  overflow: hidden;
}
@media (max-width: 799px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents {
    display: block;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents {
    display: flex;
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-image {
  position: relative;
  width: 50%;
  height: 100%;
}
@media (max-width: 799px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-image {
    width: 100%;
    height: 50%;
  }
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-image {
    height: 40%;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-image {
    width: 50%;
    height: 100%;
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-image img.left {
    -o-object-position: top left !important;
       object-position: top left !important;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-image img.right {
    -o-object-position: top right !important;
       object-position: top right !important;
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details {
  width: 50%;
  height: 100%;
  min-height: 0px;
  padding: 48px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 799px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details {
    width: 100%;
    height: 50%;
  }
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details {
    height: 60%;
    padding: 32px 24px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details {
    width: 50%;
    height: 100%;
    padding: 24px;
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details .wrapper {
  height: auto;
  padding-right: 48px;
  box-sizing: border-box;
  border: 0;
  outline: 0;
  overscroll-behavior: contain;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ffffff #335157;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details .wrapper {
    padding-right: 24px;
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details .wrapper::-webkit-scrollbar {
  width: 8px;
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details .wrapper::-webkit-scrollbar-track {
  background: #335157;
  border-radius: 16px;
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details .wrapper::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 16px;
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details .wrapper .member-name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details .wrapper .member-name {
    font-size: 18px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details .wrapper .member-name {
    font-size: 18px;
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details .wrapper .member-position {
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details .wrapper .member-position {
    font-size: 12px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details .wrapper .member-position {
    font-size: 12px;
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details .wrapper .member-bio {
  position: relative;
  margin-top: 32px;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  row-gap: 14px;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details .wrapper .member-bio {
    margin-top: 32px;
    padding-top: 24px;
  }
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details .wrapper .member-bio {
    margin-top: 24px;
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details .wrapper .member-bio::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 2px;
  background: linear-gradient(135deg, #e3c7ad, #b87333);
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details .wrapper .member-bio p {
  font-size: 14px;
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details.en .member-name {
  font-weight: 300;
  line-height: 1.2;
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details.en .member-name span {
  font-weight: 500;
}
@media (max-width: 960px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details.en .member-name span {
    display: block;
  }
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details.en .member-name span {
    display: inline;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details.en .member-name span {
    display: inline;
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details.en .member-position {
  margin-top: 4px;
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-contents .member-details.en .member-bio {
    margin-top: 32px;
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-close-button {
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 2px;
  width: 24px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 1;
}
@media (max-width: 599px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-close-button {
    width: 16px;
  }
}
@media (max-width: 960px) and (max-height: 450px) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-close-button {
    width: 16px;
  }
}
@media (hover: hover) {
  main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-close-button:hover {
    opacity: 0.7;
  }
}
main .split-layout .contents .section-contents#team .section-contents-wrapper .member-block .page-contents .page-contents-wrapper .members .member dialog .modal-close-button::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1;
  background-image: url("../img/close.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
main .split-layout #triangles {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=home.css.map */