@charset "UTF-8";
/**************************************************
* ページ: SERVICE
**************************************************/
.service {
  overflow: hidden;
}

.service__header {
  background: url(../img/hedaer_service.webp) no-repeat center center/cover;
}

.service__container {
  padding: min(120px, 6.25vw) 0 min(300px, 15.625vw);
}

.service__section {
  padding: 4% 5.8%;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.service__section::before {
  content: "";
  position: absolute;
  top: 160px;
  left: -50vw;
  width: min(100vw, (100vw - 1920px) / 2 + 1920px);
  height: 600px;
  background: #FFF3E8;
  border-radius: 0 300px 300px 0;
  z-index: -1;
}
.service__section:nth-child(n+2) {
  margin-top: min(200px, 10.4166666667vw);
}
.service__section:nth-child(2n)::before {
  left: unset;
  right: -50vw;
  border-radius: 300px 0 0 300px;
}
@media (max-width: 767px) {
  .service__section {
    display: block;
    padding: 30px 20px;
  }
}

.service__content {
  width: 60%;
  margin-top: 4%;
}
@media (max-width: 767px) {
  .service__content {
    width: 100%;
  }
}

.service__title {
  font-size: clamp(2rem, 1.4583333333vw, 28px);
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 1.25em;
}
.service__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/img_title.webp) no-repeat center center/contain;
  width: 1.5em;
  aspect-ratio: 150/150;
}
.service__title span {
  position: relative;
}
@media (max-width: 767px) {
  .service__title {
    font-size: 2.4rem;
  }
}

.service__heading {
  margin-top: 50px;
  font-size: clamp(1.6rem, 1.0416666667vw, 20px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .service__heading {
    font-size: 1.8rem;
  }
}

.service__description {
  margin-top: 20px;
  font-size: clamp(1.2rem, 0.8333333333vw, 16px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.075em;
}
@media (max-width: 767px) {
  .service__description {
    font-size: 1.4rem;
  }
}

.service__tags {
  margin-top: 1.56em;
  font-size: min(1.6rem, 0.8333333333vw);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #FD790E;
  width: calc(100% + 1em);
}
@media screen and (max-width: 999px) {
  .service__tags {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .service__tags {
    font-size: 1.2rem;
  }
}

.service__tag {
  display: inline-block;
  border: 1px solid #FD790E;
  border-radius: 0 20px 20px 0;
  padding: 0.3em 2em 0.3em 1.25em;
  margin: 0.9em 0.75em 0 0;
}

.service__tag-text {
  display: block;
  margin-top: 15px;
}

.service__image {
  width: 35%;
}
@media (max-width: 767px) {
  .service__image {
    width: 100%;
    margin-top: 30px;
  }
}
/*# sourceMappingURL=service.css.map */