.contact__wrapper {
  width: 1000px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .contact__wrapper {
    width: 90.9090909091vw;
    padding-top: 9.0909090909vw;
    padding-bottom: 9.0909090909vw;
  }
}
@media screen and (max-width: 768px) {
  .contact__wrapper {
    width: 95.8333333333vw;
    padding-top: 8.3333333333vw;
    padding-bottom: 8.3333333333vw;
  }
}
@media screen and (max-width: 414px) {
  .contact__wrapper {
    padding-top: 18.5185185185vw;
    padding-bottom: 15.873015873vw;
    width: 91.0052910053vw;
  }
}
.contact__top-text {
  font-size: 16px;
  line-height: 2;
  font-weight: normal;
  letter-spacing: 0.02em;
  margin-bottom: 45px;
}
.contact__cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 32px;
}
@media screen and (max-width: 768px) {
  .contact__cards {
    -moz-column-gap: 32px;
         column-gap: 32px;
    row-gap: 24px;
  }
}
@media screen and (max-width: 510px) {
  .contact__cards {
    flex-direction: column;
  }
}
.contact__card {
  list-style: none;
  width: calc(50% - 20px);
  border-radius: 4px;
  background: #f2f7fd;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact__card {
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 510px) {
  .contact__card {
    width: min(100%, 400px);
    margin: 0 auto;
  }
}
.contact__card a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  text-decoration: none;
  text-align: left;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .contact__card a {
    padding-right: 48px;
    font-size: 15px;
  }
}
.contact__card a:hover {
  color: #007fff;
}
.contact__card::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  width: 16px;
  height: 16px;
  background-image: url("../image/icon_newwindow.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}/*# sourceMappingURL=contact.css.map */