/*===============================

	menu style

================================*/
.p-menu {
  background-image: url("/assets/images/menu/menu_bg.jpg");
  background-position: 50% 0;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-menu {
    background-image: url("/assets/images/menu/menu_bg_md.jpg");
  }
}

.p-menu__container {
  padding: 120px 20px 70px;
}
@media screen and (min-width: 768px) {
  .p-menu__container {
    max-width: 1340px;
    padding: 185px 6.25% 150px;
    margin: 0 auto;
  }
}

.p-menu__heading {
  font-weight: 400;
  color: #fff;
  text-align: center;
  letter-spacing: 0.06em;
}

.p-menu__heading .en {
  display: block;
  font-family: var(--font-cinzel);
  font-size: 34px;
  text-align: center;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-menu__heading .en {
    font-size: 40px;
  }
}

.p-menu__heading .ja {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-menu__heading .ja {
    margin-top: 8px;
    font-size: 18px;
  }
}

.p-menu__content {
  margin-top: 55px;
}
@media screen and (min-width: 768px) {
  .p-menu__content {
    margin-top: 80px;
  }
}

.p-menu__tab {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-menu__tab {
    width: 960px;
    max-width: 100%;
    margin: 0 auto;
  }
}

.p-menu__tab-list {
  display: flex;
  margin: 0 -5px;
}
@media screen and (min-width: 768px) {
  .p-menu__tab-list {
    margin: 0 -15px;
  }
}

.p-menu__tab-item {
  width: 33.3333333333%;
  height: 70px;
  padding: 0 5px;
}
@media screen and (min-width: 768px) {
  .p-menu__tab-item {
    padding: 0 15px;
  }
}

.p-menu__tab-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 15px;
  line-height: 1.3333;
  color: #fff;
  letter-spacing: 0.06em;
  border: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .p-menu__tab-button {
    font-size: 20px;
    transition: background-color 0.2s;
  }
}
.p-menu__tab-button.is-active, .p-menu__tab-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.p-menu__tab-content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-menu__tab-content {
    margin-top: 80px;
  }
}

.p-menu__item {
  height: 0;
  padding-top: 363px;
  margin-top: -363px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s;
}
@media screen and (min-width: 768px) {
  .p-menu__item {
    padding-top: 510px;
    margin-top: -510px;
  }
}
.p-menu__item.is-active {
  height: auto;
  overflow: visible;
  opacity: 1;
}

.p-menu__banner {
  display: block;
  padding: 35px 25px;
  margin-bottom: 50px;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-menu__banner {
    display: flex;
    align-items: center;
    padding: 40px 80px;
    margin-bottom: 80px;
  }
}
.p-menu__banner.-epilation {
  background-image: url("/assets/images/index/menu_epilation_banner.jpg");
}
@media screen and (min-width: 768px) {
  .p-menu__banner.-epilation {
    background-image: url("/assets/images/index/menu_epilation_banner_md.jpg");
  }
}
.p-menu__banner.-facial {
  background-image: url("/assets/images/index/menu_facial_banner.jpg");
}
@media screen and (min-width: 768px) {
  .p-menu__banner.-facial {
    background-image: url("/assets/images/index/menu_facial_banner_md.jpg");
  }
}
.p-menu__banner.-body {
  background-image: url("/assets/images/index/menu_body_banner.jpg");
}
@media screen and (min-width: 768px) {
  .p-menu__banner.-body {
    background-image: url("/assets/images/index/menu_body_banner_md.jpg");
  }
}

.p-menu__banner-icon {
  text-align: center;
}
.p-menu__banner-icon img {
  width: 104px;
}
@media screen and (min-width: 768px) {
  .p-menu__banner-icon img {
    width: 200px;
  }
}

.p-menu__banner-block {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-menu__banner-block {
    margin-top: 0;
    margin-left: 80px;
  }
}

.p-menu__banner-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-menu__banner-title {
    font-size: 30px;
  }
}

.p-menu__banner-text {
  margin-top: 15px;
  line-height: 1.9;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-menu__banner-text {
    font-size: 16px;
  }
}

.p-menu__item-inner {
  padding: 25px 25px 30px;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(16, 16, 16, 0.5);
}
@media screen and (min-width: 768px) {
  .p-menu__item-inner {
    padding: 50px;
  }
}
@media screen and (min-width: 1000px) {
  .p-menu__item-inner {
    display: flex;
    align-items: flex-start;
  }
}
.p-menu__item-inner:nth-child(n+2) {
  margin-top: 35px;
}
@media screen and (min-width: 768px) {
  .p-menu__item-inner:nth-child(n+2) {
    margin-top: 50px;
  }
}

.p-menu__img {
  padding: 20px;
  border: 1px solid rgba(16, 16, 16, 0.2);
}
@media screen and (min-width: 768px) {
  .p-menu__img {
    padding: 33px;
  }
}
@media screen and (min-width: 1000px) {
  .p-menu__img {
    width: calc(50% - 47px);
    margin-right: 47px;
  }
}

.p-menu__img img {
  width: 100%;
}

.p-menu__block {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .p-menu__block {
    margin-top: 35px;
  }
}
@media screen and (min-width: 1000px) {
  .p-menu__block {
    width: 50%;
    margin-top: 0;
  }
}

.p-menu__title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-menu__title {
    font-size: 30px;
  }
}

.p-menu__detail {
  margin-top: 25px;
}
@media screen and (min-width: 1000px) {
  .p-menu__detail {
    margin-top: 22px;
  }
}

@media screen and (min-width: 768px) {
  .p-menu__detail--adjust {
    margin-top: 28px;
  }
}

.p-menu__list {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .p-menu__list {
    font-size: 16px;
  }
}
@media screen and (min-width: 1000px) {
  .p-menu__list {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1000px) {
  .p-menu__list::before {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 2px;
    margin-top: 1px;
    content: "";
    background-image: url("/assets/images/menu/dots.svg");
    background-repeat: repeat-x;
    background-size: contain;
    transform: translateY(-50%);
  }
}
.p-menu__list:nth-child(n+2) {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-menu__list:nth-child(n+2) {
    margin-top: 5px;
  }
}

@media screen and (min-width: 1000px) {
  .p-menu__detail--adjust .p-menu__list:nth-child(n+2) {
    margin-top: 17px;
  }
}

.p-menu__list-title {
  line-height: 1.625;
}
@media screen and (min-width: 768px) {
  .p-menu__list-title {
    padding-right: 10px;
    background-color: #fff;
  }
}

.p-menu__price {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-menu__price {
    background-color: #fff;
  }
}
.p-menu__price::before {
  position: relative;
  width: 100%;
  height: 1.5px;
  margin-bottom: -4px;
  content: "";
  background-image: url("/assets/images/menu/dots.svg");
  background-repeat: repeat-x;
  background-size: contain;
}
@media screen and (min-width: 1000px) {
  .p-menu__price::before {
    content: none;
  }
}

.p-menu__price .group {
  flex-shrink: 0;
  margin-left: 13px;
}
@media screen and (min-width: 1000px) {
  .p-menu__price .group {
    flex-shrink: 1;
    margin-left: 13px;
  }
}

.p-menu__price .price {
  padding: 0 2px;
}

.p-menu__price .yen {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-menu__price .yen {
    font-size: 16px;
  }
}

.p-menu__price .number {
  margin-left: -3px;
  font-family: var(--font-cinzel);
  font-size: 20px;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-menu__price .number {
    font-size: 24px;
  }
}

.p-menu__price .tax {
  font-size: 11px;
}
@media screen and (min-width: 768px) {
  .p-menu__price .tax {
    font-size: 13px;
  }
}