@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]が必要な仕様にしてあります。

// ---------------------------------------------------------------------------------------- */
/*
menu
-----------------------------------------------------*/
body#trial.-index .c-breadcrumb .-body,
body#trial.-index .c-breadcrumb .-facial,
body#trial.-index .c-breadcrumb .-depilation {
  display: none;
}

body#trial.-body .c-breadcrumb .-index,
body#trial.-body .c-breadcrumb .-facial,
body#trial.-body .c-breadcrumb .-depilation {
  display: none;
}

body#trial.-facial .c-breadcrumb .-index,
body#trial.-facial .c-breadcrumb .-body,
body#trial.-facial .c-breadcrumb .-depilation {
  display: none;
}

body#trial.-depilation .c-breadcrumb .-index,
body#trial.-depilation .c-breadcrumb .-body,
body#trial.-depilation .c-breadcrumb .-facial {
  display: none;
}

.p-trial-Photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-trial-Photo img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1080px) {
  .p-trial-Photo img {
    width: 50%;
  }
}
.p-trial-precautions {
  background: #F2EFE8;
  padding: 1rem;
  font-size: clamp(14px, 0vw + 14px, 14px);
}
@media screen and (min-width: 1080px) {
  .p-trial-precautions {
    border-radius: 10px;
    padding: 1.6rem;
  }
}
@media screen and (min-width: 1080px) {
  .p-trial-precautions ul {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
  .p-trial-precautions ul li {
    width: 92%;
  }
}
.p-trial-precautions p {
  line-height: 1.6;
}
.p-trial-precautions p br {
  display: block;
}
@media screen and (min-width: 1080px) {
  .p-trial-precautions p br {
    display: none;
  }
}
.p-trial-precautions p + p {
  margin-top: 0.5rem;
}
.p-trial-precautions p + ul {
  margin-top: 1rem;
}
.p-trial-fee {
  margin-top: 2rem;
}
.p-trial-fee div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #BBB0AB;
}
.p-trial-fee div dt {
  background: rgba(147, 72, 73, 0.1);
  padding: 1.2rem;
  line-height: 1.6;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(16px, 0vw + 16px, 16px);
}
@media screen and (min-width: 1080px) {
  .p-trial-fee div dt {
    padding: 1.4rem;
    width: 50%;
  }
}
.p-trial-fee div dt span {
  font-size: clamp(14px, 0vw + 14px, 14px);
}
.p-trial-fee div dd {
  padding: 1.4rem;
  padding-left: 0;
  padding-right: 0;
  text-align: right;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(16px, 0vw + 16px, 16px);
}
@media screen and (min-width: 1080px) {
  .p-trial-fee div dd {
    padding: 1.4rem;
    width: 50%;
  }
}
.p-trial-acceptance {
  background: #F2EFE8;
  padding: 1.2rem;
  font-size: 14px;
  line-height: 2;
}
.p-trial-acceptance.-scroll {
  height: 40dvh;
  overflow-y: scroll;
}
@media screen and (min-width: 1080px) {
  .p-trial-acceptance.-scroll {
    height: auto;
    overflow: unset;
  }
}
/*# sourceMappingURL=trial.css.map */