@charset "UTF-8";

/** 媒体查询 */

/** 布局 */

.headquarters .info {
  width: 50%;
  padding: 6.25rem 0;
}

.headquarters .info .company-name {
  font-weight: bold;
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 6.25rem;
}

.headquarters #map {
  width: 50%;
  height: 100%;
}

@media (max-width: 800px) {
  .headquarters .info {
    width: 100%;
    padding: 3.125rem 0;
  }

  .headquarters .info .company-name {
    font-size: 1.3125rem;
    margin-bottom: 3.125rem;
  }

  .headquarters #map {
    width: 100%;
    height: 40vh;
  }
}

.subsidiary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 5rem;
  gap: 3.75rem 6.25rem;
}

.subsidiary .subsidiary-item {
  padding-bottom: 3.75rem;
  border-bottom: 0.0625rem solid #dddddd;
}

@media (max-width: 800px) {
  .subsidiary {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 2.5rem;
    gap: 1.875rem 3.125rem;
  }

  .subsidiary .subsidiary-item {
    padding-bottom: 1.875rem;
  }
}

.contact-t {
  font-size: 1.125rem;
  color: #01BE80;
  margin-bottom: 2.5rem;
}

@media (max-width: 800px) {
  .contact-t {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}

.contact-list {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: flex-start;
  gap: 2.5rem 0.875rem;
}

.contact-list .icon {
  width: 1.5rem;
  min-height: 1.5rem;
}

.contact-list .icon img {
  width: 100%;
  display: block;
}

.contact-list .label {
  font-size: 1.125rem;
  color: #01BE80;
}

.contact-list .value {
  font-size: 1.125rem;
  color: #666666;
  padding: 0 1.25rem;
}

@media (max-width: 800px) {
  .contact-list {
    gap: 0.9375rem 0.4375rem;
  }

  .contact-list .icon {
    width: 1rem;
  }

  .contact-list .label {
    font-size: 0.875rem;
  }

  .contact-list .value {
    font-size: 0.875rem;
    padding: 0 0.625rem;
  }
}

.contact-form {
  background: #F5F5F5;
  padding: 6.25rem 0;
}