.main_section,
.section_issues,
.section_schedule,
.section_staff,
.section_faq {
  /* margin-left: 60px; */
  max-width: 100rem;
  padding: 7rem 0;
  margin: 0 auto;
  font-size: 1.6rem;
}

.service_mv {
  height: 49.5rem;
  width: 100%;
  margin: 0;
  max-width: initial;
  position: relative;
  padding: 0;



  img {
    /* position: absolute; */
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service_mv_title {
    margin-top: auto;
    /* margin-left: 4.4rem; */
    position: absolute;
    left: 4.4rem;
    bottom: 9rem;
  }

  .service_subtitle {
    font-weight: bold;
    color: #fff;
  }

  .service_title {
    font-size: 3rem;
    padding: 0.9rem 2.8rem;
    background-color: rgba(255, 255, 255, 0.7);
    color: #333333;
  }
}

.section_title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 4rem;
}

.issues_wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
  margin-bottom: 2rem;
}

.issue_item {
  background-color: #F2EFEA;
  text-align: center;
  position: relative;
  width: 29.4rem;
  min-height: 20.2rem;
  padding: 3rem;
  color: #333;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.issue_icon {
  background-color: var(--orange);
  border-radius: 50%;
  position: absolute;
  width: 6rem;
  aspect-ratio: 1;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  padding: 1rem;
}

.issue_icon::after {
  content: '';
  background-image: var(--icon-url);
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
  /* padding: 1rem; */
}

.issues_text_after {
  margin: 2rem 0;
}

.section_issues::after {
  content: '';
  font-size: 2.5rem;
  width: 4.1rem;
  height: 3.6rem;
  background-color: var(--orange);
  mask-image: url('../img/arrow.svg');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 4rem auto 0;
}

.section_solution {
  background-color: var(--darkOrange);
  background-image: linear-gradient(var(--orange), var(--darkOrange));

  .section_title {
    color: #fff;
  }
}

.solution_wrapper {
  max-width: 100rem;
  padding: 7rem 0;
  margin: 0 auto;
}

.solution_item {
  background-color: #fff;
  padding: 3rem;
  display: flex;
  gap: 5rem;
}

.solution_item:not(:last-child) {
  margin-bottom: 3.5rem;
}

.solution_text_wrapper {
  flex: 1;
}

.solution_title {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.solution_img {
  width: 36.6rem;
  aspect-ratio: 366 / 232;
}

.solution_text_before,
.solution_text_after {
  color: #fff;
  margin: 2rem 0;
}

.schedule_wrapper {
  flex: 1;
}

.schedule_container {
  display: flex;
  gap: 6rem;
}

.schedule_img {
  width: 29.2rem;
  aspect-ratio: 1;
}

.schedule_item {
  border: 0.1rem solid #707070;
  padding: 2rem;
}

.schedule_item:not(:last-child) {
  margin-bottom: 3rem;
}

.schedule_title {
  color: #3A66CF;
  font-weight: bold;
  margin-bottom: 1rem;
}

.staff_container {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 1fr;
}

.staff_item {
  border: 0.1rem solid var(--orange);
  padding: 6rem 1.5rem 2rem;
  position: relative;
}

.staff_img {
  position: absolute;
  width: 7.3rem;
  aspect-ratio: 1;
  border-radius: 50%;
  height: auto;
  right: 1.5rem;
  top: 1.5rem;
  border: 0.2rem solid var(--lightOrange);
}

.staff_name {
  /* border-bottom: 1px dotted; */
  border-bottom: 1px dashed #000;
  margin-bottom: 1.6rem;
  display: inline-block;
}

.faq_item:not(:last-child) {
  margin-bottom: 3rem;
}

.faq_question {
  background-color: #F2EFEA;
  padding: 2rem 6rem 2rem 2rem;
  position: relative;
  /* line-height: 1; */
  display: flex;
}

.faq_question::before {
  content: 'Q';
  font-size: 2.5rem;
  margin-right: 2rem;
  line-height: 1;
}

.faq_question::after {
  content: '';
  font-size: 2.5rem;
  width: 2.1rem;
  height: 1.8rem;
  background-color: var(--orange);
  mask-image: url('../img/arrow.svg');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  display: block;
  background-size: contain;
  position: absolute;
  right: 2rem;
  top: 2.4rem;
  background-repeat: no-repeat;
  transition: all 0.5s ease-in-out;
  /* transform-origin: center center; */
}

.faq_question.is-open::after {
  transform: rotateX(180deg);
}

.faq_answer {
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease-in-out;
}

.faq_answer.is-open {
  height: auto;
}

.faq_answer_text {
  border: 1px solid #F2EFEA;
  display: flex;
  gap: 2rem;
  padding: 2rem;

}


.faq_answer_text::before {
  content: 'A';
  font-size: 2.5rem;
  /* margin-right: 2rem; */
  color: #E86835;
  font-weight: bold;
  padding-right: 0.1em;
  line-height: 1;
}

.service_contact_link {
  background-color: var(--darkOrange);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: right -30% top 120px;
  color: #fff;
  padding: 8rem;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  display: block;
  position: relative;
  overflow: hidden;
}

.service_contact_link::before {
  content: '';
  width: 29rem;
  aspect-ratio: 1;
  background-image: url(../img/logo_shape.svg);
  position: absolute;
  right: -12rem;
  bottom: -14rem;
  background-size: contain;
}

.service_contact_link:hover:before {
  animation: spin 6s linear infinite;
}

@media screen and (max-width: 699.98px) {

  .service_mv {
    .service_mv_title {
      bottom: 5rem;
      left: 1.5rem;
    }

    .service_title {
      font-size: 2.4rem;
    }
  }

  .main_section,
  .section_issues,
  .section_schedule,
  .section_staff,
  .section_faq {
    padding: 5rem 1.5rem;
  }

  .section_title {
    font-size: 2rem;
  }

  .issue_title {
    text-align: center;
  }

  .issues_wrapper {
    flex-direction: column;
    gap: 4rem;
  }

  .issue_item {
    /* width: 100%; */
    margin: auto;
  }

  .solution_wrapper {
    padding: 5rem 1.5rem;
  }

  .solution_item {
    flex-direction: column;
    padding: 1.5rem;
  }

  .solution_img {
    width: 100%;
  }

  .schedule_container {
    flex-direction: column;
  }

  .staff_container {
    grid-template-columns: 1fr;
  }

  .service_contact_link{
    padding: 8rem 2rem;
    font-size: 1.8rem;
    position: relative;
  }

  .service_contact_link::before {
    /* content: ''; */
    width: 21rem;
    /* aspect-ratio: 1; */
    /* background-image: url(../img/logo_shape.svg); */
    /* position: absolute; */
    right: -8rem;
    bottom: -13rem;
    /* background-size: contain; */
    /* z-index: 0; */
  }

  .service_contact_link:hover:before {
    animation: spin 6s linear infinite;
  }

}