@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
/* 数値計算関連の関数を使うために必要 (math.divなど)*/
body {
  color: #3C4A6E;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.show-pc {
  display: none;
}
@media screen and (min-width: 680px) {
  .show-pc {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 680px) {
  .show-sp {
    display: none;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}

/* マウスホバーがあるデバイスでのアニメーション（タッチデバイス除く） */
@media (any-hover: hover) {
  a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}
/* 数値計算関連の関数を使うために必要 (math.divなど)*/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 680px) {
  html {
    font-size: 1.4814814815vw;
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.inner {
  width: 100%;
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 680px) {
  .inner {
    max-width: 1130px;
    padding-inline: 2.5rem;
  }
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.beauty-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background-color: #F6EAEC;
}
@media screen and (min-width: 680px) {
  .beauty-header {
    left: auto;
    width: 42.5rem;
    right: 10.625rem;
  }
}

@media screen and (max-width: 679px) {
  .beauty-header,
  .header-nav {
    left: 0;
    right: 0;
    width: 100%;
  }
}
.beauty-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 0.75rem;
}

.beauty-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6875rem;
}

/* ロゴ */
.beauty-header__logo {
  width: 3.875rem;
  margin: 0;
}
.beauty-header__logo img {
  display: block;
  height: auto;
}

/* 中央のラベル */
.beauty-header__label {
  margin: 0;
  padding: 0.3125rem 0.625rem;
  border-radius: 999px;
  background-color: #3C4A6E;
  color: #FFF;
  font-family: "Zen Old Mincho", serif;
  font-size: 0.6875rem;
  line-height: 1.7272727273;
  letter-spacing: 0.022em;
  text-align: center;
  white-space: nowrap;
}

/* ======================
   ハンバーガー
====================== */
.beauty-header__toggle {
  position: relative;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: none;
  background-color: #3C4A6E;
  cursor: pointer;
  padding: 0;
}

/* 横線2本 */
.beauty-header__toggle-line {
  position: absolute;
  left: 50%;
  width: 1.25rem;
  height: 1px;
  background-color: #FFF;
  border-radius: 999px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: top 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: top 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.25s ease;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
}

.beauty-header__toggle-line:first-child {
  top: 45%;
}

.beauty-header__toggle-line:last-child {
  top: 55%;
}

.beauty-header__toggle.is-open .beauty-header__toggle-line:first-child {
  top: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.beauty-header__toggle.is-open .beauty-header__toggle-line:last-child {
  top: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

/* ======================
   SPナビ（ドロワー）
====================== */
.header-nav {
  position: fixed;
  inset-inline: 0;
  top: 5.0625rem;
  bottom: 0;
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (min-width: 680px) {
  .header-nav {
    left: auto;
    width: 42.5rem;
    right: 10.625rem;
  }
}

/* 開いたとき */
.header-nav.is-open {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 背景画像など */
.header-nav__bg {
  position: absolute;
  inset: 0;
  background-image: url("/images/bgPC@2x.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: -1;
}

/* 中身 */
.header-nav__body {
  position: relative;
  height: 100%;
  padding: 3.125rem 1.5rem 2.5rem;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1.875rem;
}

/* メニューリスト */
.header-nav__list {
  list-style: none;
  margin-inline: auto;
  padding: 0;
  width: 15rem;
  max-width: 15rem;
}

.header-nav__item {
  font-size: 0.9375rem;
  line-height: 2.0666666667;
  letter-spacing: 0.12em;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 0.9375rem;
}

/* ● のドット（擬似要素） */
.header-nav__item a {
  position: relative;
  display: inline-block;
  padding-left: 1rem;
  color: #3C4A6E;
  text-decoration: none;
}

.header-nav__item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #3C4A6E;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* ボタン群（電話 & LINE） */
.header-nav__actions {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  width: 12.5rem;
  max-width: 12.5rem;
  margin-inline: auto;
}

/* 電話ボタン */
.header-nav__btn {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  padding-block: 0.3125rem;
  text-decoration: none;
  font-family: "Zen Old Mincho", serif;
}

.header-nav__btn--tel {
  border: 1px solid #3C4A6E;
  background-color: #FFF;
  color: #3C4A6E;
}

.header-nav__btn-head {
  font-size: 0.6875rem;
  letter-spacing: 0.11em;
}

.header-nav__btn-text {
  font-size: 0.875rem;
  letter-spacing: 0.028em;
  position: relative;
}

.header-nav__btn-text::before {
  position: absolute;
  content: "";
  background-image: url(/images/icon_tel-dark.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0.375rem;
  left: -0.6875rem;
  width: 0.5rem;
  height: 0.625rem;
}

/* LINEボタン */
.header-nav__btn--line {
  color: #B98C93;
  border: 1px solid #B98C93;
  background-color: #FFF;
}

.header-nav__btn-main {
  font-size: 0.75rem;
  letter-spacing: 0.036em;
  padding-left: 1.25rem;
  position: relative;
}

.header-nav__btn-main::before {
  position: absolute;
  content: "";
  background-image: url(/images/icon_line-beige.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0.1875rem;
  left: 0.1875rem;
  width: 0.875rem;
  height: 0.875rem;
}

.header-nav__btn-sub {
  font-size: 0.5625rem;
  letter-spacing: 0.018em;
  margin-top: 0.1875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

#menu,
#skincare,
#info,
#price,
#access {
  scroll-margin-top: 6.25rem;
}

/* =========================
   フッター全体
========================= */
.beauty-footer {
  background-color: #FFF;
  padding: 2rem 0 1.5rem;
  margin-block: 7.5rem 2.75rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 680px) {
  .beauty-footer {
    width: 42.5rem;
    margin-left: auto;
    margin-right: 10.625rem;
  }
}

.beauty-footer::before {
  position: absolute;
  content: "";
  inset: 0;
  background-image: url(/images/footerSP@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 0;
}
@media screen and (min-width: 680px) {
  .beauty-footer::before {
    background-image: url(/images/footerPC@2x.png);
    top: 5.375rem;
  }
}

.beauty-footer__inner {
  text-align: center;
  padding-inline: 0;
  z-index: 100;
}
@media screen and (min-width: 680px) {
  .beauty-footer__inner {
    max-width: 100%;
    margin-inline: 0;
  }
}

/* ロゴ */
.beauty-footer__logo {
  width: 5rem;
  max-width: 5rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 680px) {
  .beauty-footer__logo {
    width: 6.625rem;
    max-width: 6.625rem;
  }
}

.beauty-footer__logo img {
  aspect-ratio: 208/168;
  height: auto;
}

/* =========================
   フッターナビ
========================= */
.footer-nav {
  margin-bottom: 1.5rem;
}

/* 2列グリッド */
.footer-nav__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #e9e9e9;
  border-left: 1px solid #e9e9e9;
}

/* 各マス */
.footer-nav__item {
  border-right: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  min-height: 3.375rem;
}

/* 空きマス（右下） */
.footer-nav__item--empty {
  pointer-events: none;
}
.footer-nav__item--empty .footer-nav__link {
  display: none;
}

/* テキスト & 矢印 */
.footer-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.8571428571;
  letter-spacing: 0.07em;
  color: #3C4A6E;
  text-decoration: none;
  position: relative;
}

/* 矢印（>）疑似要素で */
.footer-nav__link::after {
  position: absolute;
  content: "";
  background-image: url(/images/icon_arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.25rem;
  height: 0.375rem;
  top: 50%;
  right: 0.75rem;
}

/* =========================
   コピーライト
========================= */
.beauty-footer__copy {
  margin: 0;
  font-size: 0.75rem;
  line-height: 2.1666666667;
  color: #3C4A6E;
}

@media screen and (min-width: 680px) {
  .beauty-footer {
    padding: 9.0625rem 0 2rem;
    background-color: #FFF;
    margin-block: 0;
  }
  .beauty-footer__inner {
    max-width: 42.5rem;
    margin-inline: auto;
  }
}
/* SP,PC共通 */
.beauty-main {
  width: 100%;
  max-width: 42.5rem;
  margin-inline: auto;
}

@media screen and (min-width: 680px) {
  .beauty-main {
    position: relative;
    min-height: 100vh;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    overflow: visible;
  }
  .beauty-main::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url(/images/bgPC@2x.jpg) center/cover no-repeat;
    z-index: -1;
  }
  .beauty-main__contents {
    position: relative;
    width: 42.5rem;
    top: 0;
    margin-left: auto;
    margin-right: 10.625rem;
    background: #fff;
    -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.18);
            box-shadow: 0 10px 10px rgba(0, 0, 0, 0.18);
  }
  .beauty-main__nav {
    display: none;
    position: fixed;
    left: 8%;
    top: 50%;
    translate: 0 -50%;
    padding-inline: 2.875rem 4.375rem;
    z-index: 10;
  }
}
@media screen and (min-width: 680px) and (min-width: 1200px) {
  .beauty-main__nav {
    display: block;
  }
}
@media screen and (min-width: 680px) {
  .beauty-main__nav-list {
    margin: 0 0 2.5625rem;
    color: #3C4A6E;
    padding-left: 0.9375rem;
  }
  .beauty-main__nav-item {
    position: relative;
  }
  .beauty-main__nav-item::before {
    position: absolute;
    content: "●";
    color: #3C4A6E;
    font-family: "Zen Old Mincho", serif;
    font-size: 0.375rem;
    top: 0.75rem;
    left: -0.875rem;
  }
  .beauty-main__nav-list li + li {
    margin-top: 1.5rem;
  }
  .beauty-main__nav-list a {
    color: #3C4A6E;
    font-family: "Zen Old Mincho", serif;
    font-size: 0.9375rem;
    line-height: 2.0666666667;
    letter-spacing: 0.12em;
    text-decoration: none;
  }
  .beauty-main__nav-contact {
    margin-top: 24px;
    font-size: 1.3rem;
  }
  .beauty-main__nav-tel {
    display: inline-block;
    margin-top: 4px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #333;
    text-decoration: none;
  }
}
.beauty-access {
  padding-bottom: 2.5rem;
  background-color: #FFF;
}

.beauty-access__label,
.beauty-access__title {
  text-align: center;
}

.beauty-access__map {
  margin-top: 1.5rem;
}
@media screen and (min-width: 680px) {
  .beauty-access__map {
    margin-top: 1.25rem;
    margin-inline: auto;
  }
}

.beauty-access__map iframe {
  width: 100%;
  height: 15.625rem;
}
@media screen and (min-width: 680px) {
  .beauty-access__map iframe {
    height: 16.875rem;
    max-height: 16.875rem;
  }
}

.beauty-access__info {
  font-size: 0.875rem;
  line-height: 1.5714285714;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 680px) {
  .beauty-access__info {
    font-size: 1rem;
    line-height: 1.5625;
    letter-spacing: 0.08em;
  }
}

.beauty-accordion {
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 100;
}

.beauty-accordion__head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.5rem 1rem;
  background-color: #FFF;
  color: #B98C93;
  cursor: pointer;
  text-align: left;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.3846153846;
  letter-spacing: 0.065em;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #B98C93;
  border-radius: 999px;
}

.beauty-accordion__head::after {
  position: absolute;
  content: "";
  background-image: url(/images/icon_arrow-up--beige.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.4375rem;
  height: 0.25rem;
  translate: 0 -50%;
  top: 50%;
  right: 1.5rem;
  rotate: 180deg;
  -webkit-transition: rotate 0.3s ease;
  transition: rotate 0.3s ease;
}
@media screen and (min-width: 680px) {
  .beauty-accordion__head::after {
    width: 0.625rem;
    height: 0.4375rem;
  }
}

.beauty-accordion.is-open .beauty-accordion__head::after {
  rotate: 0deg;
}

.beauty-accordion__title {
  margin: 0;
}

.beauty-accordion__body {
  display: none;
  margin-top: 1.125rem;
}

.beauty-accordion__text {
  font-size: 0.875rem;
  line-height: 1.6428571429;
  letter-spacing: 0.07em;
  color: #3C4A6E;
}

.beauty-accordion__image {
  margin-block: 1rem;
  margin-inline: auto;
  text-align: center;
  width: 12.5rem;
  max-width: 15.625rem;
}
.beauty-accordion__image img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 680px) {
  .beauty-accordion__image {
    width: 18.75rem;
    max-width: 21.875rem;
  }
}

.beauty-accordion__image--adjust {
  width: 6.25rem;
  max-width: 9.375rem;
}
@media screen and (min-width: 680px) {
  .beauty-accordion__image--adjust {
    width: 9.375rem;
    max-width: 9.375rem;
  }
}

@media screen and (min-width: 680px) {
  .beauty-accordion__body {
    display: none;
    margin-top: 1.125rem;
  }
  .beauty-accordion__body {
    display: none;
    display: none;
  }
  .beauty-accordion__text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .beauty-accordion__image {
    margin-top: 0;
    max-width: 13.75rem;
  }
}
@media screen and (min-width: 680px) and (min-width: 680px) {
  .beauty-accordion__image {
    margin-top: 1rem;
  }
}
.beauty-accordion__list {
  margin: 1rem 0 0;
}

.beauty-accordion__item {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #3C4A6E;
  padding-left: 1.125rem;
  position: relative;
}

.beauty-accordion__item::before {
  position: absolute;
  content: "●";
  top: 0;
  left: 0;
  color: #3C4A6E;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 680px) {
  .beauty-accordion__item::before {
    top: 0.125rem;
  }
}

.beauty-accordion__note {
  margin-top: 1rem;
}

.beauty-contact {
  padding-block: 2.5rem 12.8125rem;
  background-color: #F6EAEC;
  position: relative;
}
@media screen and (min-width: 680px) {
  .beauty-contact {
    padding-block: 2.25rem 14.375rem;
  }
}

.beauty-contact__label {
  padding-left: 1.875rem;
}

.beauty-contact__title {
  padding-left: 1.875rem;
  line-height: 1.4545454545;
}

.beauty-contact__content {
  width: 22.1875rem;
  max-width: 31.25rem;
  position: absolute;
  right: 0;
  z-index: 10;
  margin-top: 1.5rem;
  background-color: #FFF;
  border-radius: 73px 0 0 0;
  padding-block: 2.6875rem 1rem;
  padding-inline: 1.9375rem 0.875rem;
}
@media screen and (min-width: 680px) {
  .beauty-contact__content {
    width: 37.75rem;
    max-width: 37.75rem;
    margin-top: 2.1875rem;
    padding-inline: 3.75rem 2.625rem;
    padding-block: 2.0625rem 2.5rem;
  }
}

.beauty-contact__desc {
  font-size: 0.875rem;
  line-height: 1.8571428571;
  letter-spacing: 0.01em;
  padding-bottom: 1.5rem;
}

.beauty-contact__item {
  width: 18.125rem;
}
@media screen and (min-width: 680px) {
  .beauty-contact__item {
    width: 31.375rem;
    max-width: 31.375rem;
  }
}

.beauty-contact__item--tel {
  margin-top: 1rem;
  position: relative;
}

.beauty-contact__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #3C4A6E;
  text-decoration: none;
}

/* 右端の丸ボタン（→） */
.beauty-contact__btn {
  width: 2.25rem;
  height: 1.375rem;
  background-image: url(/images/icon_arrow-circle.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.beauty-contact__btn--tel {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-bottom: 0.4375rem;
}

.beauty-contact__heading {
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.16em;
}

.beauty-contact__heading--line {
  letter-spacing: 0.048em;
  padding-left: 1.625rem;
  position: relative;
}

.beauty-contact__heading--line::before {
  position: absolute;
  content: "";
  background-image: url(/images/icon_line-dark.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.4375rem;
  height: 1.375rem;
  top: 0.375rem;
  left: 0;
}
.beauty-contact__text--tel {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.25rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
  padding-left: 1.0625rem;
  position: relative;
}

.beauty-contact__text--tel::before {
  position: absolute;
  content: "";
  background-image: url(/images/icon_tel-dark.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.8125rem;
  height: 1rem;
  translate: 0 -50%;
  top: 50%;
  left: 0;
}
.beauty-contact__item--line {
  margin-top: 1.9375rem;
  position: relative;
}

.beauty-contact__text--line {
  font-size: 0.875rem;
  line-height: 1.8571428571;
  letter-spacing: 0.03em;
  margin-top: 0.3125rem;
}

.beauty-contact__item--tel::before,
.beauty-contact__item--tel::after,
.beauty-contact__item--line::after {
  position: absolute;
  content: "";
  width: 18.125rem;
  height: 1px;
  background-color: #F6EAEC;
  left: 0;
}
@media screen and (min-width: 680px) {
  .beauty-contact__item--tel::before,
  .beauty-contact__item--tel::after,
  .beauty-contact__item--line::after {
    width: 31.375rem;
    max-width: 31.375rem;
  }
}

.beauty-contact__item--tel::before {
  top: -1rem;
}

.beauty-contact__item--tel::after,
.beauty-contact__item--line::after {
  bottom: -1rem;
}

.beauty-fv {
  background-color: #F6EAEC;
  position: relative;
}

.beauty-fv__inner {
  position: relative;
  padding-block: 5.625rem 10rem;
}
@media screen and (min-width: 680px) {
  .beauty-fv__inner {
    padding-block: 6.9375rem 9.875rem;
  }
}

.beauty-fv__inner::before {
  position: absolute;
  content: "";
  background-image: url(/images/catch-en@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 13.1875rem;
  height: 10.25rem;
  bottom: 3rem;
  left: 1.25rem;
}
@media screen and (min-width: 680px) {
  .beauty-fv__inner::before {
    width: 15.75rem;
    height: 12.25rem;
    bottom: 0;
  }
}

.beauty-fv__image {
  padding-left: 2.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 680px) {
  .beauty-fv__image {
    padding-left: 7.1875rem;
  }
}

.beauty-fv__image img {
  width: 100%;
  aspect-ratio: 664/760;
}
@media screen and (min-width: 680px) {
  .beauty-fv__image img {
    aspect-ratio: 1130/760;
  }
}

.beauty-fv__catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.3125rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: absolute;
  top: 9.375rem;
  left: 0.9375rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.75rem;
  line-height: 1.1428571429;
  letter-spacing: 0.168em;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width: 680px) {
  .beauty-fv__catch {
    top: 11.25rem;
    left: 2.5rem;
    gap: 0.4375rem;
  }
}

.beauty-fv__catch-line {
  display: inline-block;
  background-color: #FFF;
  border-radius: 2px;
}
@media screen and (min-width: 680px) {
  .beauty-fv__catch-line {
    padding: 0.125rem 1rem;
  }
}

.beauty-fv__catch-line--right {
  padding: 0.625rem 0.5rem;
}

.beauty-fv__catch-line--left {
  padding: 0.625rem 0.5rem 0.0625rem;
  margin-top: 2.375rem;
}

.beauty-fv__scroll {
  /*描画位置*/
  z-index: 100;
  position: absolute;
  bottom: 3.75rem;
  left: 53%;
  /*全体の高さ*/
  height: 100px;
}
@media screen and (min-width: 680px) {
  .beauty-fv__scroll {
    left: 28%;
    height: 140px;
    bottom: 0;
  }
}

/*Scrollテキストの描写*/
.beauty-fv__scroll-text {
  /*描画位置*/
  position: absolute;
  left: 9.5625rem;
  top: 0;
  /*テキストの形状*/
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  line-height: 1.3125;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  color: #3C4A6E;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

/* 線の描写 */
.beauty-fv__scroll::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  left: 9.75rem;
  /*線の形状*/
  width: 1px;
  height: 200px;
  background: #3C4A6E;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
          animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
@media screen and (min-width: 680px) {
  .beauty-fv__scroll::after {
    background: #3C4A6E;
    height: 180px;
  }
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 30%;
    opacity: 0;
  }
  30% {
    height: 50%;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100%;
    opacity: 0;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 30%;
    opacity: 0;
  }
  30% {
    height: 50%;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100%;
    opacity: 0;
  }
}
.beauty-info {
  padding-block: 4.5rem 3.5rem;
  background-color: #FFF;
}

.beauty-info__label,
.beauty-info__title {
  text-align: center;
}

.beauty-info__lead {
  padding: 1.5rem 1.625rem 2rem;
  font-size: 0.875rem;
  line-height: 2.1428571429;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 680px) {
  .beauty-info__lead {
    text-align: center;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.08em;
  }
}

.beauty-info__calendar {
  padding-bottom: 1.625rem;
}

.beauty-info__calendar-figure {
  width: 20.9375rem;
  max-width: 25rem;
  margin-inline: auto;
}
@media screen and (min-width: 680px) {
  .beauty-info__calendar-figure {
    width: 27.5rem;
    max-width: 27.5rem;
  }
}

.beauty-info__calendar-figure img {
  aspect-ratio: 335/340;
  width: 100%;
}

.beauty-pickup__gradation {
  background-color: #FFF;
  padding-top: 6.0625rem;
  margin-top: 9.375rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 680px) {
  .beauty-pickup__gradation {
    padding-top: 10.625rem;
  }
}

.beauty-pickup__gradation::before {
  position: absolute;
  content: "";
  inset: 0;
  background-image: url(/images/beauty-menuSP@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: 0;
  height: 50.75rem;
}
@media screen and (min-width: 680px) {
  .beauty-pickup__gradation::before {
    background-image: url(/images/beauty-menuPC@2x.png);
  }
}

.beauty-pickup__inner {
  position: relative;
  z-index: 1;
}

.beauty-pickup__label,
.beauty-pickup__title {
  text-align: center;
}

.beauty-pickup__slider {
  margin-top: 2.5rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
}
@media screen and (min-width: 680px) {
  .beauty-pickup__slider {
    padding-inline: 0.625rem 0;
    width: 100%;
    margin-inline: auto;
  }
}

/* ドットの位置 */
.beauty-pickup-slider .splide__pagination {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.375rem;
}

/* ドットの見た目 */
.beauty-pickup-slider .splide__pagination__page {
  all: unset;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  border: 1px solid #FFF;
  background-color: #FFF;
}

/* アクティブなドット */
.beauty-pickup-slider .splide__pagination__page.is-active {
  border: 1px solid #3C4A6E;
  background-color: #3C4A6E;
  opacity: 1;
}

.beauty-pickup__accordion {
  margin-top: 2rem;
  padding-inline: 1.25rem;
  background-color: #FFF;
  z-index: 10;
}
@media screen and (min-width: 680px) {
  .beauty-pickup__accordion {
    padding-bottom: 0.625rem;
    padding-inline: 2.5rem;
  }
}

.beauty-pickup__sub-title {
  text-align: center;
  padding-block: 1.25rem 2rem;
  z-index: 100;
  position: relative;
}

.beauty-price {
  padding-block: 2.1875rem 3.5rem;
  background-color: white;
}
@media screen and (min-width: 680px) {
  .beauty-price {
    padding-block: 2.25rem 4rem;
  }
}

.beauty-price__label,
.beauty-price__title {
  text-align: center;
}

.beauty-price__title {
  margin-bottom: 2rem;
}

.beauty-skincare {
  background-color: #FFF;
}

.beauty-skincare__label,
.beauty-skincare__title {
  text-align: center;
}

.beauty-skincare__lead {
  padding: 1.5rem 1.625rem 0;
  font-size: 0.875rem;
  line-height: 1.8571428571;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 680px) {
  .beauty-skincare__lead {
    text-align: center;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.037em;
  }
}

/* スキンケアのスライダー全体（左右フル幅にしたい場合） */
.skincare-slider-wrap {
  margin-top: 2rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
}
@media screen and (min-width: 680px) and (min-width: 680px) {
  .skincare-slider-wrap {
    padding-inline: 0;
    width: 100%;
    margin-inline: auto;
    overflow: hidden;
  }
}

/* li 1枚ぶんを中央寄せ */
.skincare-slider__item.splide__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* カード本体 */
.skincare-card {
  width: 19.125rem;
  max-width: 19.125rem;
  height: 23.3125rem;
  padding: 1.5rem 1.25rem 1.25rem;
  background-color: #FFF;
  border-radius: 50px 0 50px 0;
  -webkit-box-shadow: 0px 0px 12px #EEDCDF;
          box-shadow: 0px 0px 12px #EEDCDF;
  position: relative;
}

.skincare-card__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: center;
  color: #B98C93;
  padding-bottom: 0.75rem;
  position: relative;
}

.skincare-card__title::after {
  position: absolute;
  content: "";
  width: 15.875rem;
  height: 1px;
  background-color: #F6EAEC;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}

/* 箇条書き */
.skincare-card__list {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.125rem;
}

.skincare-card__item {
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  letter-spacing: 0.03em;
  padding-left: 1.375rem;
  position: relative;
}
@media screen and (min-width: 680px) {
  .skincare-card__item {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

/* チェックアイコン（美容メニュー案内と同じテイスト） */
.skincare-card__item::before {
  position: absolute;
  content: "";
  background-image: url(/images/icon_check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1rem;
  height: 1rem;
  top: 0.375rem;
  left: 0;
}

/* 画像 */
.skincare-card__image {
  margin-top: 1.25rem;
  text-align: center;
}
.skincare-card__image img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.skincare-card__image--caudiskin {
  width: 11.8125rem;
  margin-inline: auto;
  margin-top: 0.625rem;
}

.skincare-card__image--caudiskin img {
  aspect-ratio: 379/284;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.skincare-card__image--cligram {
  width: 7.5rem;
  margin-inline: auto;
  margin-top: 0.625rem;
}
@media screen and (min-width: 680px) {
  .skincare-card__image--cligram {
    width: 8.25rem;
    margin-top: 0.9375rem;
  }
}

.skincare-card__image--cligram img {
  aspect-ratio: 280/210;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.skincare-card__image--mdear {
  width: 7.5rem;
  margin-inline: auto;
  margin-top: -0.625rem;
}
@media screen and (min-width: 680px) {
  .skincare-card__image--mdear {
    margin-top: 0;
  }
}

.skincare-card__image--mdear img {
  aspect-ratio: 341/255;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ドット（●○○）の位置・デザイン */
.skincare-slider .splide__pagination {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.375rem;
}

.skincare-slider .splide__pagination__page {
  all: unset;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  border: 1px solid #DEDEDE;
  background-color: #DEDEDE;
  cursor: pointer;
}

.skincare-slider .splide__pagination__page.is-active {
  border-color: #3C4A6E;
  background-color: #3C4A6E;
}

/* スキンケアのスライダーのときだけ上書き */
.skincare-slider .splide__track {
  overflow-x: hidden;
  overflow-y: visible;
  padding-block: 0.5rem;
  margin-inline: 0 -1.875rem;
}
@media screen and (min-width: 680px) {
  .skincare-slider .splide__track {
    margin-inline: 1.1875rem -4.1875rem;
  }
}

.beauty-slow {
  padding-block: 4.1875rem 5.875rem;
  position: relative;
  background-color: #FFF;
}
@media screen and (min-width: 680px) {
  .beauty-slow {
    padding-block: 3.5rem 3rem;
  }
}

.beauty-slow::before {
  position: absolute;
  content: "";
  background-image: url(/images/slow_bg@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 13.875rem;
  height: 8.5rem;
  bottom: 2.5rem;
  right: 0.8125rem;
  z-index: 1;
  opacity: 0.8;
}
@media screen and (min-width: 680px) {
  .beauty-slow::before {
    z-index: 1;
    right: 0;
  }
}

.beauty-slow__label {
  color: #B98C93;
}

.beauty-slow__title {
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.128em;
  margin-top: 1.125rem;
  position: relative;
}
@media screen and (min-width: 680px) {
  .beauty-slow__title {
    font-size: 1.375rem;
    line-height: 1.4090909091;
    letter-spacing: 0.176em;
  }
}

.beauty-slow__text {
  font-size: 0.875rem;
  line-height: 1.625;
  letter-spacing: 0.03em;
  margin-top: 1.5625rem;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 680px) {
  .beauty-slow__text {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.08em;
  }
}

.beauty-pickup-slider__item.splide__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pickup-card {
  background: #FFF;
  padding: 1.5625rem 1.5625rem 0;
  max-width: 19.125rem;
  width: 100%;
  height: 20.8125rem;
  position: relative;
  border-radius: 50px 0 50px 0;
}
@media screen and (min-width: 680px) {
  .pickup-card {
    width: 19.125rem;
  }
}

.pickup-card__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: #B98C93;
  text-align: center;
  padding-bottom: 0.75rem;
  position: relative;
}

.pickup-card__title::after {
  position: absolute;
  content: "";
  width: 15.875rem;
  height: 1px;
  background-color: #F6EAEC;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}

.pickup-card__list {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.125rem;
}

.pickup-card__item {
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  letter-spacing: 0.03em;
  padding-left: 1.375rem;
  position: relative;
}

.pickup-card__item::before {
  position: absolute;
  content: "";
  background-image: url(/images/icon_check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1rem;
  height: 1rem;
  top: 0.375rem;
  left: 0;
}

.pickup-card__image--pico {
  width: 5.75rem;
  margin-inline: auto;
  margin-top: 0;
}

.pickup-card__image--pico img {
  aspect-ratio: 188/252;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.pickup-card__image--blue {
  width: 7.5rem;
  margin-inline: auto;
}

.pickup-card__image--blue img {
  aspect-ratio: 278/230;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* アコーディオン全体 */
.price-accordion {
  border: 1px solid #3C4A6E;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  background-color: #FFF;
  margin-bottom: 1rem;
}

.price-accordion.is-open {
  border-radius: 10px;
}

/* ヘッダー部分 */
.price-accordion__head {
  width: 100%;
  background-color: #3C4A6E;
  color: #FFF;
  font-size: 1.125rem;
  line-height: 2.1111111111;
  letter-spacing: 0.18em;
  text-align: center;
  padding: 0.75rem 0.5rem;
  cursor: pointer;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  position: relative;
}

.price-accordion__head::after {
  position: absolute;
  content: "";
  background-image: url(/images/icon_arrow-up--white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.875rem;
  height: 0.5rem;
  translate: 0 -50%;
  top: 50%;
  right: 1.5rem;
  rotate: 180deg;
  -webkit-transition: rotate 0.3s ease;
  transition: rotate 0.3s ease;
}
@media screen and (min-width: 680px) {
  .price-accordion__head::after {
    width: 0.625rem;
    height: 0.4375rem;
  }
}

.price-accordion.is-open .price-accordion__head::after {
  rotate: 0deg;
}

.price-accordion__description {
  background-color: #3C4A6E;
  padding: 0 1.25rem 0.625rem;
  margin-inline: -1.875rem;
  margin-block: -2.125rem 0.625rem;
  overflow: hidden;
}

.price-accordion__description-bg {
  padding: 1rem 1rem 1.125rem;
  background-color: #FFF;
  border-radius: 10px 10px 0 0;
  color: #3C4A6E;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.price-accordion__description-ex {
  padding-left: 1.875rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.price-accordion__description-ex::before {
  position: absolute;
  content: "例：";
  top: 0;
  left: 0;
  color: #3C4A6E;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

/* タイトル */
.price-accordion__title {
  font-weight: 300;
  margin: 0;
}

/* ▼アイコン （矢印） */
.price-accordion__icon {
  width: 0.875rem;
  height: 0.875rem;
  position: relative;
}
.price-accordion__icon::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-mask-image: url("/images/icon_arrow.svg");
          mask-image: url("/images/icon_arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #FFF;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/* 開閉している状態 */
.price-accordion.is-open .price-accordion__icon::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* ==========================
   アコーディオンの中身
========================== */
.price-accordion__body {
  display: none;
  background-color: #FCF5F7;
  padding: 2rem 1.25rem;
}

.price-list {
  margin: 0;
}

.price-list__heading {
  margin-block: 1.5rem 0.375rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4375;
  letter-spacing: 0.08em;
}

/* 行 */
.price-list__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.9375rem 0;
  border-bottom: 1px solid #F6EAEC;
}

/* 左側：名称 */
.price-list__name {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #3C4A6E;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* 右側：金額 */
.price-list__price {
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #3C4A6E;
  margin: 0;
  min-width: 5rem;
  text-align: right;
  white-space: nowrap;
}

.price-accordion__note {
  display: none;
  font-size: 0.6875rem;
  line-height: 2.0909090909;
  letter-spacing: 0.022em;
  margin-block: -0.5rem 1rem;
}

.price-accordion.is-open + .price-accordion__note {
  display: block !important;
}

.section-label {
  font-family: "Allura", serif;
  color: #68B7CB;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  letter-spacing: 0.09em;
}

.section-label--beige {
  color: #B98C93;
}

.section-title {
  font-family: "Zen Old Mincho", serif;
  color: #3C4A6E;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.7272727273;
  letter-spacing: 0.044em;
  margin-top: 0.375rem;
}

.section-title--large {
  font-size: 1.625rem;
  line-height: 1.4615384615;
  letter-spacing: 0.052em;
}

.section-title--small {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.9375;
  letter-spacing: 0.128em;
}

/* フローティングバナー*/
.floating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: fixed;
  gap: 0.03125rem;
  bottom: 0;
  z-index: 9999;
  width: 100%;
}
@media screen and (min-width: 680px) {
  .floating {
    display: none;
  }
}

.floating__link {
  display: block;
  text-align: center;
  height: 2.75rem;
  border-radius: 5px 5px 0 0;
  color: #FFF;
  font-family: "Zen Old Mincho", serif;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 680px) {
  .floating__link {
    display: none;
  }
}

.floating__link--tel {
  border: 1px solid #3C4A6E;
  background-color: #3C4A6E;
  width: 50%;
}

.floating__link--tel {
  border: 1px solid #3C4A6E;
  background-color: #3C4A6E;
}

.floating__link-head--tel {
  font-size: 0.6875rem;
  letter-spacing: 0.11em;
}

.floating__link-body--tel {
  font-size: 0.875rem;
  letter-spacing: 0.028em;
  position: relative;
}

.floating__link-body--tel::before {
  position: absolute;
  content: "";
  background-image: url(/images/icon_tel-light.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.5rem;
  height: 0.625rem;
  top: 0.375rem;
  left: -0.6875rem;
}

.floating__link--line {
  border: 1px solid #B98C93;
  background-color: #B98C93;
  width: 50%;
}

.floating__link-head--line {
  font-size: 0.75rem;
  letter-spacing: 0.036em;
  padding-left: 1.1875rem;
  position: relative;
}

.floating__link-head--line::before {
  position: absolute;
  content: "";
  background-image: url(/images/icon_line-light.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.75rem;
  height: 0.6875rem;
  top: 0.25rem;
  left: 0.125rem;
}

.floating__link-body--line {
  font-size: 0.5625rem;
  letter-spacing: 0.018em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: 0.125rem;
}

/*  PC版のみ電話番号の自動リンクを無効にする */
@media screen and (min-width: 780px) {
  .header-nav__btn--tel,
  .beauty-contact__link,
  .floating__link--tel {
    pointer-events: none !important;
  }
}
/*# sourceMappingURL=beauty.css.map */