.directions {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 0;
}

.directions-container {
  width: 100%;
  max-width: 144rem;
  min-width: var(--min-width);
  padding: 18.5rem clamp(1.6rem, 5vw, 4rem) 14rem;
}
.directions-content {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

.location {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.location-tit {
  color: var(--white);
  font-size: clamp(1.8rem, 1.8vw, 2rem);
}
.location-tit span:nth-child(1) {
  font-family: "Modern No. 20", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(4.8rem, 5vw, 6.4rem);
  line-height: 6.8rem;
}
.location-tit span:nth-child(2) {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.8rem, 1.8vw, 2rem);
  line-height: 2.4rem;
}
.location-tit span:nth-child(3) {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(2rem, 1.8vw, 2.4rem);
  line-height: 2.4rem;
}
.map-box {
  position: relative;
  max-width: 70.6rem;
  width: 80%;
  height: 27.7rem;
  background-color: white;
  overflow: hidden;
}
.map {
  width: 100%;
  height: 100%;
}
/* .map iframe {
  width: 100%;
  height: 100%;
} */
.location-text {
  width: calc(100% / 3);
  height: 100%;
  position: absolute;
  top: 0;
  right: -0.1rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  padding: clamp(1.8rem, 1.5vw, 3rem) clamp(0.8rem, 1.5vw, 1rem);
}
.location-text dt {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 2.4rem;
  color: var(--white);
}
.location-text dd {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: clamp(1.2rem, 1vw, 1.5rem);
  line-height: 18px;
  color: var(--white);
}
.address {
  position: relative;
}
.star {
  display: block;
  width: 0.323rem;
  height: 0.323rem;
  background: var(--sub-font-color);
  box-shadow: 0px 0px 12.2059px var(--main-color),
    0px 0px 6.97482px var(--main-color), 0px 0px 4.06865px var(--main-color),
    0px 0px 2.03432px var(--main-color), 0px 0px 0.581235px var(--main-color),
    0px 0px 0.290618px var(--main-color);
  transform: rotate(36.55deg);
  margin: 10% 3%;
}
.tel,
.fax {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (max-width: 768px) {
  .directions {
    align-items: flex-start;
  }
  .directions-container {
    padding-top: 0;
  }
  .map-box {
    width: 100%;
  }
}
