.menu__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.menu__tab-item {
  color: #31AFA4;
  background-color: #E5F7F6;
  width: 25%;
  max-width: 300px;
  text-align: center;
  margin: 0px 10px;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 600;
  padding: 7px 0;
  border-radius: 20px 20px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.3;
}
.menu__tab-item.is-active {
  background-color: #31AFA4;
  color: #fff;
}
.menu__box-wrap {
  position: relative;
  display: none;
}
.menu__box-wrap.is-active {
  display: block;
}
.menu__box {
  border: solid 3px #31AFA4;
  border-radius: 20px;
  padding: 20px;
  gap: 30px;
  height: 100%;
  overflow: hidden;
}
.menu__box-img {
  max-width: 330px;
}
.menu__box-unit {
  border: solid 2px #31AFA4;
  border-radius: 15px;
  padding: 12px;
}
.menu__box-service .price {
  border-top: solid 1px #31AFA4;
  padding-top: 10px;
  margin-top: 10px;
  text-align: center;
}
.menu__box-service .price dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4rem;
  gap: 10px;
  margin-bottom: 20px;
}
.menu__box-service .price dl:last-of-type {
  margin-bottom: 0;
}
.menu__box-flow li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
.menu__box-flow li:last-of-type {
  margin-bottom: 0;
}
.menu__box-flow li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 18px;
  height: 18px;
  background-color: #31AFA4;
  border-radius: 50%;
  color: #fff;
  line-height: 1;
  margin-right: 5px;
}
.menu__box-heading {
  color: #31AFA4;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .menu__tab-item {
    width: 29%;
    max-width: 300px;
    margin: 0px 5px;
    font-size: 1.4rem;
    border-radius: 10px 10px 0 0;
  }
  .menu__box {
    border-radius: 10px;
  }
  .menu__box-img {
    width: 70%;
    margin: 0 auto 20px;
  }
  .menu__box-service {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .menu__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu__box-img {
    width: 30%;
  }
  .menu__box-service {
    width: 31%;
  }
  .menu__box-flow {
    width: 39%;
  }
}