.inquiry {
  margin-top: clamp(85px, 8.9vw, 170px);
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
  width: 100%;
  padding-left: clamp(16px, (16.7vw), 320px);
  padding-right: clamp(16px, (16.7vw), 320px);
  width: 100%;
}
@media (max-width: 767px) {
  .inquiry {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.inquiryInner {
  width: 100%;
  background-color: #f2f3fa;
  padding-top: clamp(45px, 4.7vw, 90px);
  padding-bottom: clamp(45px, 4.7vw, 90px);
  padding-left: clamp(16px, 5.2vw, 100px);
  padding-right: clamp(16px, 5.2vw, 100px);
  border-radius: clamp(15px, 1.6vw, 30px);
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  column-gap: clamp(70px, 5.2vw, 100px);
}
@media (max-width: 1024px) {
  .inquiryInner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding-bottom: clamp(80px, 10.4vw, 200px);
  }
}

.inquiryBody {
  position: relative;
  z-index: 1;
}

.inquiryBodyTtl {
  font-size: clamp(2.1rem, (1.8vw), 3.5rem);
  font-weight: bold;
  line-height: 1.1428571429;
  letter-spacing: 0.008em;
}
@media (max-width: 767px) {
  .inquiryBodyTtl {
    text-align: center;
  }
}

.inquiryBodyTel {
  margin-top: clamp(25.2px, 2.2vw, 42px);
  font-size: clamp(3rem, (3.1vw), 6rem);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.008em;
  color: #00009b;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  column-gap: 8px;
}
@media (max-width: 767px) {
  .inquiryBodyTel {
    text-align: center;
  }
}
.inquiryBodyTel::before {
  margin-top: clamp(5.6px, 0.4vw, 8px);
  content: "";
  display: block;
  width: clamp(31.4px, 2.3vw, 45px);
  min-width: clamp(31.4px, 2.3vw, 45px);
  height: clamp(31.4px, 2.3vw, 45px);
  background-image: url(../../img/philosophy/icon_tel.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.inquiryBodyTxt {
  margin-top: clamp(25.2px, 2.2vw, 42px);
  font-size: clamp(1.4rem, (1vw), 2rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.008em;
}
@media (max-width: 767px) {
  .inquiryBodyTxt {
    text-align: center;
  }
}

.inquiryBtn {
  margin-top: clamp(28px, 2.1vw, 40px);
  position: relative;
  z-index: 1;
  font-size: clamp(1.26rem, (0.9vw), 1.8rem);
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.008em;
  color: white;
  background-color: #00009b;
  border: 1px solid #00009b;
  border-radius: clamp(5.6px, 0.4vw, 8px);
  padding-top: clamp(18px, 1.6vw, 30px);
  padding-bottom: clamp(18px, 1.6vw, 30px);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  column-gap: clamp(11.2px, 0.8vw, 16px);
  min-width: clamp(175px, 13vw, 250px);
  width: clamp(175px, 13vw, 250px);
  transition: all 0.1s ease;
}
.inquiryBtn::after {
  content: "";
  display: block;
  width: clamp(7px, 0.5vw, 10px);
  height: clamp(7px, 0.5vw, 10px);
  border-radius: 50%;
  background-color: white;
  transition: all 0.1s ease;
}
.inquiryBtn:hover {
  opacity: 1;
  background-color: white;
  color: #00009b;
}
.inquiryBtn:hover::after {
  background-color: #00009b;
}

.inquiryCopy {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: clamp(8rem, (9.4vw), 18rem);
  font-weight: 600;
  line-height: 1;
  font-family: "Jost";
  letter-spacing: 0.008em;
  color: white;
  margin-bottom: -0.2em;
}
@media (max-width: 1024px) {
  .inquiryCopy {
    right: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}