.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 80px;
}

.contact-info {
  width: 48%;
}

.contact-info h3,
.contact-inquiry h3 {
  font-size: 26px;
  text-align: center;
}
.contact-info h3 {
  font-size: 30px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  font-family: var(--font-family-1);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.contact-info dl {
  padding: 20px 0;
  border-bottom: 1px solid #E5E5E5;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.contact-info dl dt {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #3395c7;
  cursor: pointer;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.contact-info dl dt i {
  font-size: 22px;
  color: #fff;
  display: inline-block;
  margin-top: 2px;
}

.contact-info dl dd {
  -webkit-flex: 1;
  flex: 1;
  padding-left: 15px;
  color: #343c49;
  box-sizing: border-box;
}
.contact-info dl dd h5 {
  font-size: 18px;
  color: #333;
  font-weight: 600;
}
.contact-info dl dd p {
  font-size: 17px;
  color: #444;
  margin: 8px 0 0;
  word-break: break-all;
}

.contact-inquiry {
  width: 48%;
}
.contact-inquiry h3 {
  font-size: 30px;
  color: #000;
  line-height: 1;
  font-weight: 700;
  font-family: var(--font-family-1);
  text-transform: uppercase;
  margin-bottom: 15px;
}
.contact-inquiry p {
  font-size: 17px;
  color: #595959;
  line-height: 30px;
}
.contact-inquiry .inquirbox {
  margin: 30px 0 0;
}
.contact-inquiry .inquirbox .row {
  margin-bottom: 15px;
}

.linetit {
  margin: 60px 0 0;
}
.linetit h4 {
  position: relative;
  text-align: center;
}
.linetit h4::before {
  content: "";
  display: block;
  border-top: 1px dashed #D1CFCF;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.linetit h4 span {
  background: #fff;
  font-size: 30px;
  color: #000;
  padding: 8px 10px;
  text-align: center;
  position: relative;
  display: inline-block;
  z-index: 1;
  font-weight: 700;
  font-family: var(--font-family-1);
}
.map {
  margin: 20px 0 50px;
}
.map img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .contact {
    padding-top: 40px;
  }
  .contact-info {
    width: 100%;
  }
  .contact-info h3,
  .contact-inquiry h3 {
    font-size: 26px;
    text-align: center;
  }

  .contact-info dl {
    padding: 15px 0;
  }
  .contact-info dl dd p {
    font-size: 16px;
  }

  .contact-inquiry {
    padding: 30px 0 0;
    width: 100%;
    margin: 25px 0 0;
  }
  .contact-inquiry p {
    font-size: 16px;
    line-height: 24px;
  }
  .contact-inquiry .inquirbox {
    margin: 25px 0 0;
  }
  .contact-inquiry .inquirbox .row {
    margin-bottom: 0;
  }
  .contact-inquiry .inquirbox .row > div {
    margin-bottom: 15px;
  }

  .linetit {
    margin: 30px 0 0;
  }
  .linetit h4 span {
    font-size: 26px;
  }
  .map {
    margin: 25px 0;
  }
}