@charset "UTF-8";
/*
index
-----------------------------------------------------*/
/*
i-functions
-----------------------------------------------------*/
/*
i-setting
-----------------------------------------------------*/
/*
i-mixin
-----------------------------------------------------*/
/* ------------------------- 使い方 ----------------------------------------------------------

    @include sizing(width, wide, 365px, sp, 276px);
    ==> width: clamp(276px, 7.46vw + 248px, 365px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を上限下限をつけて設定）

    @include sizing(width, wide, 365px, sp, 276px, noClamp);
    ==> width: calc(7.46vw + 248px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を設定）

    @include sizingRem(font-size, wide, 14px, sp, 12px);
    ==> font-size: clamp(0.75rem, 0.17vw + 0.70625rem, 0.875rem;
    （ビューポートがwide(1568px)のとき14px, sp(375px)のとき12pxになる自動補完値をremに変換して設定）
　　
    ※使いたいsassファイル上で@useしてください。
    ※scssファイル上での読みやすさ重視のため、mixinの引数に単位[px]が必要な仕様にしてあります。

// ---------------------------------------------------------------------------------------- */
/*
salon
-----------------------------------------------------*/
.p-salon-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 0;
}
@media screen and (min-width: 1080px) {
  .p-salon-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.p-salon-flex .-L {
  width: 100%;
}
.p-salon-flex .-L img {
  width: 100%;
  height: auto;
}
.p-salon-flex .-R {
  width: 100%;
}
.p-salon-flex .-R h2 {
  font-size: clamp(20px, 0.15vw + 19.6px, 22px);
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  font-weight: 600;
}
.p-salon-flex .-R h2:before {
  content: "01";
  display: block;
  line-height: 1;
  font-size: 16px;
  font-family: "Bellefair", serif;
  color: #C34A4A;
  position: absolute;
  left: 0;
  top: 0.5rem;
}
.p-salon-flex .-R h2.-n02:before {
  content: "02";
}
.p-salon-flex .-R h2.-n03:before {
  content: "03";
}
@media screen and (min-width: 1080px) {
  .p-salon-flex {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
  .p-salon-flex .-L {
    width: 43%;
  }
  .p-salon-flex .-R {
    width: 50%;
  }
}
.p-salon-flex.-room {
  margin-top: 3rem;
}
@media screen and (min-width: 1080px) {
  .p-salon-flex.-room {
    margin-top: 120px;
  }
}
.p-salon-flex.-room + .p-salon-flex.-room {
  margin-top: 146px;
}