/* お問い合わせセクション */
.contact-section {
  position: relative;
  padding: 100px 0;
  background-color: #ffffff;
  overflow: hidden;
  padding-bottom: 100px;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.contact-bg-image {
  position: absolute;
  object-fit: cover;
}

.contact-bg-image-1 {
  top: 0;
  left: 128px;
  width: 456px;
  height: 250px;
}

.contact-bg-image-2 {
  bottom: 0;
  right: 70px;
  width: 363px;
  height: 235px;
}

.contact-light-bg-image {
  position: absolute;
  object-fit: cover;
}

.contact-light-bg-image-1 {
  top: 300px;
  left: 128px;
  width: 165px;
  height: 146px;
}

.contact-light-bg-image-2 {
  top: -70px;
  right: 130px;
  width: 114px;
  height: 72px;
}

.contact-card-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.contact-description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #000;
}

.contact-icon {
  margin-bottom: 30px;
}

/* .contact-icon img {
  width: 50px;
  height: 50px;
} */

.contact-button {
  margin-top: 20px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../assets/images/right-arrrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 10px;
  transform: rotate(-90deg);
}

.contact-btn:hover {
  background-color: #333;
}

.contact-form {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .contact-title {
    font-size: 1.8rem;
  }

  .contact-description {
    font-size: 0.9rem;
  }

  .contact-form {
    flex-direction: column;
    margin-top: 20px;
  }
}
