:root {
  --global-map-height: 67vw;
  --japan-map-height: 75vw;
  --europe-map-height: 67vw;
  --north-america-map-height: 67vw;
  --australia-map-height: 75vw;
  --metrics-height: 100px;
  --scroll-arrow-width: 24px;
  --regional-data-zone-width: 40%;
  --region-links-height: 72px;
  --project-card-offset: 48px;
  --project-card-padding: 64px var(--project-card-offset) 120px var(--project-card-offset);
  --project-card-padding-no-link: 64px var(--project-card-offset) var(--project-card-offset) var(--project-card-offset);
}
@media (max-width: 1600px) {
  :root {
    --project-card-offset: 32px;
    --project-card-padding: 56px var(--project-card-offset) 104px var(--project-card-offset);
    --project-card-padding-no-link: 56px var(--project-card-offset) var(--project-card-offset) var(--project-card-offset);
  }
}
@media (max-width: 960px) {
  :root {
    --regional-data-zone-width: 100%;
  }
}
@media (max-width: 599px) {
  :root {
    --metrics-height: 82px;
  }
}

.outer {
  position: relative;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.outer::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;
}
.outer .inner {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  pointer-events: none;
}
.outer .inner.global {
  width: 100%;
  height: var(--global-map-height);
  max-height: 100dvh;
  min-height: 800px;
}
@media (min-width: 1921px) {
  .outer .inner.global {
    max-height: 1080px;
  }
}
@media (max-width: 1176px) {
  .outer .inner.global {
    height: calc(var(--global-map-height) + var(--global-header-height-with-selector) + 48px);
  }
}
@media (max-width: 960px) {
  .outer .inner.global {
    height: auto;
    max-height: 100%;
    min-height: 0;
  }
}
.outer .inner.regional {
  margin-top: calc(var(--global-header-height-with-selector));
  padding: 0 calc(var(--side-padding) / 2);
  box-sizing: border-box;
  display: flex;
}
@media (min-width: 1921px) {
  .outer .inner.regional {
    min-height: 0;
  }
}
@media (max-width: 960px) {
  .outer .inner.regional {
    padding: 0;
  }
  .outer .inner.regional.japan {
    min-height: var(--japan-map-height);
  }
  .outer .inner.regional.europe {
    min-height: var(--europe-map-height);
  }
  .outer .inner.regional.north-america {
    min-height: var(--north-america-map-height);
  }
  .outer .inner.regional.australia {
    min-height: var(--australia-map-height);
  }
}
.outer .inner main {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.outer .inner main .region-links.regional {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 48px;
  padding: 0 calc(var(--side-padding) / 2);
  box-sizing: border-box;
  z-index: 1;
}
@media (max-width: 960px) {
  .outer .inner main .region-links.regional {
    padding: 0;
  }
}
.outer .inner main .region-links.regional .scroll-container {
  width: 100%;
  height: 48px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.outer .inner main .region-links.regional nav {
  position: relative;
  pointer-events: all;
}
.outer .inner main .region-links.regional nav ul {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 24px;
       column-gap: 24px;
  pointer-events: all;
}
.outer .inner main .region-links.regional nav ul li.current {
  position: relative;
}
.outer .inner main .region-links.regional nav ul li.current a p {
  padding-left: 12px;
  text-shadow: 0px 0px 4px #ffffff;
}
.outer .inner main .region-links.regional nav ul li.current a p::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 6px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #f1e3d6, #b87333);
}
@media (hover: hover) {
  .outer .inner main .region-links.regional nav ul li a[href]:hover {
    opacity: 0.7;
  }
}
.outer .inner main .region-links.regional nav ul li p {
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .outer .inner main .scroll-wrapper {
    position: relative;
  }
  .outer .inner main .scroll-wrapper .scroll-container {
    width: 100%;
    height: auto;
    min-height: 48px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .outer .inner main .scroll-wrapper .scroll-container.padded {
    padding: 0 calc(var(--side-padding) / 2);
  }
}
@media (max-width: 960px) and (hover: hover) {
  .outer .inner main .scroll-wrapper .scroll-container {
    scrollbar-height: 0px;
  }
  .outer .inner main .scroll-wrapper .scroll-container::-webkit-scrollbar {
    height: 0px;
  }
  .outer .inner main .scroll-wrapper .scroll-container.scroll-on {
    width: calc(100% - var(--scroll-arrow-width) * 2);
    padding: 0;
  }
}
@media (max-width: 960px) and (hover: hover) {
  .outer .inner main .scroll-wrapper .scroll-arrow {
    cursor: pointer;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    width: 24px;
    height: 100%;
    display: none;
  }
  .outer .inner main .scroll-wrapper .scroll-arrow::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 30%;
    aspect-ratio: 1/1;
    -webkit-clip-path: polygon(0 50%, 100% 0%, 100% 100%);
            clip-path: polygon(0 50%, 100% 0%, 100% 100%);
    background-color: #ccd4d5;
  }
  .outer .inner main .scroll-wrapper .scroll-arrow:hover {
    opacity: 0.7;
  }
  .outer .inner main .scroll-wrapper .scroll-arrow.left {
    left: 0;
  }
  .outer .inner main .scroll-wrapper .scroll-arrow.right {
    right: 0;
  }
  .outer .inner main .scroll-wrapper .scroll-arrow.right::after {
    transform: scale(-1);
  }
}
.outer .inner main .map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease;
}
.outer .inner main .map-wrapper.show {
  opacity: 1;
}
.outer .inner main .map-wrapper .legends {
  pointer-events: all;
}
.outer .inner main .map-wrapper .legends ul {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.outer .inner main .map-wrapper .legends ul li {
  position: relative;
  padding-left: 16px;
}
.outer .inner main .map-wrapper .legends ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 8px;
  aspect-ratio: 1/1;
  border-radius: 100%;
}
.outer .inner main .map-wrapper .legends ul li p {
  font-size: 10px;
  color: #ccd4d5;
}
.outer .inner main .map-wrapper .legends ul li.greenfield::before {
  background-color: #7fb685;
}
.outer .inner main .map-wrapper .legends ul li.brownfield::before {
  background-color: #a8763e;
}
.outer .inner main .map-wrapper .legends ul li.exit::before {
  background-color: #809396;
}
.outer .inner main .map-wrapper .legends ul li.other::before {
  background-color: #d6b3ff;
}
@media (max-width: 599px) {
  .outer .inner main .map-wrapper .legends {
    transform: scale(0.8);
    transform-origin: bottom left;
  }
}
.outer .inner main .map-wrapper .data-zone .metrics {
  display: flex;
  flex-direction: column;
  pointer-events: all;
}
.outer .inner main .map-wrapper .data-zone .metrics .metrics-list {
  display: flex;
  justify-content: flex-start;
  -moz-column-gap: 48px;
       column-gap: 48px;
}
@media (max-width: 1462px) {
  .outer .inner main .map-wrapper .data-zone .metrics .metrics-list {
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
}
@media (max-width: 960px) {
  .outer .inner main .map-wrapper .data-zone .metrics .metrics-list {
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
.outer .inner main .map-wrapper .data-zone .metrics .metrics-list .metric {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.outer .inner main .map-wrapper .data-zone .metrics .metrics-list .metric.hide {
  display: none;
}
.outer .inner main .map-wrapper .data-zone .metrics .metrics-list .metric::before {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  margin-bottom: 8px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.5;
}
@media (max-width: 599px) {
  .outer .inner main .map-wrapper .data-zone .metrics .metrics-list .metric::before {
    width: 16px;
  }
}
.outer .inner main .map-wrapper .data-zone .metrics .metrics-list .metric.countries::before {
  background-image: url("../img/countries.svg");
}
.outer .inner main .map-wrapper .data-zone .metrics .metrics-list .metric.projects::before {
  background-image: url("../img/projects.svg");
}
.outer .inner main .map-wrapper .data-zone .metrics .metrics-list .metric.generation::before {
  background-image: url("../img/generation.svg");
}
.outer .inner main .map-wrapper .data-zone .metrics .metrics-list .metric.battery-storage::before {
  background-image: url("../img/battery-storage.svg");
}
.outer .inner main .map-wrapper .data-zone .metrics .metrics-list .metric .figure {
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  text-shadow: 0 0 10px #ffffff;
  white-space: nowrap;
  word-spacing: -4px;
}
.outer .inner main .map-wrapper .data-zone .metrics .metrics-list .metric .figure .unit {
  display: inline-block;
  font-size: 50%;
}
@media (max-width: 1462px) {
  .outer .inner main .map-wrapper .data-zone .metrics .metrics-list .metric .figure {
    font-size: 48px;
  }
}
@media (max-width: 599px) {
  .outer .inner main .map-wrapper .data-zone .metrics .metrics-list .metric .figure {
    font-size: 40px;
  }
}
.outer .inner main .map-wrapper .data-zone .metrics .metrics-list .metric .label {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1;
  color: #ccd4d5;
}
@media (max-width: 599px) {
  .outer .inner main .map-wrapper .data-zone .metrics .metrics-list .metric .label {
    font-size: 10px;
  }
}
.outer .inner main .map-wrapper .data-zone .filter {
  flex: 0 0 auto;
  pointer-events: all;
}
@media (max-width: 960px) {
  .outer .inner main .map-wrapper .data-zone .filter {
    width: 100%;
  }
}
.outer .inner main .map-wrapper .data-zone .filter .type-filter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 799px) {
  .outer .inner main .map-wrapper .data-zone .filter .type-filter {
    gap: 4px;
  }
}
.outer .inner main .map-wrapper .data-zone .filter .type-filter li {
  position: relative;
  cursor: pointer;
  padding: 8px 16px;
  background-color: #004b5a;
  border: solid 1px #337e8d;
  border-radius: var(--common-radius-8);
}
@media (max-width: 799px) {
  .outer .inner main .map-wrapper .data-zone .filter .type-filter li {
    padding: 8px;
  }
}
.outer .inner main .map-wrapper .data-zone .filter .type-filter li.selected {
  background-color: #337e8d;
  border: solid 1px #80afb8;
}
.outer .inner main .map-wrapper .data-zone .filter .type-filter li.selected p {
  color: #ffffff;
  text-shadow: 0 0 10px #ffffff;
}
@media (hover: hover) {
  .outer .inner main .map-wrapper .data-zone .filter .type-filter li:not(.selected):hover {
    background-color: #005e70;
  }
  .outer .inner main .map-wrapper .data-zone .filter .type-filter li:not(.selected):hover p {
    color: #ccdfe2;
  }
}
.outer .inner main .map-wrapper .data-zone .filter .type-filter li p {
  font-size: 14px;
  color: #b3cfd4;
  line-height: 1;
  text-align: center;
  transition: text-shadow 1s ease;
}
@media (max-width: 1462px) {
  .outer .inner main .map-wrapper .data-zone .filter .type-filter li p {
    font-size: 12px;
  }
}
.outer .inner main .map-wrapper .data-zone .tiles .tile-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  pointer-events: all;
}
.outer .inner main .map-wrapper .data-zone .tiles .tile-list .tile {
  cursor: pointer;
}
@media (hover: hover) {
  .outer .inner main .map-wrapper .data-zone .tiles .tile-list .tile:hover {
    opacity: 0.7;
  }
}
.outer .inner main .map-wrapper .data-zone .tiles .tile-list .tile .tile-wrapper {
  position: relative;
  min-width: 128px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding-bottom: 8px;
  box-sizing: border-box;
  border-bottom: solid 1px #005e70;
}
@media (max-width: 799px) {
  .outer .inner main .map-wrapper .data-zone .tiles .tile-list .tile .tile-wrapper {
    padding-bottom: 4px;
  }
}
.outer .inner main .map-wrapper .data-zone .tiles .tile-list .tile .tile-wrapper .project-label {
  font-size: 12px;
  line-height: 1;
  color: #b3bec0;
  white-space: nowrap;
}
@media (max-width: 799px) {
  .outer .inner main .map-wrapper .data-zone .tiles .tile-list .tile .tile-wrapper .project-label {
    font-size: 10px;
  }
}
.outer .inner main .map-wrapper .data-zone .tiles .tile-list .tile .tile-wrapper .project-label.en {
  color: #ccd4d5;
  font-weight: 500;
}
.outer .inner main .map-wrapper .data-zone .tiles .tile-list .tile .tile-wrapper .project-data {
  position: relative;
  padding-right: 24px;
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media (max-width: 799px) {
  .outer .inner main .map-wrapper .data-zone .tiles .tile-list .tile .tile-wrapper .project-data {
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
.outer .inner main .map-wrapper .data-zone .tiles .tile-list .tile .tile-wrapper .project-data .project-capacity {
  margin-top: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 0 10px #ffffff;
  white-space: nowrap;
}
@media (max-width: 799px) {
  .outer .inner main .map-wrapper .data-zone .tiles .tile-list .tile .tile-wrapper .project-data .project-capacity {
    font-size: 18px;
  }
}
.outer .inner main .map-wrapper .data-zone .tiles .tile-list .tile .tile-wrapper .project-data .project-capacity .unit {
  font-size: 50%;
}
.outer .inner main .map-wrapper .data-zone .tiles .tile-list .tile .tile-wrapper .project-data .description {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.5;
  color: #4d8e9b;
}
@media (max-width: 799px) {
  .outer .inner main .map-wrapper .data-zone .tiles .tile-list .tile .tile-wrapper .project-data .description {
    font-size: 10px;
  }
}
.outer .inner main .map-wrapper .data-zone .tiles .tile-list .tile .tile-wrapper .project-data .project-status {
  position: absolute;
  bottom: 3px;
  right: 0;
  width: 10px;
  aspect-ratio: 1/1;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background-color: #d6b3ff;
}
@media (max-width: 799px) {
  .outer .inner main .map-wrapper .data-zone .tiles .tile-list .tile .tile-wrapper .project-data .project-status {
    width: 8px;
  }
}
.outer .inner main .map-wrapper .data-zone .tiles .tile-list .tile .tile-wrapper .project-data .project-status.exit {
  background-color: #809396;
}
.outer .inner main .map-wrapper .data-zone .tiles .tile-list .tile .tile-wrapper .project-data .project-status.brownfield {
  background-color: #a8763e;
}
.outer .inner main .map-wrapper .data-zone .tiles .tile-list .tile .tile-wrapper .project-data .project-status.greenfield {
  background-color: #7fb685;
}
.outer .inner main .map-wrapper .data-zone .tiles .tile-list .tile .tile-wrapper .project-data .project-status.other {
  background-color: #d6b3ff;
}
.outer .inner main .map-wrapper .map-zone .map-graphics {
  pointer-events: all;
  background-repeat: no-repeat;
  background-size: contain;
}
.outer .inner main .map-wrapper .map-zone .map-graphics .location-markers {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: auto;
  height: 100%;
  opacity: 0.8;
}
.outer .inner main .map-wrapper .map-zone .map-graphics .location-markers .marker {
  position: absolute;
  translate: -50% -50%;
  width: clamp(48px, 3.3vw, 64px);
  aspect-ratio: 1/1;
}
@media (max-width: 599px) {
  .outer .inner main .map-wrapper .map-zone .map-graphics .location-markers .marker {
    width: 24px;
  }
}
.outer .inner main .map-wrapper .map-zone .map-graphics .location-markers .marker.animate::before {
  animation: small-pulse 3s ease 0s infinite normal none;
}
.outer .inner main .map-wrapper .map-zone .map-graphics .location-markers .marker.animate::after {
  animation: small-pulse 3s ease 0.1s infinite normal none;
}
.outer .inner main .map-wrapper .map-zone .map-graphics .location-markers .marker.hidden {
  opacity: 0;
  pointer-events: none;
}
.outer .inner main .map-wrapper .map-zone .map-graphics .location-markers .marker .dot {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 12%;
  height: 12%;
  background-color: #d6b3ff;
  border-radius: 100%;
}
.outer .inner main .map-wrapper .map-zone .map-graphics .location-markers .marker::before, .outer .inner main .map-wrapper .map-zone .map-graphics .location-markers .marker::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 100%;
}
.outer .inner main .map-wrapper .map-zone .map-graphics .location-markers .marker::before {
  width: 50%;
  height: 50%;
  background-color: rgba(214, 179, 255, 0.2);
  opacity: 0;
}
.outer .inner main .map-wrapper .map-zone .map-graphics .location-markers .marker::after {
  width: 100%;
  height: 100%;
  background-color: rgba(214, 179, 255, 0.1);
  opacity: 0;
}
.outer .inner main .map-wrapper .map-zone .map-graphics .location-markers .marker.greenfield .dot {
  background-color: #7fb685;
}
.outer .inner main .map-wrapper .map-zone .map-graphics .location-markers .marker.greenfield::before {
  background-color: rgba(127, 182, 133, 0.2);
}
.outer .inner main .map-wrapper .map-zone .map-graphics .location-markers .marker.greenfield::after {
  background-color: rgba(127, 182, 133, 0.1);
}
.outer .inner main .map-wrapper .map-zone .map-graphics .location-markers .marker.brownfield .dot {
  background-color: #a8763e;
}
.outer .inner main .map-wrapper .map-zone .map-graphics .location-markers .marker.brownfield::before {
  background-color: rgba(168, 118, 62, 0.2);
}
.outer .inner main .map-wrapper .map-zone .map-graphics .location-markers .marker.brownfield::after {
  background-color: rgba(168, 118, 62, 0.1);
}
.outer .inner main .map-wrapper .map-zone .map-graphics .location-markers .marker.exit .dot {
  background-color: #809396;
}
.outer .inner main .map-wrapper .map-zone .map-graphics .location-markers .marker.exit::before {
  background-color: rgba(128, 147, 150, 0.2);
}
.outer .inner main .map-wrapper .map-zone .map-graphics .location-markers .marker.exit::after {
  background-color: rgba(128, 147, 150, 0.1);
}
@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;
  }
}
.outer .inner main .map-wrapper .map-zone .map-graphics .location-markers .location-icon {
  position: absolute;
  width: 32px;
  aspect-ratio: 1/1;
  pointer-events: none;
  background-image: url("../img/location-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  z-index: 1;
}
@media (max-width: 799px) {
  .outer .inner main .map-wrapper .map-zone .map-graphics .location-markers .location-icon {
    width: 24px;
  }
}
.outer .inner main .map-wrapper .map-zone .map-graphics .location-markers .location-icon.show {
  animation: dropFadeIn 0.3s ease forwards;
}
@keyframes dropFadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -150%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -120%);
  }
}
.outer .inner main .map-wrapper.global .map-zone {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 1176px) {
  .outer .inner main .map-wrapper.global .map-zone {
    margin-top: calc(var(--global-header-height-with-selector));
  }
}
.outer .inner main .map-wrapper.global .map-zone .region-links {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 89/50;
  max-height: 100%;
  pointer-events: none;
  z-index: 1;
}
.outer .inner main .map-wrapper.global .map-zone .region-links nav {
  width: 100%;
  height: 100%;
}
.outer .inner main .map-wrapper.global .map-zone .region-links nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.outer .inner main .map-wrapper.global .map-zone .region-links nav ul li {
  position: absolute;
  pointer-events: all;
}
.outer .inner main .map-wrapper.global .map-zone .region-links nav ul li[data-region=japan] {
  top: 45%;
  left: 45%;
}
.outer .inner main .map-wrapper.global .map-zone .region-links nav ul li[data-region=europe] {
  top: 40%;
  left: 15%;
}
.outer .inner main .map-wrapper.global .map-zone .region-links nav ul li[data-region=north-america] {
  top: 55%;
  left: 70%;
}
.outer .inner main .map-wrapper.global .map-zone .region-links nav ul li[data-region=australia] {
  top: 70%;
  left: 53%;
}
.outer .inner main .map-wrapper.global .map-zone .region-links nav ul li[data-region=other] {
  cursor: pointer;
  bottom: calc(var(--side-padding) / 2);
  right: calc(var(--side-padding) / 2);
  transition: all 0.2s ease;
}
.outer .inner main .map-wrapper.global .map-zone .region-links nav ul li[data-region=other].tiles-off {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.outer .inner main .map-wrapper.global .map-zone .region-links nav ul li[data-region=other].tiles-on {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.outer .inner main .map-wrapper.global .map-zone .region-links nav ul li[data-region=other].tiles-on .plus-minus::after {
  background-position: bottom;
}
@media (max-width: 960px) {
  .outer .inner main .map-wrapper.global .map-zone .region-links nav ul li[data-region=other].tiles-off {
    transform: none;
    opacity: 1;
    pointer-events: all;
  }
  .outer .inner main .map-wrapper.global .map-zone .region-links nav ul li[data-region=other].tiles-on {
    transform: none;
    opacity: 1;
    pointer-events: all;
  }
}
@media (max-width: 960px) {
  .outer .inner main .map-wrapper.global .map-zone .region-links {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    pointer-events: all;
  }
  .outer .inner main .map-wrapper.global .map-zone .region-links nav {
    position: static;
    width: auto;
    height: auto;
  }
  .outer .inner main .map-wrapper.global .map-zone .region-links nav ul {
    position: static;
    width: auto;
    height: auto;
    display: flex;
    gap: 8px;
  }
  .outer .inner main .map-wrapper.global .map-zone .region-links nav ul li {
    position: static;
  }
}
@media (max-width: 799px) {
  .outer .inner main .map-wrapper.global .map-zone .region-links ul {
    gap: 4px;
  }
}
.outer .inner main .map-wrapper.global .map-zone .map-graphics {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100%;
  aspect-ratio: 89/50;
  background-image: url("../img/global-map.svg");
  background-position: center;
}
@media (max-width: 960px) {
  .outer .inner main .map-wrapper.global .map-zone .map-graphics {
    position: relative;
  }
}
.outer .inner main .map-wrapper.global .map-zone .map-graphics .location-markers {
  aspect-ratio: 89/50;
}
.outer .inner main .map-wrapper.global .data-zone {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: calc(var(--side-padding) / 2);
  box-sizing: border-box;
  display: flex;
  -moz-column-gap: 48px;
       column-gap: 48px;
  pointer-events: none;
}
@media (min-width: 1921px) {
  .outer .inner main .map-wrapper.global .data-zone {
    padding: calc(var(--side-padding) / 2) 0;
  }
}
@media (max-width: 960px) {
  .outer .inner main .map-wrapper.global .data-zone {
    position: relative;
    padding-top: calc(var(--global-map-height));
    flex-direction: column;
    justify-content: flex-end;
    row-gap: 24px;
  }
}
@media (max-width: 799px) {
  .outer .inner main .map-wrapper.global .data-zone {
    padding-bottom: 32px;
  }
}
.outer .inner main .map-wrapper.global .data-zone .data {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  row-gap: 24px;
}
@media (max-width: 960px) {
  .outer .inner main .map-wrapper.global .data-zone .data {
    width: 100%;
  }
}
.outer .inner main .map-wrapper.global .data-zone .data .filter {
  position: relative;
}
.outer .inner main .map-wrapper.global .data-zone .data .filter .type-filter {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 960px) {
  .outer .inner main .map-wrapper.global .data-zone .data .filter .type-filter {
    flex-wrap: nowrap;
    pointer-events: all;
  }
}
.outer .inner main .map-wrapper.global .data-zone .data .filter .type-filter li {
  flex: 0 0 auto;
  padding: 8px;
}
.outer .inner main .map-wrapper.global .data-zone .data .filter .type-filter li p {
  font-size: 12px;
}
@media (max-width: 799px) {
  .outer .inner main .map-wrapper.global .data-zone .data .filter .type-filter li p {
    font-size: 10px;
  }
}
.outer .inner main .map-wrapper.global .data-zone .tile-zone {
  width: 50%;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}
@media (max-width: 960px) {
  .outer .inner main .map-wrapper.global .data-zone .tile-zone {
    width: auto;
    align-items: flex-start;
  }
}
.outer .inner main .map-wrapper.global .data-zone .tile-zone .tiles {
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.2s ease;
}
.outer .inner main .map-wrapper.global .data-zone .tile-zone .tiles > * {
  pointer-events: none;
}
.outer .inner main .map-wrapper.global .data-zone .tile-zone .tiles.show {
  transform: translateY(0);
  opacity: 1;
}
.outer .inner main .map-wrapper.global .data-zone .tile-zone .tiles.show > * {
  pointer-events: all;
}
.outer .inner main .map-wrapper.global .data-zone .tile-zone .tiles .tile-list {
  justify-content: flex-end;
}
@media (max-width: 960px) {
  .outer .inner main .map-wrapper.global .data-zone .tile-zone .tiles .tile-list {
    justify-content: flex-start;
  }
}
.outer .inner main .map-wrapper.regional {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 96px;
}
@media (max-width: 960px) {
  .outer .inner main .map-wrapper.regional {
    flex-direction: column;
  }
}
.outer .inner main .map-wrapper.regional .map-zone {
  position: relative;
  width: 60%;
  height: auto;
  flex: 0 0 auto;
  align-self: stretch;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
@media (max-width: 960px) {
  .outer .inner main .map-wrapper.regional .map-zone {
    width: 100%;
  }
  .outer .inner main .map-wrapper.regional .map-zone.japan {
    padding-top: var(--japan-map-height);
  }
  .outer .inner main .map-wrapper.regional .map-zone.europe {
    padding-top: var(--europe-map-height);
  }
  .outer .inner main .map-wrapper.regional .map-zone.north-america {
    padding-top: var(--north-america-map-height);
  }
  .outer .inner main .map-wrapper.regional .map-zone.australia {
    padding-top: var(--australia-map-height);
  }
}
@media (max-width: 599px) {
  .outer .inner main .map-wrapper.regional .map-zone {
    margin-top: 48px;
  }
}
.outer .inner main .map-wrapper.regional .map-zone .map-graphics {
  position: sticky;
  top: var(--global-header-height-with-selector);
  width: 100%;
  background-position: right;
}
.outer .inner main .map-wrapper.regional .map-zone .map-graphics.europe {
  aspect-ratio: 7/6;
  background-image: url("../img/europe-map.svg");
}
.outer .inner main .map-wrapper.regional .map-zone .map-graphics.japan {
  aspect-ratio: 115/108;
  background-image: url("../img/japan-map.svg");
}
.outer .inner main .map-wrapper.regional .map-zone .map-graphics.north-america {
  aspect-ratio: 4/3;
  background-image: url("../img/north-america-map.svg");
}
.outer .inner main .map-wrapper.regional .map-zone .map-graphics.australia {
  aspect-ratio: 31/25;
  background-image: url("../img/australia-map.svg");
}
@media (max-width: 960px) {
  .outer .inner main .map-wrapper.regional .map-zone .map-graphics {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
    max-height: 100%;
  }
}
.outer .inner main .map-wrapper.regional .map-zone .map-graphics .location-markers.europe {
  aspect-ratio: 7/6;
}
.outer .inner main .map-wrapper.regional .map-zone .map-graphics .location-markers.japan {
  aspect-ratio: 115/108;
}
.outer .inner main .map-wrapper.regional .map-zone .map-graphics .location-markers.north-america {
  aspect-ratio: 4/3;
}
.outer .inner main .map-wrapper.regional .map-zone .map-graphics .location-markers.australia {
  aspect-ratio: 31/25;
}
.outer .inner main .map-wrapper.regional .data-zone {
  position: relative;
  width: var(--regional-data-zone-width);
  margin-top: var(--region-links-height);
  flex: 0 0 auto;
  z-index: 1;
}
@media (max-width: 960px) {
  .outer .inner main .map-wrapper.regional .data-zone {
    position: relative;
    width: 100%;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
  }
  .outer .inner main .map-wrapper.regional .data-zone.australia {
    top: -96px;
  }
}
.outer .inner main .map-wrapper.regional .data-zone .metrics {
  padding-left: 16px;
}
@media (max-width: 960px) {
  .outer .inner main .map-wrapper.regional .data-zone .metrics {
    margin-top: 0;
    padding: 0 calc(var(--side-padding) / 2);
  }
}
.outer .inner main .map-wrapper.regional .data-zone .tile-zone {
  width: 100%;
  margin-top: 48px;
  margin-bottom: 48px;
  display: flex;
  -moz-column-gap: 48px;
       column-gap: 48px;
}
@media (max-width: 960px) {
  .outer .inner main .map-wrapper.regional .data-zone .tile-zone {
    margin-top: 0;
    margin-bottom: 0;
    flex-direction: column;
    row-gap: 24px;
  }
  .outer .inner main .map-wrapper.regional .data-zone .tile-zone .tiles {
    padding: 0 calc(var(--side-padding) / 2);
  }
}
@media (max-width: 960px) {
  .outer .inner main .map-wrapper.regional .data-zone .tile-zone .filter {
    width: 100%;
    overflow-x: auto;
    pointer-events: all;
  }
}
@media (max-width: 960px) {
  .outer .inner main .map-wrapper.regional .data-zone .tile-zone .filter .type-filter {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    pointer-events: all;
  }
}
@media (max-width: 799px) {
  .outer .inner main .map-wrapper.regional .data-zone .tile-zone .filter .type-filter {
    gap: 4px;
  }
}
.outer .inner main .map-wrapper.regional .data-zone .tile-zone .filter .type-filter li {
  flex: 0 0 auto;
  padding: 8px 16px;
}
.outer .inner main .map-wrapper.regional .data-zone .tile-zone .filter .type-filter li p {
  font-size: 12px;
}
@media (max-width: 799px) {
  .outer .inner main .map-wrapper.regional .data-zone .tile-zone .filter .type-filter li {
    padding: 8px;
  }
  .outer .inner main .map-wrapper.regional .data-zone .tile-zone .filter .type-filter li p {
    font-size: 10px;
  }
}
.outer .inner main .map-wrapper.regional .data-zone .tile-zone .legends {
  margin-top: 48px;
}
@media (max-width: 960px) {
  .outer .inner main .map-wrapper.regional .data-zone .tile-zone .legends {
    position: absolute;
    top: -120px;
    left: calc(var(--side-padding) / 2);
    margin-top: 0;
  }
}
@media (max-width: 599px) {
  .outer .inner main .map-wrapper.regional .data-zone .tile-zone .legends {
    top: -104px;
  }
}

.project-card {
  position: fixed;
  top: calc(var(--global-header-height-with-selector) + var(--metrics-height) + 72px);
  left: calc(var(--regional-data-zone-width) + 48px);
  width: 50%;
  max-width: 800px;
  min-width: 640px;
  height: 25vw;
  min-height: 320px;
  max-height: 400px;
  border: solid 1px #005e70;
  border-radius: var(--common-radius-16);
  background-color: #00262d;
  overflow: hidden;
  pointer-events: all;
  will-change: transform;
  z-index: 9999;
}
.project-card .project-card-wrapper {
  width: 100%;
  height: 100%;
}
.project-card .project-card-wrapper .project-card-content {
  width: 100%;
  height: 100%;
  display: flex;
}
.project-card .project-card-wrapper .project-card-content .details {
  position: relative;
  width: 40%;
  height: 100%;
  padding: var(--project-card-padding);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.project-card .project-card-wrapper .project-card-content .details::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-height: 40%;
  background-image: url("../img/tile-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  opacity: 0.3;
  z-index: 0;
}
.project-card .project-card-wrapper .project-card-content .details > * {
  position: relative;
  z-index: 1;
}
.project-card .project-card-wrapper .project-card-content .details .drag-handle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background-image: url("../img/drag-handle.svg");
  background-repeat: no-repeat;
  background-size: 32px;
  background-position: 16px 50%;
  opacity: 0.2;
  z-index: 2;
}
@media (max-width: 1462px) {
  .project-card .project-card-wrapper .project-card-content .details .drag-handle {
    height: 40px;
    background-size: 24px;
  }
}
.project-card .project-card-wrapper .project-card-content .details .data {
  width: 100%;
  height: 100%;
  padding-right: 16px;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #ffffff #335157;
}
.project-card .project-card-wrapper .project-card-content .details .data::-webkit-scrollbar {
  width: 4px;
}
.project-card .project-card-wrapper .project-card-content .details .data::-webkit-scrollbar-track {
  background: #335157;
  border-radius: 16px;
}
.project-card .project-card-wrapper .project-card-content .details .data::-webkit-scrollbar-thumb {
  background: #809396;
  border-radius: 16px;
}
.project-card .project-card-wrapper .project-card-content .details .data .project-title {
  font-size: 24px;
  line-height: 1.5;
}
@media (max-width: 1600px) {
  .project-card .project-card-wrapper .project-card-content .details .data .project-title {
    font-size: 20px;
  }
}
.project-card .project-card-wrapper .project-card-content .details .data .project-title.en {
  font-weight: 500;
}
.project-card .project-card-wrapper .project-card-content .details .data .project-description {
  margin-top: 8px;
  font-size: 14px;
  color: #ccd4d5;
}
.project-card .project-card-wrapper .project-card-content .details .data .project-capacity {
  margin-top: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
}
.project-card .project-card-wrapper .project-card-content .details .data .project-capacity .unit {
  font-size: 50%;
}
.project-card .project-card-wrapper .project-card-content .details .data .meta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.project-card .project-card-wrapper .project-card-content .details .data .meta .date,
.project-card .project-card-wrapper .project-card-content .details .data .meta .site-count {
  font-size: 12px;
  line-height: 1;
}
@media (max-width: 1600px) {
  .project-card .project-card-wrapper .project-card-content .details .data .meta .date,
  .project-card .project-card-wrapper .project-card-content .details .data .meta .site-count {
    font-size: 10px;
  }
}
.project-card .project-card-wrapper .project-card-content .details .data .meta .label {
  color: #b3bec0;
}
.project-card .project-card-wrapper .project-card-content .details .data .meta.en {
  row-gap: 0px;
}
.project-card .project-card-wrapper .project-card-content .details .data .meta.en .date,
.project-card .project-card-wrapper .project-card-content .details .data .meta.en .site-count {
  line-height: 1.7;
}
@media (max-width: 1462px) {
  .project-card .project-card-wrapper .project-card-content .details .data .project-title {
    font-size: 18px;
  }
  .project-card .project-card-wrapper .project-card-content .details .data .project-description {
    font-size: 12px;
  }
  .project-card .project-card-wrapper .project-card-content .details .data .project-capacity {
    font-size: 40px;
  }
  .project-card .project-card-wrapper .project-card-content .details .data .meta {
    margin-top: 24px;
  }
  .project-card .project-card-wrapper .project-card-content .details .data .meta .date,
  .project-card .project-card-wrapper .project-card-content .details .data .meta .site-count {
    font-size: 10px;
  }
}
@media (max-width: 960px) {
  .project-card .project-card-wrapper .project-card-content .details .data .project-title {
    font-size: 14px;
  }
  .project-card .project-card-wrapper .project-card-content .details .data .project-description {
    font-size: 12px;
  }
  .project-card .project-card-wrapper .project-card-content .details .data .project-capacity {
    font-size: 32px;
  }
  .project-card .project-card-wrapper .project-card-content .details .data .meta .date,
  .project-card .project-card-wrapper .project-card-content .details .data .meta .site-count {
    font-size: 10px;
  }
}
@media (max-width: 799px) {
  .project-card .project-card-wrapper .project-card-content .details .data .project-capacity {
    font-size: 24px;
  }
}
.project-card .project-card-wrapper .project-card-content .details .read-more {
  position: absolute;
  bottom: var(--project-card-offset);
  left: var(--project-card-offset);
}
@media (max-width: 1462px) {
  .project-card .project-card-wrapper .project-card-content .details .read-more {
    bottom: 32px;
    left: 32px;
    transform: scale(0.8);
    transform-origin: bottom left;
  }
}
.project-card .project-card-wrapper .project-card-content .image {
  position: relative;
  width: 60%;
  height: 100%;
}
.project-card .project-card-wrapper .project-card-content .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-card .project-card-wrapper .project-card-content .image .exit-label {
  position: absolute;
  bottom: 48px;
  right: 48px;
  padding: 6px 16px 5px 16px;
  background-image: linear-gradient(-45deg, #b87333, #dcb999);
  border-radius: var(--common-radius-8);
}
@media (max-width: 1462px) {
  .project-card .project-card-wrapper .project-card-content .image .exit-label {
    bottom: 24px;
    right: 24px;
  }
}
.project-card .project-card-wrapper .project-card-content .image .exit-label p {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0px;
  text-transform: uppercase;
}
@media (max-width: 799px) {
  .project-card .project-card-wrapper .project-card-content .image .exit-label p {
    font-size: 10px;
  }
}
.project-card.no-image .details {
  width: 100% !important;
}
.project-card.no-image .details .drag-handle {
  width: 40%;
}
.project-card.no-image .image {
  display: none;
}
.project-card.no-link .details {
  padding: var(--project-card-padding-no-link) !important;
}
.project-card.no-link .details .data {
  max-height: 100% !important;
}
@media (min-width: 1921px) {
  .project-card {
    left: 50%;
  }
}
@media (max-width: 960px) {
  .project-card {
    top: calc(var(--global-header-height-with-selector) + 72px);
    left: calc(var(--side-padding) / 2);
    width: 100%;
    max-width: 600px;
    min-width: 0;
    aspect-ratio: 2/1;
  }
}
@media (max-width: 799px) {
  .project-card {
    width: calc(100% - var(--side-padding));
  }
}
@media (max-width: 600px), (pointer: coarse), (max-width: 960px) and (max-height: 450px) {
  .project-card {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    border: 0;
    border-radius: 0;
    transform: none !important;
    z-index: 9999;
  }
  .project-card .close-button {
    cursor: pointer;
    position: absolute;
    top: -24px;
    right: 2px;
    width: 16px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1;
  }
}
@media (max-width: 600px) and (hover: hover), (pointer: coarse) and (hover: hover), (max-width: 960px) and (max-height: 450px) and (hover: hover) {
  .project-card .close-button:hover {
    opacity: 0.7;
  }
}
@media (max-width: 600px), (pointer: coarse), (max-width: 960px) and (max-height: 450px) {
  .project-card .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;
  }
  .project-card .project-card-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: calc(100% - var(--side-padding));
    max-width: 600px;
    height: 90dvh;
    max-height: min(70dvh, 480px);
    overflow: visible;
  }
}
@media (max-width: 600px) and (max-height: 450px), (pointer: coarse) and (max-height: 450px), (max-width: 960px) and (max-height: 450px) and (max-height: 450px) {
  .project-card .project-card-wrapper {
    max-width: 480px;
  }
}
@media (max-width: 600px), (pointer: coarse), (max-width: 960px) and (max-height: 450px) {
  .project-card .project-card-wrapper .project-card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00262d;
    border: solid 1px #005e70;
    border-radius: var(--common-radius-16);
    overflow: hidden;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media (max-width: 600px) and (max-height: 450px), (pointer: coarse) and (max-height: 450px), (max-width: 960px) and (max-height: 450px) and (max-height: 450px) {
  .project-card .project-card-wrapper .project-card-content {
    flex-direction: row;
    align-items: stretch;
  }
}
@media (max-width: 600px), (pointer: coarse), (max-width: 960px) and (max-height: 450px) {
  .project-card .project-card-wrapper .project-card-content .details {
    width: 100%;
    height: 50%;
    padding: 24px;
  }
}
@media (max-width: 600px) and (max-height: 450px), (pointer: coarse) and (max-height: 450px), (max-width: 960px) and (max-height: 450px) and (max-height: 450px) {
  .project-card .project-card-wrapper .project-card-content .details {
    width: 40%;
    height: 100%;
  }
}
@media (max-width: 600px), (pointer: coarse), (max-width: 960px) and (max-height: 450px) {
  .project-card .project-card-wrapper .project-card-content .details::before {
    max-height: 60%;
  }
}
@media (max-width: 600px) and (max-height: 450px), (pointer: coarse) and (max-height: 450px), (max-width: 960px) and (max-height: 450px) and (max-height: 450px) {
  .project-card .project-card-wrapper .project-card-content .details::before {
    max-height: 40%;
  }
}
@media (max-width: 600px), (pointer: coarse), (max-width: 960px) and (max-height: 450px) {
  .project-card .project-card-wrapper .project-card-content .details .drag-handle {
    display: none;
  }
  .project-card .project-card-wrapper .project-card-content .details .data {
    max-height: 100%;
  }
  .project-card .project-card-wrapper .project-card-content .details .data .meta {
    margin-top: 16px;
  }
  .project-card .project-card-wrapper .project-card-content .details .read-more {
    position: static;
    margin-top: 24px;
  }
  .project-card .project-card-wrapper .project-card-content .image {
    width: 100%;
    height: 50%;
  }
}
@media (max-width: 600px) and (max-height: 450px), (pointer: coarse) and (max-height: 450px), (max-width: 960px) and (max-height: 450px) and (max-height: 450px) {
  .project-card .project-card-wrapper .project-card-content .image {
    width: 60%;
    height: 100%;
  }
}
@media (max-width: 600px), (pointer: coarse), (max-width: 960px) and (max-height: 450px) {
  .project-card .project-card-wrapper .project-card-content .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .project-card .project-card-wrapper .project-card-content .image .exit-label {
    left: 24px;
    right: auto;
  }
}
@media (max-width: 600px) and (max-height: 450px), (pointer: coarse) and (max-height: 450px), (max-width: 960px) and (max-height: 450px) and (max-height: 450px) {
  .project-card .project-card-wrapper .project-card-content .image .exit-label {
    left: auto;
    right: 24px;
  }
}
@media (max-width: 600px), (pointer: coarse), (max-width: 960px) and (max-height: 450px) {
  .project-card.no-image .project-card-wrapper {
    height: auto;
  }
  .project-card.no-image .project-card-wrapper .project-card-content {
    position: static;
  }
}/*# sourceMappingURL=maps.css.map */