@charset "UTF-8";
/* ::::::::::  Therapist　セラピスト紹介  :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* =========================================================
index
========================================================= */
.kvTitleArea {
  display: flex;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .kvTitleArea {
    display: block;
    max-width: 100%;
    padding: 0;
  }
}
.kvTitleArea .textBlock {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 46%;
  padding-left: calc((100% - 1250px) / 2);
}
@media (max-width: 1400px) {
  .kvTitleArea .textBlock {
    padding-left: 5vw;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .kvTitleArea .textBlock {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .kvTitleArea .textBlock {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    margin: auto;
    padding: 0 5%;
    color: #fff;
  }
  .kvTitleArea .textBlock .pageTitle {
    margin-bottom: 10px;
  }
  .kvTitleArea .textBlock .pageTitle .en {
    color: inherit;
  }
  .kvTitleArea .textBlock .secTitle02 {
    margin-top: 10px;
    font-size: 1.7rem;
  }
}
.kvTitleArea .textBlock .bg {
  position: absolute;
  top: 0;
  right: -50px;
  margin: auto;
  opacity: 0.7;
}

.kvSlide {
  display: grid; /* slideのmargin-bottom値を全て内包させる為 */
  animation: scroll-left 20s infinite linear 0.5s both;
  width: 100%;
  height: 100%;
}
.kvSlideWrap {
  position: relative;
  overflow: hidden; /* はみ出たスライドを隠す */
  aspect-ratio: 864/548;
  width: 54%;
}
@media (max-width: 767px) {
  .kvSlideWrap {
    aspect-ratio: 375/400;
    width: 100%;
    height: auto;
    margin: 0;
  }
}
.kvSlideWrap::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: auto;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 20%);
}
@media (max-width: 767px) {
  .kvSlideWrap::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  }
}
.kvSlide.paused {
  animation-play-state: paused;
}
.kvSlide .slideCell {
  height: auto;
}
.kvSlide .slideCell img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.kvSlide + .slick-dotsWrap {
  justify-content: flex-end;
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}
@media (max-width: 767px) {
  .kvSlide + .slick-dotsWrap {
    right: auto;
    left: 5%;
    bottom: 20%;
    z-index: 2;
  }
}
.kvSlide + .slick-dotsWrap .slick-pause {
  border-radius: 50%;
  border: 1px solid;
  color: #fff;
  width: 47px;
  height: 47px;
}
@media (max-width: 767px) {
  .kvSlide + .slick-dotsWrap .slick-pause {
    width: 30px;
    height: 30px;
  }
}
.kvSlide + .slick-dotsWrap .slick-pause svg {
  width: 12px;
  height: 17px;
}
@media (max-width: 767px) {
  .kvSlide + .slick-dotsWrap .slick-pause svg {
    width: 8px;
    height: 13px;
  }
}

@keyframes scroll-left {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
/* =========================================================
staff
========================================================= */
.staff .wrapper {
  padding-bottom: 0;
}
.staff .leadList {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .staff .leadList {
    margin-top: 30px;
  }
}
.staff .leadList .listItem {
  position: relative;
}
@media (max-width: 767px) {
  .staff .leadList .listItem + .listItem {
    margin-top: 30px;
  }
}
.staff .leadList .listItem::before, .staff .leadList .listItem::after {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
  color: #A72A2E;
}
.staff .leadList .listItem::before {
  content: "Point";
  top: 0;
  left: -5px;
  font-size: 3.5rem;
  font-family: "Cormorant Garamond", serif;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-feature-settings: initial;
}
@media (max-width: 767px) {
  .staff .leadList .listItem::before {
    font-size: 3rem;
  }
}
.staff .leadList .listItem::after {
  content: counter(li_count, decimal-leading-zero);
  top: 160px;
  left: 0;
  font-size: 7.2rem;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-weight: 600;
}
@media (max-width: 1400px) {
  .staff .leadList .listItem::after {
    top: 10.5vw;
    font-size: 5vw;
  }
}
@media (max-width: 767px) {
  .staff .leadList .listItem::after {
    top: 40vw;
    font-size: 6rem;
  }
}
.staff .leadList .listItem .photo {
  position: relative;
  width: calc(100% - 40px);
  margin-left: auto;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .staff .leadList .listItem .photo {
    width: calc(100% - 30px);
  }
}
.staff .leadList .listItem .photo img {
  aspect-ratio: 340/212;
}
.staff .leadList .listItem .secTitle07 {
  margin-bottom: 10px;
}

/* =========================================================
shop
========================================================= */
.shop .wrapper {
  padding-bottom: 0;
}
.shop .secTitle01 {
  margin-bottom: 20px;
}
.shop .bg {
  position: absolute;
  top: 0;
  right: -240px;
  z-index: -1;
  margin: auto;
  max-width: none;
}
.shopList {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .shopList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 25px;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .shopList .listItem + .listItem {
    margin-top: 0;
  }
}
.shopList .listItem .shopName {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .shopList .listItem .shopName {
    margin-top: 10px;
    gap: 5px;
    font-size: 1.5rem;
  }
}
.shopList .listItem .shopName .icon_place {
  fill: #A72A2E;
  width: 16px;
  height: 24px;
}
@media (max-width: 767px) {
  .shopList .listItem .shopName .icon_place {
    width: 13px;
    height: 19px;
  }
}

.areaModal .shopAreaTitle {
  border-bottom: 1px solid #BBBAB8;
  padding-bottom: 15px;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .areaModal .shopAreaTitle {
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}
.areaModal .shopAreaList {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .areaModal .shopAreaList {
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 54px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .areaModal .shopAreaList {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px 24px;
  }
}
@media (max-width: 767px) {
  .areaModal .shopAreaList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 24px;
    margin-top: 25px;
  }
}
.areaModal .shopAreaList img {
  border-radius: 5px;
  aspect-ratio: 174/133;
  object-fit: cover;
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.areaModal .shopAreaList .shopName {
  margin: 0;
}

/* =========================================================
recruit
========================================================= */
.recruit .recruitLink {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 406px;
  background: url(../img/staff/recruit_bg.jpg) center/cover;
  color: #fff;
  text-align: center;
}
.recruit .recruitLink .linkTitle {
  margin: 0 auto 10px;
  color: #fff;
  font-size: 1.9rem;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 767px) {
  .recruit .recruitLink .linkTitle {
    width: 88%;
  }
}
.recruit .recruitLink .linkTitle .en {
  display: block;
  font-size: 5rem;
  line-height: 1.1;
  letter-spacing: 0.06em;
}
.recruit .recruitLink .linkTitle .main {
  display: block;
  margin-top: 20px;
}
.recruit .recruitLink .arrowLine {
  width: 300px;
  margin-top: 30px;
  border-bottom-color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .recruit .recruitLink .arrowLine {
    width: 278px;
    margin: 30px auto 0;
  }
}
.recruit .recruitLink .arrowLine svg {
  fill: #fff;
}

/* =========================================================
各店舗ページ
========================================================= */
.staffList {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .staffList {
    margin-top: 50px;
  }
}
.staffList .listItem .photo {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .staffList .listItem .photo {
    margin-bottom: 15px;
  }
}
.staffList .listItem .photo img {
  aspect-ratio: 380/274;
  object-fit: cover;
}
.staffList .listItem .textBlock {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btnList:has(+ .staffList) {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .btnList:has(+ .staffList) {
    margin-top: 20px;
  }
}

.staffModal .modalContents .flex {
  align-items: flex-start;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .staffModal .modalContents .flex {
    margin-bottom: 20px;
  }
}
.staffModal .modalContents .flex .photo {
  width: 41%;
}
@media (max-width: 767px) {
  .staffModal .modalContents .flex .photo {
    width: 100%;
    margin-bottom: 20px;
  }
}
.staffModal .modalContents .flex .photo img {
  aspect-ratio: 451/318;
  object-fit: cover;
}
.staffModal .modalContents .flex .textBlock {
  width: 58%;
}
@media (max-width: 767px) {
  .staffModal .modalContents .flex .textBlock {
    width: 100%;
  }
}
.staffModal .modalContents .flex .textBlock .staffModalTitle {
  margin-top: -5px;
}
.staffModal .modalContents .flex .textBlock:only-child {
  width: 100%;
}
.staffModal .modalContents:not(:has(.faqList .listItem)) .flex {
  margin-bottom: 0;
}
.staffModal .modalContents .faqList {
  border-top: 1px solid #BBBAB8;
}
.staffModal .modalContents .faqList:not(:has(.listItem)) {
  border-top: none;
}
.staffModal .modalContents .faqList .listItem {
  counter-increment: li_count;
  border-bottom: 1px solid #BBBAB8;
  padding-block: 30px;
}
@media (max-width: 767px) {
  .staffModal .modalContents .faqList .listItem {
    padding-block: 20px;
  }
}
.staffModal .modalContents .faqList .listItem .title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 7px;
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-weight: 600;
}
.staffModal .modalContents .faqList .listItem .title::before {
  content: "Q" counter(li_count);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #A72A2E;
  width: 33px;
  height: 33px;
  padding-bottom: 3px;
  color: #fff;
  font-size: 1.4rem;
}/*# sourceMappingURL=staff_new.css.map */