@charset "UTF-8";

/** 媒体查询 */

/** 布局 */

.headquarters {
  background: #FFFFFF;
  margin: 3.75rem auto 0;
}

.headquarters .pad {
  padding: 1.25rem 0 1.25rem 0;
}

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

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

.headquarters .map {
  padding: 1.25rem 0 0 0;
}

.headquarters #map {
  width: 45%;
  height: 96%;
}

@media (max-width: 800px) {
  .headquarters {
    margin: 1.875rem auto 0;
    border-radius: 0.9375rem 0.9375rem 0.9375rem 0.9375rem;
  }

  .headquarters .pad {
    padding: 0 0.625rem;
  }

  .headquarters .info {
    width: 100%;
  }

  .headquarters .info .company-name {
    font-size: 1.25rem;
    margin: 0.625rem 0 1.25rem 0;
  }

  .headquarters .map {
    padding: 0;
    transform: translateX(0);
  }

  .headquarters #map {
    width: 100%;
    height: 40vh;
    border-radius: 0;
  }
}

.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: 1.875rem 0.625rem;
}

.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: #00448B;
}

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

@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 {
  margin: 1.875rem auto 5.625rem;
}

.contact-form .default-line {
  width: 3.125rem;
  height: 0.125rem;
  background: #D9D9D9;
  margin: 0.9375rem auto 0;
}

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

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

.contact-form form .inps {
  grid-template-columns: repeat(3, 1fr);
}

.contact-form form .btn {
  display: inline-block;
  width: 21.875rem;
  height: 3.75rem;
  line-height: 3.75rem;
  background: #00448B;
  border-radius: 0;
  text-align: center;
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-top: 0.625rem !important;
}

@media (max-width: 800px) {
  .contact-form {
    margin: 1.25rem auto 2.5rem;
  }

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

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

  .contact-form form .inps {
    grid-template-columns: repeat(1, 1fr);
  }

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