/* ======================================
download.css
ダウンロードページの共通スタイル
====================================== */

#contact-section {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
  #contact-section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80%;
    background: url("../img/mabiz_bg.jpg") center right 20% / cover no-repeat;
    background-image: url("../img/mabiz_bg.webp");
  }
@media (min-width: 1024px) {
  #contact-section::before {
    height: 50%;
    background-position: center center;
  }
}


.contact-inner {
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  justify-items: center;
}
@media (min-width: 1024px) {
  .contact-inner {
    grid-template-columns: 1fr 30rem;
  }
}


.contact-right {
  width: 100%;
  max-width: 50rem;
  box-sizing: border-box;
  background: var(--white-color);
  padding: 2rem 0;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shodow);
}
@media (min-width: 1024px) {
  .contact-right {
    padding: 2rem;
  }
}

.contact-heading h2 {
  font-size: 1.8rem;
}

.contact-numbers {
  margin-bottom: 3rem;
}


.contact-recommend {
  margin-bottom: 2rem;
}

.contact-recommend h3 {
  color: var(--white-color);
  margin-bottom: 2rem;
}


.contact-recommend li {
  margin-bottom: 10px;
  color: var(--white-color);
  background: url(../../../../src/img/check_w.svg) no-repeat 2px;
  padding-left: 2rem;
}

.contact-form-wrapper h3 {
  font-size: 24px;
  text-align: center;
}

@media screen and (max-width: 480px) {
  #contact-section {
    padding: 2rem 0;
  }
  .background-image {
    height: 74rem;
  }
}
