.sub__heading {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sub__heading .en {
  color: var(--light-green);
  font-size: clamp(1.5rem, 1.409rem + 0.45vw, 1.75rem);
  font-weight: 400;
  letter-spacing: .05em;
}
.sub__heading .jp {
  font-family: var(--jp-mincho);
}
.sub__heading .dot {
  background-color: var(--light-green);
}
.sub__title {
  width: min(80%, 1280px);
  margin: 4rem auto 0;
}
.sub__title--jp {
  margin-top: 1.5rem;
  line-height: 1.5;
  font-family: var(--jp-mincho);
  font-size: clamp(2rem, 1.792rem + 1.04vw, 2.625rem);
}
.photo__bgslide {
  display: flex;
  overflow: hidden;
  margin-top: 4rem;
}
.photo__bgslide__item {
  display: flex;
  animation: photoSlider 40s infinite linear 0.5s both;
}
.photo__bgslide__item__box {
  width: clamp(12.5rem, 5.682rem + 34.09vw, 31.25rem);
  margin-left: 1.25rem;
}
.photo__bgslide__item .image {
  border-radius: 10px;
  aspect-ratio: 1 / 1;
}
@keyframes photoSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*—————————————————————————————————
page-mv
—————————————————————————————————*/
.page-mv {
  display: flex;
  flex-direction: column-reverse;
}
.page-mv_image {
  width: 90%;
  align-self: end;
}
.page__heading {
  padding-left: 10%;
}
.page__heading .en {
  font-size: clamp(4rem, 2.833rem + 5.83vw, 7.5rem);
}
@media screen and (min-width: 786px) {
  .page-mv {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
  .page-mv_image {
    width: 100%;
    max-width: 33vw;
  }
  .page__heading {
    margin-right: auto;
  }
}
.salon-detail__inner {
  width: min(80%, 1280px);
}
.salon-detail-text {
  margin-top: 2rem;
}
.salon-detail__cont {
  margin-top: 2rem;
}
.salon-detail__desc,
.salon-detail__desc_access {
  width: min(80%, 1280px);
  margin: auto;
}
/* .salon-detail_photo {
  aspect-ratio: 4 / 3;
} */
.salon-detail_photo .image {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
}
.salon-detail__desc_title {
  padding-top: 1rem;
  color: var(--light-green);
}
.salon-detail__desc_text {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-green);
}
.salon-detail__desc_text:first-of-type {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
}
.salon-detail__desc_text {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-green);
}
.salon-detail__desc_text .icon {
  display: inline-block;
  width: 2rem;
  object-fit: cover;
}
.swiper-pagination-bullet-active {
  background: var(--green);
}
.swiper-pagination {
  position: static;
}
.salon-detail__video {
  width: min(80%, 1000px);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  padding-top: 2rem;
}
/* .salon-detail__video__wrap {
  position: relative;
  width: 50%;
}
.video-thumbnail {
  cursor: pointer;
  transition: transform 0.3s;
}
.video-thumbnail:hover {
  transform: scale(1.01);
}
.video-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.video-popup {
  position: relative;
  width: 80%;
  max-width: 800px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}
.video-popup video {
  width: 100%;
  height: auto;
}
.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 100;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: 2rem;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: .75rem;
}
.play-button::before {
  content: '\25B6';
  display: block;
} */
@media screen and (min-width: 786px) {
  .salon-detail__cont {
    width: min(80%, 1280px);
    margin: 2rem auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .salon-detail_photo {
    width: 50%;
    border-radius: 10px;
    overflow: hidden;
  }
  .salon-detail_photo .image {
    border-radius: 10px;
  }
  .salon-detail__desc {
    width: 50%;
  }
  .salon-detail__video {
    gap: 1rem;
  }
  /* .play-button {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  } */
}