@charset "UTF-8";
/* =========
color
========= */
/* =========
fonts
========= */
/* =========
미디어쿼리 pc, tablet, mobile 중단점
========= */
.map_box {
  width: 100%;
}
.map_box #map {
  width: 100%;
  height: 500px;
  border-radius: 50px;
  border: 1px solid var(--Neutral-Border-Default, #e0e0e0);
}
.map_box .overlaybox {
  width: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
.map_box .overlaybox .innerbox {
  width: 210px;
  height: 90px;
  position: relative;
  padding: 12px 20px;
  border-radius: 15px;
  background: #fff;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.map_box .overlaybox .innerbox img {
  display: block;
  width: 170px;
  height: 30px;
}
.map_box .overlaybox .innerbox a {
  display: block;
  width: 170px;
  height: 26px;
  border-radius: 999px;
  background: var(--Primary-Main, #042e6f);
  display: flex;
  padding: 0 15px;
  justify-content: center;
  align-items: center;
  gap: 30px;
  align-self: stretch;
  font-family: "Pretendard";
  font-size: 0.889rem;
  font-style: normal;
  line-height: 160%;
  letter-spacing: -0.48px;
  font-weight: 400;
  color: #333;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
.map_box .overlaybox .innerbox::after {
  content: "";
  width: 23px;
  height: 18px;
  position: absolute;
  left: calc(50% - 11.5px);
  bottom: -16px;
  background: url("../img/polygon.png") center no-repeat;
}

.contact {
  width: 100%;
}
.contact ul {
  width: 100%;
  display: flex;
  gap: 30px;
}
.contact li {
  width: calc(33.3% - 10px);
  border-radius: 30px;
  border: 1px solid #c2d4e8;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1 0 0;
  padding: 25px 30px;
}
.contact li::before {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85px;
  height: 85px;
}
.contact li:nth-child(1)::before {
  background: url("../img/ico_map.svg") center no-repeat;
  background-size: auto;
}
.contact li:nth-child(2)::before {
  background: url("../img/ico_tel.svg") center no-repeat;
  background-size: auto;
}
.contact li:nth-child(3)::before {
  background: url("../img/ico_fax.svg") center no-repeat;
  background-size: auto;
}
.contact p {
  color: var(--Gray-txt, #222);
  /* Body/M */
  font-family: "Pretendard";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.54px;
}
.contact p.contact_tit {
  color: #333;
  font-size: 1.111rem;
  font-weight: 700;
  letter-spacing: -0.6px;
}

@media (max-width: 1023px) {
  .contact ul {
    flex-direction: column;
    gap: 20px;
  }
  .contact li {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contact p {
    font-size: 0.889rem;
  }
  .contact p.contact_tit {
    font-size: 1rem;
  }
}