.contact-container {
  position: relative;
  z-index: -1;
  width: 100%;
  background-color: rgba(186, 186, 186, 1);
  margin-bottom: 60px;
  aspect-ratio: 192 / 35;
  padding-top: 12.1%;
  background-image: var(--page-bg);
}
.contact-container .contact-main-title {
  font-weight: 500;
  font-size: 36px;
  color: rgba(15, 15, 15, 1);
  margin: 0;
  padding: 15px 36px 15px 0;
  max-width: max-content;
}
.contact-container .contact-main-title span {
  position: relative;
}
.contact-container .contact-main-title::before {
  content: '';
  display: block;
  position: absolute;
  border-radius: 0 8px 8px 0;
  background: rgba(237, 237, 237, 0.7);
  top: 0;
  right: 0;
  bottom: 0;
  left: -1000px;
}
.contact-container .contact-main-title::after {
  display: none;
}
.contact-info {
  margin-bottom: 6%;
}
.contact-title {
  font-weight: 500;
  font-size: 1.5rem;
  color: rgba(20, 20, 20, 1);
  line-height: 1;
  margin-bottom: 24px;
}
.contact-tel-number {
  font-weight: 400;
  font-size: 1.12rem;
  line-height: 1;
  color: rgba(20, 20, 20, 1);
  text-decoration: none;
  padding: 0 14px 16px 0;
}
.contact-tel-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.contact-tel {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 46px;
}
.contact-address {
  margin-bottom: 60px;
}
.contact-address-office {
  font-size: 1.12rem;
  color: #141414;
  font-weight: 400;
}
.contact-map {
  width: 856px;
  max-width: 100%;
  background-color: transparent;
  aspect-ratio: 856 / 552;
  height: auto;
}
.contact-block {
  display: flex;
  gap: 16px;
  flex-direction: row;
}
.contact-container-btn {
  position: relative;
}
.contact-container-btn a {
  position: absolute;
  inset: 0;
}

.contact-map iframe {
	width: 100%
}

@media screen and ( max-width: 1400px ) {
  .contact-container {
    padding-top: 9.1%;
  }
}
@media screen and ( max-width: 991px ) {
  .contact-container {
    padding: 0;
    aspect-ratio: unset;
    background-color: unset;
    margin-bottom: 36px;
    padding-top: 24px;
  }
  .contact-container .contact-main-title {
      font-size: 24px;
      padding: 0;
  }
  .contact-container .contact-main-title::before {
      visibility: hidden;
  }
  .contact-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .contact-tel,
  .contact-address,
  main .contact-social {
    margin-bottom: 36px;
  }
  .contact-tel-number,
  .contact-address-office {
    font-size: 16px;
  }
  .contact-map {
    aspect-ratio: 15 / 14;
  }
}
@media screen and ( max-width: 767px ) {
  .contact-map {
    display: flex;
    position: static;
    filter: grayscale(1);
  }
  .contact-info {
    margin-bottom: 0;
  }
}