.global-pages {
  background: white;
  min-height: 100vh;
}

.page-title-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.page-title {
  font-family: "Inter", sans-serif;
  font-size: 89px;
  font-weight: 700;
  color: #2b39d5;
  line-height: 1.3;
  margin: 0;
}

.page-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #4a4459;
  line-height: 26px;
  letter-spacing: 1.44px;
  margin: 0;
  align-self: flex-end;
  padding-bottom: 20px;
}

.intro-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 40px;
}

.intro-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #4a4459;
  line-height: 45px;
  letter-spacing: 3px;
  margin: 0;
  max-width: 1200px;
  width: 100%;
  text-align: left;
}

.content-section {
  width: 100%;
  padding: 40px 0 100px;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.description-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #4a4459;
  line-height: 28px;
  margin: 0 0 40px;
}

.section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #4a4459;
  line-height: 30px;
  margin: 0 0 40px;
}

.world-map {
  width: 100%;
  margin-bottom: 60px;
  text-align: center;
}

.world-map img {
  width: 886px;
  height: 450px;
}

.regions-section {
  margin-bottom: 60px;
}

.region-table {
  display: flex !important;
  flex-direction: column !important;
}

.region-title {
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin: 0 0 30px;
  color: #4a4459;
  padding-bottom: 20px;
}

.region-content {
  display: flex;
  gap: 60px;
}

.region-column {
  flex: 1;
}

.region-column.single {
  max-width: 600px;
}

.region-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #4a4459;
  line-height: 28px;
  margin: 0 0 20px;
}

.region-table .company-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.region-table .company-list li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #4a4459;
  line-height: 28px;
  padding: 0;
  min-height: 28px;
}

.table-row {
  display: flex !important;
  min-height: 48px !important;
}

.region-table .table-row:only-child {
  background: #f7f6f8 !important;
}

.region-table .table-row:not(:only-child):nth-child(odd) {
  background: #f7f6f8 !important;
}

.region-table .table-row:not(:only-child):nth-child(even) {
  background: white !important;
}

.table-cell.label {
  min-width: 150px !important;
  padding: 10px 12px !important;
  font-family: Inter !important;
  font-size: 15px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 28px !important;
  color: #4a4459 !important;
}

.table-cell.content {
  flex: 1 !important;
  padding: 16px 24px !important;
}

.content-columns {
  display: flex;
  gap: 40px;
}

.global-pages .footer {
  margin-top: 0;
}

@media (max-width: 768px) {
  .page-title-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-left: 16px;
    padding: 20px 0;
  }

  .page-title {
    font-size: 30px;
  }

  .page-subtitle {
    font-size: 18px;
    align-self: flex-start;
    padding-bottom: 0;
  }

  .intro-wrapper {
    margin-left: 16px;
    margin-right: 16px;
  }

  .intro-text {
    font-size: 20px;
    line-height: 32px;
  }

  .content-section {
    padding: 20px 0 60px;
  }

  .content-container {
    margin: 0 16px;
  }

  .description-text {
    font-size: 14px;
    line-height: 24px;
  }

  .section-title {
    font-size: 20px;
  }

  .region-title {
    font-size: 20px;
    padding-bottom: 15px;
  }

  .region-content {
    flex-direction: column;
    gap: 30px;
  }

  .region-label {
    font-size: 16px;
  }

  .company-list li {
    font-size: 14px;
    line-height: 24px;
  }

  .world-map img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .table-cell.label {
    width: auto;
    min-width: 80px;
  }

  .content-columns {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 414px) {
  .page-title-section {
    margin-left: 8px;
    margin-right: 8px;
    padding: 16px 0;
  }

  .page-title {
    font-size: 24px;
  }

  .page-subtitle {
    font-size: 16px;
  }

  .intro-wrapper {
    margin-left: 8px;
    margin-right: 8px;
  }

  .intro-text {
    font-size: 18px;
    line-height: 28px;
  }

  .content-container {
    margin: 0 8px;
  }

  .description-text {
    font-size: 13px;
    line-height: 22px;
  }

  .section-title {
    font-size: 18px;
  }

  .region-title {
    font-size: 18px;
  }

  .table-cell.label {
    min-width: 70px;
    padding: 8px;
    font-size: 14px;
  }

  .table-cell.content {
    padding: 12px 8px;
  }

  .company-list li {
    font-size: 13px;
    line-height: 22px;
  }
}
