/*===============================================
service
================================================*/

.service-page-wrapper > .container {
  max-width: 1170px;
}
.service-page-list {
  color: var(--text-black-light);
}
.service-page-list__item {
  display: flex;
  gap: 50px;
  padding-bottom: 60px;
}
.service-page-list__item:last-child {
  padding-bottom: 0;
}
.service-page-list__item-image {
  max-width: 445px;
  max-height: 280px;
  width: 100%;
  height: 100%;
  aspect-ratio: 445 / 280;
  margin: 0 auto;
}
.heading-3 {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 4.32rem;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
}
.service-page-list__item-description {
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 2.7rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .service-page-wrapper > .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .service-page-list__item {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 40px;
  }
  .service-page-list__item-image {
    aspect-ratio: 345 / 217.3;
  }
  .heading-3 {
    text-align: center;
    font-size: 1.8rem;
    line-height: 2.16rem;
    padding-bottom: 15px;
  }
  .service-page-list__item-description {
    font-size: 1.4rem;
    line-height: 2.52rem;
  }
}
/*===============================================
TOP service
================================================*/
.service .container {
  max-width: 1300px;
  padding-top: 40px;
}
.service .section-title-wrapper {
  text-align: center;
}
.service-list {
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  gap: 30px;
  justify-content: center;
  color: var(--text-black-light);
}
.service-list__item {
  max-width: 350px;
  width: 100%;
}
.service-list__item-image {
  max-width: 350px;
  width: 100%;
  height: auto;
  aspect-ratio: 350 / 220;
  vertical-align: bottom;
  margin-bottom: 15px;
}
.service-list__item-name {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2.16rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding-bottom: 15px;
}
.service-list__item-description {
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 2.7rem;
  letter-spacing: 0.05em;
}
.btn-service {
  margin-left: 42%;
}
@media screen and (max-width: 1023px) {
  .service-list {
    flex-direction: column;
    gap: 32px;
    padding-top: 15px;
    padding-bottom: 40px;
  }
  .service-list__item {
    max-width: 500px;
    margin: 0 auto;
  }
  .service-list__item-image {
    max-width: 500px;
  }
  .btn-service {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .service .container {
    padding-top: 44px;
  }
  .service-list {
    padding-bottom: 26px;
  }
  .service-list__item {
    max-width: 350px;
  }
  .service-list__item-image {
    max-width: 345px;
    aspect-ratio: 345 / 216.27;
  }
  .service-list__item-name {
    padding-bottom: 10px;
  }
  .service-list__item-description {
    font-size: 1.4rem;
    line-height: 2.5rem;
    padding: 0 5px;
  }
  .btn-service {
    margin: 0 auto;
  }
}
