@charset "UTF-8";

.page-company .company-overview {
  background: #f8fdfc;
}

.page-company .company-overview .company-info {
  max-width: 900px;
  margin: 0 auto;
}

.page-company .company-overview .info-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(10, 186, 181, 0.1);
}

.page-company .company-overview .info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #e2e8f0;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.page-company .company-overview .info-row:last-child {
  border-bottom: none;
}

.page-company .company-overview .info-row:hover {
  background-color: #f8fdfc;
}

.page-company .company-overview .info-row .info-label {
  background: linear-gradient(135deg, #f8fdfc 0%, #f0fffe 100%);
  padding: 25px 30px;
  min-width: 200px;
  font-weight: 700;
  color: #0abab5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 2px solid rgba(10, 186, 181, 0.1);
  position: relative;
}

.page-company .company-overview .info-row .info-value {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 25px 30px;
  color: #4a5568;
  line-height: 1.7;
}

.page-company .company-overview .info-row .info-value .phone-link {
  color: #0abab5;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.page-company .company-overview .info-row .info-value .phone-link::before {
  content: "📞";
  font-size: 16px;
}

.page-company .company-overview .info-row .info-value .phone-link:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  text-shadow: 0 2px 4px rgba(248, 253, 252, 0.98);
}

.page-company .company-overview .info-row .info-value ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-company .company-overview .info-row .info-value ul.business-list li,
.page-company .company-overview .info-row .info-value ul.bank-list li,
.page-company .company-overview .info-row .info-value ul.advisor-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.page-company .company-overview .info-row .info-value ul.business-list li:last-child,
.page-company .company-overview .info-row .info-value ul.bank-list li:last-child,
.page-company .company-overview .info-row .info-value ul.advisor-list li:last-child {
  margin-bottom: 0;
}

.page-company .company-overview .info-row .info-value ul.business-list li::before,
.page-company .company-overview .info-row .info-value ul.bank-list li::before,
.page-company .company-overview .info-row .info-value ul.advisor-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: #0abab5;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.page-company .company-overview .info-row .info-value ul.business-list li::before {
  background: #4caf50;
}

.page-company .company-overview .info-row .info-value ul.bank-list li::before {
  background: #2196f3;
}

.page-company .company-overview .info-row .info-value ul.advisor-list li::before {
  background: #ff9800;
}

.page-company .access-map {
  padding: 0;
  background: #f8fdfc;
}

.page-company .access-map .map-container {
  width: 100%;
  height: 500px;
  position: relative;
}

.page-company .access-map .map-container iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  border: none;
}

.page-company .access-map .map-info {
  padding: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-company .access-map .map-info .address-info {
  background: white;
  padding: 40px;
  border-radius: 15px;
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(10, 186, 181, 0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.page-company .access-map .map-info .address-info h3 {
  color: #0abab5;
  margin-bottom: 20px;
  font-size: 24px;
  position: relative;
  display: inline-block;
}

.page-company .access-map .map-info .address-info h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#0abab5), to(rgba(10, 186, 181, 0.5)));
  background: linear-gradient(90deg, #0abab5, rgba(10, 186, 181, 0.5));
  border-radius: 2px;
}

.page-company .access-map .map-info .address-info .address {
  font-size: 18px;
  color: #4a5568;
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
}

@media screen and (max-width: 1152px) {
  .page-company .company-overview .info-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .page-company .company-overview .info-row .info-label {
    min-width: auto;
    padding: 20px 25px 15px;
    border-right: none;
    border-bottom: 1px solid rgba(10, 186, 181, 0.1);
  }

  .page-company .company-overview .info-row .info-value {
    padding: 15px 25px 20px;
  }

  .page-company .access-map .map-container {
    height: 400px;
  }

  .page-company .access-map .map-info {
    padding: 50px 0;
  }

  .page-company .access-map .map-info .address-info {
    padding: 30px;
    max-width: 350px;
  }

  .page-company .access-map .map-info .address-info h3 {
    font-size: 22px;
  }

  .page-company .access-map .map-info .address-info .address {
    font-size: 16px;
  }
}

@media screen and (max-width: 490px) {
  .page-company .company-overview .info-row .info-label {
    padding: 18px 20px 12px;
    font-size: 15px;
  }

  .page-company .company-overview .info-row .info-value {
    padding: 12px 20px 18px;
    font-size: 14px;
  }

  .page-company .company-overview .info-row .info-value ul.business-list li,
  .page-company .company-overview .info-row .info-value ul.bank-list li,
  .page-company .company-overview .info-row .info-value ul.advisor-list li {
    padding-left: 18px;
    margin-bottom: 6px;
  }

  .page-company .company-overview .info-row .info-value ul.business-list li::before,
  .page-company .company-overview .info-row .info-value ul.bank-list li::before,
  .page-company .company-overview .info-row .info-value ul.advisor-list li::before {
    width: 5px;
    height: 5px;
  }

  .page-company .access-map .map-container {
    height: 350px;
  }

  .page-company .access-map .map-info {
    padding: 40px 0;
  }

  .page-company .access-map .map-info .address-info {
    padding: 25px 20px;
    max-width: 300px;
  }

  .page-company .access-map .map-info .address-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .page-company .access-map .map-info .address-info h3::after {
    bottom: -6px;
    width: 35px;
    height: 2px;
  }

  .page-company .access-map .map-info .address-info .address {
    font-size: 15px;
  }
}
/*# sourceMappingURL=page-company.css.map */