@charset "utf-8";

.contact_form {
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px 80px;
}
.contact_form_wrapper {
  display: flex;
}
.contact_form_wrapper_left {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 50%;
  padding-right: 64px;
}
.contact_form_text {
  margin-bottom: 120px;
  font-size: 16px;
  line-height: 1.6;
}
.contact_form_phone {
  margin-top: auto;
  padding: 32px 24px;
  background-color: #f6f8fa;
}
.contact_form_phone_title {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.contact_form_phone_title_img {
  width: 18px;
  height: auto;
  margin-right: 8px;
}
.contact_form_phone_title_text {
  font-weight: 600;
}
.contact_form_phone_number {
  margin-top: 12px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.contact_form_phone_time {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 18px;
}
.contact_form_phone_notice {
  margin: 8px 0 -8px;
  color: #e04f49;
  font-size: 11px;
  text-align: center;
}
.contact_form_wrapper_right {
  width: 50%;
}
.contact_form_skeleton {
  overflow: hidden;
  width: 100%;
  margin-bottom: 32px;
  background: linear-gradient(120deg, #f6f8fa 0%, #f4f4f4 30%);
  border-radius: 2px;
}
.contact_form_skeleton.small {
  height: 50px;
}
.contact_form_skeleton.large {
  height: 200px;
}
.contact_form_skeleton.large:last-child {
  margin-bottom: 0;
}
.contact_form_skeleton::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #e3e9ef;
  animation: skeletonAnimation 1s ease-in-out infinite;
}
.id_contact_form_phone_title_text {
  font-weight: 600;
  text-align: center;
}
.id_contact_form_phone_company {
  margin-top: 16px;
  font-weight: 600;
  text-align: center;
}
.id_contact_form_phone_company_info {
  margin-top: 8px;
  text-align: center;
  line-height: 1.6;
}
.id_contact_form_phone_company_whatsapp {
  margin-top: 16px;
  text-align: center;
  line-height: 1.6;
}

@keyframes skeletonAnimation {
  0% {
    opacity: 1;
    transform: translate3d(-100%, 0, 0);
  }
  40% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

@media screen and (max-width: 1040px) {
  .contact_form_wrapper {
    flex-direction: column;
  }
  .contact_form_wrapper_left {
    display: contents;
  }
  .contact_form_text {
    order: 1;
    margin-bottom: 40px;
  }
  .contact_form_phone {
    order: 3;
    margin-top: 80px;
  }
  .contact_form_wrapper_right {
    order: 2;
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .contact_form {
    padding: 48px 20px 40px;
  }
  .contact_form_phone {
    order: 3;
    margin-top: 64px;
  }
}

@media screen and (max-width: 480px) {
  .contact_form {
    padding: 32px 20px 40px;
  }
  .contact_form_text {
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 1.8;
  }
  .contact_form_phone_number {
    font-size: 22px;
  }
}
