.page-service {
  overflow: hidden;
}

.service {
  margin-top: min(100px, 8vw);
}
@media screen and (max-width: 767px) {
  .service {
    margin-top: 64px;
  }
}
.service + .service {
  margin-top: min(64px, 5.12vw);
}
@media screen and (max-width: 767px) {
  .service + .service {
    margin-top: 30px;
  }
}
.service:last-of-type {
  margin-bottom: min(120px, 9.6vw);
}
@media screen and (max-width: 767px) {
  .service:last-of-type {
    margin-bottom: 54px;
  }
}

.service__box {
  padding: min(80px, 5.12vw) min(64px, 5.12vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: min(20px, 1.6vw);
  gap: min(60px, 4.8vw);
}
@media screen and (max-width: 767px) {
  .service__box {
    padding: 40px 20px;
    border-radius: 20px;
    gap: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.service:nth-of-type(2n+1) .service__box {
  background: #49D9D2;
}

.service:nth-of-type(2n) .service__box {
  background: #EE86A2;
}

.service__img {
  max-width: min(533px, 42.64vw);
}
@media screen and (max-width: 767px) {
  .service__img {
    max-width: 100%;
  }
}
.service__img img {
  border-radius: min(10px, 0.8vw);
}
@media screen and (max-width: 767px) {
  .service__img img {
    border-radius: 10px;
  }
}

.service__content {
  max-width: min(480px, 38.4vw);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .service__content {
    max-width: 100%;
  }
}
.service__content .section-title__jp {
  font-size: min(40px, 3.2vw);
}
@media screen and (max-width: 767px) {
  .service__content .section-title__jp {
    font-size: 30px;
  }
}

.service__emphasis {
  margin-top: min(20px, 1.6vw);
  font-size: min(32px, 2.56vw);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .service__emphasis {
    margin-top: 16px;
    font-size: 24px;
  }
}

.service__text {
  margin-top: min(16px, 1.28vw);
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .service__text {
    margin-top: 16px;
  }
}