/* mainvisual
----------------------------------------------------- */
.mainvisual.for-health {
  background-image: url("../images/img-health_mv.png");
}

/* about
----------------------------------------------------- */
.about {
  background: var(--colorLightGray);
  padding: calc(8px * 7) 0 0;
}

.aboutBox {
  align-items: center;
  column-gap: calc(8px * 14);
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.aboutBox__text {
  line-height: 1.8;
	font-size: var(--fontSize16);
  max-width: 568px;
  width: 100%;
}

.aboutBox__img img {
  height: auto;
  max-width: 484px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .about {
    padding: calc(8px * 4) 0 0;
  }

  .aboutBox {
    flex-wrap: wrap;
    row-gap: calc(8px * 4);
  }

  .aboutBox__text {
    max-width: 100%;
  }

  .aboutBox__img img {
    max-width: 100%;
  }
}

/* service
----------------------------------------------------- */
.service {
  padding: calc(8px * 10) 0 calc(8px * 17);
}

.serviceHead__list {
  column-gap: calc(8px * 7);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.serviceHead__listBox {
  background: #fff;
  height: 200px;
  padding: 0 calc(8px * 3);
  position: relative;
}

.serviceHead__listBox::after {
  border: 0;
  border-bottom: solid 2px var(--colorBase);
  border-right: solid 2px var(--colorBase);
  bottom: calc(8px * 3);
  content: "";
  height: 10px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  transform: rotate(45deg);
  width: 10px;
}

.serviceHead__listBox--title {
  color: var(--colorBase);
  font-size: var(--fontSize18);
  font-weight: bold;
  padding-top: calc(8px * 6);
  text-align: center;
}

.serviceHead__listBox--title span {
  margin-right: calc(8px * 2);
  position: relative;
  top: -3px;
}

.serviceHead__listBox--title span img {
  height: 25px;
  width: auto;
}

.serviceHead__listBox--text {
  color: var(--colorBase);
  line-height: 1.8;
  padding-top: calc(8px * 2);
}

.serviceBody {
  padding-top: calc(8px * 9);
  position: relative;
}

.serviceBody::before {
  background: rgba(237, 255, 130, .1);
  border-radius: 60px;
  content: "";
  filter: blur(40px);
  height: 370px;
  left: -200px;
  position: absolute;
  top: 100px;
  width: 580px;
  z-index: -100;
}

.serviceBody__head {
  align-items: center;
  background: #fff;
  column-gap: calc(8px * 23);
  display: flex;
  height: 200px;
  justify-content: center;
}

.serviceBody__head--title {
  font-size: var(--fontSize22);
  font-weight: bold;
}

.serviceBody__head--title span {
  margin-right: calc(8px * 2);
  position: relative;
  top: -3px;
}

.serviceBody__head--title span img {
  height: 25px;
  width: auto;
}

.serviceBody__head--text {
  line-height: 1.8;
  max-width: 530px;
  width: 100%;
}

/* .serviceBody__head--text.is-red {
    color: #f00;
} */

.serviceBody__item {
  padding-top: calc(8px * 9);
}

.serviceBody__itemHead {
  align-items: center;
  background: var(--colorGray);
  display: grid;
  font-weight: bold;
  grid-template-columns: auto 890px;
  padding: calc(8px * 1) 0;
}

.serviceBody__itemHead--col3 {
  grid-template-columns: 350px auto 158px;
}

.serviceBody__itemHead--title {
  text-align: center;
}

.serviceBody__itemHead--text {
  text-align: center;
}

.serviceBody__itemHead--text span {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
}

.serviceBody__itemContent {
  border-bottom: 1px solid #ccc;
  display: grid;
  grid-template-columns: auto 890px;
}

.serviceBody__itemContent--col3 {
  grid-template-columns: 350px auto 158px;
}

.serviceBody__itemContent--title {
  font-weight: 500;
  padding: calc(8px * 3) 0;
  text-align: center;
}

.serviceBody__itemContentNotes {
  border-left: 1px solid #ccc;
  line-height: 1.8;
  padding: calc(8px * 3);
}

.serviceBody__itemContentNotes--text {
  line-height: 1.8;
}

.serviceBody__itemContentNotes--list {
  background: rgba(237, 255, 130, .1);
  font-size: 14px;
  margin-top: calc(8px * 3);
  padding: calc(8px * 3);
}

.serviceBody__itemContent--text {
  border-left: 1px solid #ccc;
  line-height: 1.8;
  padding: calc(8px * 3) 0;
  padding-left: calc(8px * 3);
}

.serviceBody__itemContent--text.is-center {
  padding-left: 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .service {
    padding: calc(8px * 6) 0 calc(8px * 10);
  }

  .serviceHead__list {
    grid-template-columns: 100%;
    row-gap: calc(8px * 3);
  }

  .serviceHead__listBox {
    height: 150px;
    padding: 0 calc(8px * 2);
  }

  .serviceHead__listBox::after {
    bottom: calc(8px * 2);
    height: 8px;
    width: 8px;
  }

  .serviceHead__listBox--title {
    padding-top: calc(8px * 4);
  }

  .serviceHead__listBox--title span {
    margin-right: calc(8px * 1);
    top: -3px;
  }

  .serviceHead__listBox--title span img {
    height: 20px;
    width: auto;
  }

  .serviceBody {
    padding-top: calc(8px * 6);
  }

  .serviceBody::before {
    border-radius: 40px;
    filter: blur(20px);
    height: 180px;
    left: -20px;
    top: 200px;
    width: 300px;
  }

  .serviceBody__head {
    flex-direction: column;
    flex-wrap: wrap;
    height: 220px;
    padding: 0 calc(8px * 3);
    row-gap: calc(8px * 2);
  }

  .serviceBody__head--title span {
    margin-right: calc(8px * 2);
    position: relative;
    top: -3px;
  }

  .serviceBody__head--title span img {
    height: 20px;
  }

  .serviceBody__head--text {
    max-width: 100%;
  }

  .serviceBody__item {
    overflow-x: auto;
    padding-top: calc(8px * 5);
  }

  .serviceBody__itemHead {
    display: inline-grid;
    grid-template-columns: 167px 600px;
    padding: calc(8px * 1) 0;
  }

  .serviceBody__itemHead--col3 {
    grid-template-columns: 150px 450px 157px;
  }

  .serviceBody__itemContent {
    display: inline-grid;
    grid-template-columns: 167px 600px;
  }

  .serviceBody__itemContent--col3 {
    grid-template-columns: 150px 450px 157px;
  }
}
