@charset "UTF-8";

/** 媒体查询 */

/** 布局 */

.headquarters {
  padding-top: 6.25rem;
}

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

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

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

@media (max-width: 800px) {
  .headquarters {
    padding-top: 0;
  }

  .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: #2252A3;
  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: #2252A3;
}

.contact-list .value {
  font-size: 1.125rem;
  color: #666666;
  padding: 0 3.125rem 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 {
  padding: 6.25rem 0;
}

.contact-form .title {
  font-weight: bold;
  font-size: 2.125rem;
  color: #000000;
  text-align: center;
}

.contact-form form {
  padding: 3.25rem 0;
}

.contact-form form .btn {
  display: inline-block;
  width: 24.25rem;
  height: 3.75rem;
  line-height: 3.75rem;
  background: #2252A3;
  border-radius: 0 0 0 0;
  text-align: center;
  font-size: 1.25rem;
  color: #FFFFFF;
}

@media (max-width: 800px) {
  .contact-form {
    padding: 2.5rem 0;
  }

  .contact-form .title {
    font-size: 1.25rem;
  }

  .contact-form form {
    padding: 1.25rem 0;
  }

  .contact-form form .btn {
    width: 18.75rem;
    height: 3.125rem;
    line-height: 3.125rem;
    font-size: 1rem;
  }
}