@charset "UTF-8";
/*
* 参考
* https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
* 数値から単位を取り除く
* 参考
* https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
* px→remの計算
* 参考
* https://webdou.net/sass-rem/
* Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
* vwの計算
* 参考
* https://webdou.net/sass-vw/
* Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
  body {
    padding-top: 100px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans Japanese", "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}
.md-none {
  display: block !important;
}

.md-show {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .md-show {
    display: block !important;
  }
  .md-show.md-show1 {
    display: inline-block;
  }
  .md-none {
    display: none !important;
  }
}
.xl-show {
  display: none;
}

@media screen and (max-width: 1220px) {
  .xl-show {
    display: block;
  }
  .xl-none {
    display: none;
  }
}
.inner {
  max-width: 65.625rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 1.25rem 0px;
    max-width: 37.5rem;
  }
}

.layout-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.text-bk {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .text-bk {
    font-size: 0.875rem;
    line-height: 1.429;
  }
}

.section-title {
  font-size: 2.625rem;
  line-height: 1.2;
  max-width: 20rem;
  background-color: #f4bcc5;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  padding: 3.125rem 5.625rem 6.25rem 5.625rem;
  border-radius: 0 0 200px 200px;
  font-family: "Noto Sans Japanese";
  font-weight: 300;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .section-title {
    max-width: 15rem;
    padding: 1.875rem 1.875rem 4.375rem 2.5rem;
    font-size: 2rem;
    line-height: 1.25;
  }
}

.section-title.section-title--wh {
  background-color: #fff;
  color: #f4bcc5;
}

.section-title.section-title--pink {
  background-color: transparent;
  padding: 9.375rem 5.625rem 3.125rem 5.625rem;
  color: #f59090;

  font-size: 2.5rem;
  font-weight: bold;
  font-family: "Noto Sans JP";
}
@media screen and (max-width: 767px) {
  .section-title.section-title--pink {
    padding: 3.125rem 1.875rem 0rem 2.5rem;
  }
}

.section-title.section-title--pk6 {
  background-color: #f59090;
}

.section-title-main {
  font-size: 2rem;
  color: #f59090;
  font-weight: 300;
  text-align: center;
  text-align: center;
  font-size: 2.5rem;
  color: #f59090;
  font-weight: bold;
  font-family: "Noto Sans JP";
}

.c-concept-title {
  letter-spacing: 0.08em;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -200%);
}

.section-title-main.facia-concept.text-m {
  font-size: 2.5rem;
  position: relative;
  transform: unset;
  left: 0;
}
@media screen and (max-width: 767px) {
  .section-title-main.facia-concept.text-m {
    font-size: 1.375rem;
    text-align: center;
  }
  .c-concept-title {
    transform: translate(-50%, -666%);
  }
  .c-concept-title.bust-concept {
    transform: translate(-50%, -220%);
  }
  .c-concept-title.hair {
    transform: translate(-50%, -648%);
    font-size: 1.6rem;
  }
}

footer {
  color: #fff;
  background-color: #fb6b6d;
}

.c-footer__inner {
  max-width: 76.25rem;
  padding: 6.25rem 2.5rem 6.25rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .c-footer__inner {
    padding: 1.25rem 2.5rem 1.25rem;
  }
}

.c-footer__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .c-footer__list {
    flex-wrap: wrap;
    align-items: center;
  }
  .c-footer__listItem {
    width: 48%; /* 2カラムにするために幅を調整 */
    text-align: left;
    margin: 0.5rem 1%; /* 左右の余白を追加 */
  }
  .c-footer__listItem a {
    display: block;
    width: 100%;
    padding: 0 0.5rem;
    color: #fff;
    text-decoration: none;
  }
  .c-footer__listItem a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}
.c-btn {
  padding: 0.875rem 6.25rem 0.875rem 1.875rem;
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 3px solid #ffffff;
  border-radius: 3.125rem;
  background-color: #f4bcc5;
  color: #fff;
  position: relative;
  box-shadow: inset -2px -2px 5px 0px rgba(0, 0, 0, 0.48),
    -4px -4px 10px rgba(255, 255, 255, 0.65);
}

.c-btn-l {
  padding: 1.25rem 7.8125rem 1.25rem 3.4375rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .c-btn-l {
    padding: 0.875rem 6.25rem 0.875rem 1.875rem;
    font-size: 0.9375rem;
  }
}

.c-btn::before {
  position: absolute;
  right: 13%;
  bottom: 48%;
  width: 20%;
  height: 1px;
  background-color: #fff;
  content: "";
}

.c-btn.c-btn--pink::before,
.c-btn.c-btn--pink::after {
  background-color: #f59090;
}

.c-btn::after {
  position: absolute;
  right: 13%;
  bottom: 50%;
  width: 1px;
  height: 12px;
  background-color: #fff;
  content: "";
  -webkit-transform: rotate(-43deg);
  transform: rotate(-43deg);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

.c-btn.c-btn--pink {
  color: #f59090;
  background-color: #ffdcdc;
}

.c-concept {
  margin-bottom: 6.25rem;
  margin-top: 15rem;
}
.c-concept.facial {
  margin-bottom: 6.25rem;
  margin-top: 23rem;
}
@media screen and (max-width: 767px) {
  .c-concept {
    margin-bottom: 3.125rem;
    margin-top: 10rem;
  }
  .c-concept.bust {
    margin-bottom: 3.125rem;
    margin-top: 17rem;
  }
  .c-concept.facial {
    margin-bottom: 6.25rem;
    margin-top: 13rem;
  }
  .c-concept.facial.facial {
    margin-top: 18rem;
  }
  .c-faq-q.q-4 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

.c-concept-rap {
  margin-top: 6.25rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .c-concept-rap {
    flex-direction: column;
    margin-top: 3.125rem;
    gap: 0;
  }
}

.c-concept-rap img {
  max-width: 23.125rem;
}
@media screen and (max-width: 767px) {
  .c-concept-rap img {
    max-width: 100%;
  }
}

.c-concept-rap.c-concept-rap2 img {
  max-width: 35%;
}
@media screen and (max-width: 767px) {
  .c-concept-rap.c-concept-rap2 img {
    max-width: 100%;
  }
}

.c-concept-text-rap {
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-concept-text-rap {
    margin-left: 0rem;
  }
}

@media screen and (max-width: 767px) {
  .c-concept-text-rap h3 {
    margin-top: 1.875rem;
  }
}

.c-concept-text-rap p {
  margin-top: 1.75rem;
  font-size: 2rem;
  line-height: 2.2;
  color: #683835;
  font-weight: 700;
  font-family: "Noto Sans JP";
}

@media screen and (max-width: 767px) {
  .c-concept-text-rap p {
    color: #683835;
    font-weight: 500;
    font-family: "Noto Sans JP";
    padding-top: 0.5rem;
    font-size: 1.25rem;
    margin-top: 0;
    line-height: 1.6;
  }
}

.c-concept-text-rap a {
  margin-top: 1.875rem; /* ボタンの上にスペースを追加 */
  margin-left: 30%;
  align-self: center; /* ボタンを中央揃え */
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-concept-text-rap a {
    margin-left: 15%;
  }
}

.c-concept-text-rap .c-btn-img img {
  max-width: 70%;
  padding-left: 25%;
}
@media screen and (max-width: 767px) {
  .c-concept-text-rap .c-btn-img img {
    max-width: 80%;
    padding-left: 18%;
  }
}

.worries.facial {
  background: #fffbf8;
  position: relative;
}

.worries.facial::after {
  content: ""; /* 擬似要素にはcontentプロパティが必須 */
  display: block; /* 画像のように扱うためにblockレベル要素に */
  width: 90px;
  height: 32px;
  background-image: url("../images/common/worries-arrow.png"); /* 追加したい画像のパス */
  background-size: cover; /* 画像を要素に合わせて調整 */
  position: absolute; /* 親要素に対して絶対位置指定 */
  bottom: -2%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .worries.facial::after {
    bottom: -0.8%;
    width: 70px;
    height: 25px;
  }
}

.worries__inner.mb {
  padding-top: 6.25rem;
  padding-bottom: 8.125rem;
}
@media screen and (max-width: 767px) {
  .worries__inner.mb {
    padding-top: 0;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
    padding-bottom: 3.125rem;
  }
}

.worries__list {
  margin-top: 6.25rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .worries__list {
    flex-direction: column;
    margin-top: 3.125rem;
    align-items: center;
  }
}

.worries-list__item {
  max-width: calc(33.333% - 1.875rem * 2 / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .worries-list__item {
    max-width: 85%;
  }
}

@media screen and (max-width: 767px) {
  .worries-list__item:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.worries-list__item-text {
  display: inline-block;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .worries-list__item-text {
    margin-top: 1.25rem;
    font-size: 1.5rem;
  }
}

.c-reason {
  background-color: #fffbf8;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .c-reason {
    padding-top: 3.125rem;
  }
}

.c-reason.c-reason--pink {
  background-image: url(../images/common/c-reason-bg.png);
}

.c-reason-items {
  margin-top: 3.125rem;
}

.c-reason-item {
  display: flex;
  align-items: center;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .c-reason-item {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .c-reason-item:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.c-reason-item:nth-of-type(even) {
  flex-direction: row-reverse;
}

.c-reason-item img {
  max-width: 50%;
}
@media screen and (max-width: 767px) {
  .c-reason-item img {
    max-width: 95%;
  }
}

@media screen and (max-width: 767px) {
  .reason-img2 {
    margin-left: auto;
  }
}

.c-reason-text-rap {
  max-width: 32%;
  margin-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-reason-text-rap {
    max-width: 100%;
    margin-left: 0rem;
    padding: 0 1.25rem;
  }
}

.c-reason-text-rap.c-reason-text-rap2 {
  margin-right: 2.5rem;
  margin-left: 0rem;
}
@media screen and (max-width: 767px) {
  .c-reason-text-rap.c-reason-text-rap2 {
    max-width: 100%;
    margin-left: 0rem;
    margin-right: 1.25rem;
    padding: 0 1.25rem;
  }
}

.c-reason-text-rap h4 {
  font-size: 1.625rem;
  font-weight: 300;
  color: #f59090;
  font-size: 2.2rem;
  font-weight: bold;
  font-family: "Noto Sans JP";
}
@media screen and (max-width: 767px) {
  .c-reason-text-rap h4 {
    margin-top: 3.25rem;
    font-size: 1.5rem;
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .c-reason-text-rap.p-facia h4 {
    text-align: center;
  }
}

.c-reason-text-rap p {
  margin-top: 1.875rem;
  font-size: 1.45rem;
  line-height: 2;
  color: #683835;
  font-weight: bold;
  font-family: "Noto Sans JP";
}
@media screen and (max-width: 767px) {
  .c-reason-text-rap p {
    margin-top: 0.625rem;
    font-size: 1rem;
    color: #683835;
    font-weight: bold;
    font-family: "Noto Sans JP";
  }
}

.c-service {
  background-image: url(../images/common/c-service-bg.png);
  background-size: cover; /* 画像を要素に合わせて調整 */
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 767px) {
  .c-service {
    padding-bottom: 6.25rem;
  }
}

.c-service-inner {
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .c-service-inner {
    padding-bottom: 3.125rem;
  }
}

.c-service-items {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .c-service-items {
    margin-top: 3.125rem;
  }
}

.c-service-item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-service-item {
    flex-direction: column;
    margin-top: 3.125rem;
  }
}

.c-service-item:not(:first-child) {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .c-service-item:not(:first-child) {
    margin-top: 5rem;
  }
}

.c-service-item:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .c-service-item:nth-of-type(even) {
    flex-direction: column;
  }
}

.c-service-item img {
  max-width: 47%;
}
@media screen and (max-width: 767px) {
  .c-service-item img {
    max-width: 90%;
  }
}

.c-service-item .c-btn-img img {
  max-width: 70%;
  padding-left: 25%;
}
@media screen and (max-width: 767px) {
  .c-service-item .c-btn-img img {
    max-width: 80%;
    padding-left: 18%;
  }
}

.c-service-item .c-btn-img.c-btn-hair2 img {
  max-width: 75%;
  padding-left: 25%;
}
@media screen and (max-width: 767px) {
  .c-service-item .c-btn-img.c-btn-hair2 img {
    max-width: 80%;
    padding-left: 18%;
  }
}

.c-service-item .c-btn-img.c-btn-hair3 img {
  max-width: 72%;
  padding-left: 25%;
}
@media screen and (max-width: 767px) {
  .c-service-item .c-btn-img.c-btn-hair3 img {
    max-width: 80%;
    padding-left: 18%;
  }
}

.c-service-text-rap {
  margin-left: 1.125rem;
}
@media screen and (max-width: 767px) {
  .c-service-text-rap {
    margin-left: 0rem;
    margin-top: 1.25rem;
  }
}

.c-service-text-rap.even {
  margin-left: 0rem;
}
@media screen and (max-width: 767px) {
  .c-service-text-rap.even {
    margin-left: 0rem;
    margin-top: 1.25rem;
  }
}

.c-service-text-rap p {
  margin-top: 1.875rem;
}
.c-service-text-rap a {
  margin-top: 1.875rem;
  margin-left: 30%;
}
@media screen and (max-width: 767px) {
  .c-service-text-rap a {
    margin-left: 15%;
  }
}

.c-service-img2 {
  margin-left: 1.125rem;
}
@media screen and (max-width: 767px) {
  .c-service-img2 {
    margin-left: 0rem;
  }
}

.c-service-img1,
.c-service-img2,
.c-service-img3 {
  position: relative;
}

.c-service-img1::before {
  content: ""; /* 擬似要素の内容を空に設定 */
  position: absolute;
  left: 33%;
  top: -7%;
  width: 7.75rem;
  height: 6.25rem;
  background-image: url("../images/common/c-service-text1.png"); /* 画像のURLを設定 */
  background-size: cover; /* 画像を要素に合わせてカバー */
  background-position: center; /* 画像を中央に配置 */
}
@media screen and (max-width: 767px) {
  .c-service-img1::before {
    left: 69%;
    top: -4%;
    width: 4.625rem;
    height: 3.75rem;
  }
}

.c-service-img2::before {
  content: ""; /* 擬似要素の内容を空に設定 */
  position: absolute;
  right: 26%;
  top: -9%;
  width: 13.4375rem;
  height: 8.75rem;
  background-image: url("../images/common/c-service-text2.png"); /* 画像のURLを設定 */
  background-size: cover; /* 画像を要素に合わせてカバー */
  background-position: center; /* 画像を中央に配置 */
}
@media screen and (max-width: 767px) {
  .c-service-img2::before {
    left: 3%;
    top: -5%;
    width: 8.75rem;
    height: 5.6875rem;
  }
}

.c-service-img3::before {
  content: ""; /* 擬似要素の内容を空に設定 */
  position: absolute;
  right: 54%;
  top: -8%;
  width: 8.5rem;
  height: 6.9375rem;
  background-image: url("../images/common/c-service-text3.png"); /* 画像のURLを設定 */
  background-size: cover; /* 画像を要素に合わせてカバー */
  background-position: center; /* 画像を中央に配置 */
}
@media screen and (max-width: 767px) {
  .c-service-img3::before {
    left: 64%;
    top: -4%;
    width: 6rem;
    height: 4.875rem;
  }
}

.c-before {
  background-color: #fef3f5;
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 767px) {
  .c-before {
    padding-bottom: 6.25rem;
  }
}

.c-before.c-before--pink {
  background-color: #fef3f5;
}

.c-before h3 {
  padding-top: 1.875rem;
  padding-bottom: 4.375rem;
}
@media screen and (max-width: 767px) {
  .c-before h3 {
    padding-top: 1.25rem;
    padding-bottom: 2.5rem;
  }
}

.c-before-items {
  margin-top: 3.125rem;
  display: flex;
  justify-content: space-between;
  gap: 2.25rem;
}
@media screen and (max-width: 767px) {
  .c-before-items {
    flex-direction: column;
  }
}

.c-before-item {
  max-width: calc(33.333% - 1.25rem);
}
@media screen and (max-width: 767px) {
  .c-before-item {
    max-width: 100%;
  }
}

.c-before-item1 {
  padding-top: 5px;
}

@media screen and (max-width: 767px) {
  .c-before-item:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.c-concept-text-rap.c-before-text {
  max-width: 50%;
}
@media screen and (max-width: 767px) {
  .c-concept-text-rap.c-before-text {
    max-width: 100%;
  }
}

.c-concept-rap.c-before-rap {
  justify-content: space-evenly;
}

.c-concept-rap.c-before-rap.facial {
  align-items: flex-end;
}
.c-concept-rap.c-before-rap.facial img {
  max-width: 21rem;
  transform: translateX(2.5rem);
  padding-bottom: 1rem;
}

.c-before-text h4 {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-before-text h4 {
    margin-top: 30px;
  }
  .c-concept-rap.c-before-rap.facial img {
    transform: translateX(-0.4rem);
  }
}

.c-step.hair.pr-0 {
  background: #fef3f5;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.c-step.hair.pr-0.hair {
  background: #fffbf8;
}

.c-step.c-step--beige {
}
@media screen and (max-width: 767px) {
  .c-step {
    padding-top: 3.125rem;
  }
  .c-step.c-step--beige {
    padding-left: 0;
    padding-right: 0;
  }
  .c-step-inner.inner {
    max-width: 100%;
  }
  .c-step.hair.pr-0 {
    padding-top: 3.25rem;
  }
  .c-faq-q.q-3.bust-faq.pa-d {
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
  }
  .c-faq-q.q-4.bust-faq.pa-d {
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
  }
  .c-faq-q.q-5.bust-faq {
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
  }
}

.c-step.c-step--beige {
  background: #fffbf8;
}

.c-step-items {
  margin-top: 3.125rem;
  display: flex !important;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-step-items {
    flex-direction: column;
    padding: 0;
  }
}

.c-step-items.c-step-items2 {
  justify-content: center;
}

.c-step-item {
  max-width: calc(33.333% - 1.25rem);
  position: relative;
  padding-top: 3rem;
}
@media screen and (max-width: 767px) {
  .c-step-item {
    max-width: 100%;
    padding-top: 0;
  }
}

.c-step-item2 {
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-step-item2 {
    margin-left: 0rem;
  }
}

@media screen and (max-width: 767px) {
  .c-step-item:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.c-step-text::before {
  content: ""; /* 擬似要素にはcontentプロパティが必須 */
  display: block; /* 画像のように扱うためにblockレベル要素に */
  width: 2px; /* 画像の幅 */
  height: 30.4375rem; /* 画像の高さ */
  background-color: #f59090;
  position: absolute; /* 親要素に対して絶対位置指定 */
  bottom: 0%; /* 位置調整 */
  left: -5%; /* 位置調整 */
}
@media screen and (max-width: 767px) {
  .c-step-text::before {
    display: none; /* 画像のように扱うためにblockレベル要素に */
  }
}

.c-step-text.c-step-text2::before {
  height: 18.75rem; /* 画像の高さ */
  bottom: 0%; /* 位置調整 */
}
@media screen and (max-width: 767px) {
  .c-step-text.c-step-text2::before {
    display: none; /* 画像のように扱うためにblockレベル要素に */
  }
}

.c-step-text.c-step-text2.after-height::before {
  height: 44rem;
}

.c-step-text.c-step-text-top::before {
  height: 13.75rem; /* 画像の高さ */
  bottom: 0%; /* 位置調整 */
}
@media screen and (max-width: 767px) {
  .c-step-text.c-step-text-top::before {
    display: none; /* 画像のように扱うためにblockレベル要素に */
  }
}

.c-step-item h4 {
  font-size: 0.875rem;
  color: #f59090;
  text-align: center;
  font-weight: 300;

  font-weight: bold;
  font-family: "Noto Sans JP";
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .c-step-item h4 {
    text-align: center;
    font-size: 1.25rem;
  }
}

.c-step-item img {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .c-step-item img {
    margin-top: 0.625rem;
  }
}

.c-step-item p {
  margin-top: 1.25rem;
  color: #f59090;
  letter-spacing: 0.08em;
  line-height: 1.731;
  font-weight: 300;
  font-weight: bold;
  font-family: "Noto Sans JP";
  font-size: 1.85rem;
}
@media screen and (max-width: 767px) {
  .c-step-item p {
    margin-top: 0.625rem;
    font-size: 1.2rem;
  }
}

.c-step-inner {
  position: relative;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .c-step-inner {
    max-width: 100%;
  }
}

.stepbar-pc {
  width: 67%;
  height: auto;
  position: absolute;
  top: 19.5%;
  left: 16%;
}

.stepbar-pc2 {
  width: 35.5%;
  height: auto;
  position: absolute;
  bottom: 45%;
  left: 32.5%;
}

.step-1::after {
  display: block; /* 画像のように扱うためにblockレベル要素に */
  font-size: 2rem;
  position: absolute; /* 親要素に対して絶対位置指定 */
  top: -2%;
  left: -15%;
}
@media screen and (max-width: 767px) {
  .step-1::after {
    content: "⚫︎"; /* 擬似要素にはcontentプロパティが必須 */
    font-size: 0;
  }
}

.step-2::after {
  display: block; /* 画像のように扱うためにblockレベル要素に */
  width: 20px; /* 画像の幅 */
  height: 20px; /* 画像の高さ */
  border-radius: 35px;
  background-color: #fff;
  position: absolute; /* 親要素に対して絶対位置指定 */
  top: 0%;
  left: -13%;
  border: 2px solid #f59090;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .step-2::after {
    content: ""; /* 擬似要素にはcontentプロパティが必須 */
    display: none;
  }
}

.step-3::after {
  display: block; /* 画像のように扱うためにblockレベル要素に */
  width: 20px; /* 画像の幅 */
  height: 20px; /* 画像の高さ */
  border-radius: 35px;
  background-color: #fff;
  position: absolute; /* 親要素に対して絶対位置指定 */
  top: 0%;
  left: -13%;
  border: 2px solid #f59090;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .step-3::after {
    content: ""; /* 擬似要素にはcontentプロパティが必須 */
  }
}

.step-1::before {
  display: block;
  width: 2px;
  height: 108%;
  background-color: #f59090;
  position: absolute;
  top: 3%;
  left: -10%;
}
@media screen and (max-width: 767px) {
  .step-1::before {
    content: ""; /* 擬似要素にはcontentプロパティが必須 */
    width: 0;
  }
}

.step-2::before {
  display: block;
  width: 2px;
  height: 108%;
  background-color: #f59090;
  position: absolute;
  top: 3%;
  left: -10%;
}
@media screen and (max-width: 767px) {
  .step-2::before {
    content: ""; /* 擬似要素にはcontentプロパティが必須 */
    width: 0;
  }
}

.step-3::before {
  display: block;
  width: 2px;
  height: 110%;
  background-color: #f59090;
  position: absolute;
  top: 3%;
  left: -10%;
}
@media screen and (max-width: 767px) {
  .step-3::before {
    content: ""; /* 擬似要素にはcontentプロパティが必須 */
    width: 0;
  }
}

.step-5::before {
  display: block;
  width: 2px;
  height: 100%;
  background-color: #f59090;
  position: absolute;
  top: 3%;
  left: -10%;
}
@media screen and (max-width: 767px) {
  .step-5::before {
    content: ""; /* 擬似要素にはcontentプロパティが必須 */
    width: 0;
  }
}

@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/NotoSansCJKjp-Light.woff2") format("woff2"),
    url("../fonts/NotoSansCJKjp-Light.woff") format("woff"),
    url("../fonts/NotoSansCJKjp-Light.ttf") format("truetype"),
    url("../fonts/NotoSansCJKjp-Light.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/NotoSansCJKjp-DemiLight.woff2") format("woff2"),
    url("../fonts/NotoSansCJKjp-DemiLight.woff") format("woff"),
    url("../fonts/NotoSansCJKjp-DemiLight.ttf") format("truetype"),
    url("../fonts/NotoSansCJKjp-DemiLight.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansCJKjp-Regular.woff2") format("woff2"),
    url("../fonts/NotoSansCJKjp-Regular.woff") format("woff"),
    url("../fonts/NotoSansCJKjp-Regular.ttf") format("truetype"),
    url("../fonts/NotoSansCJKjp-Regular.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotoSansCJKjp-Medium.woff2") format("woff2"),
    url("../fonts/NotoSansCJKjp-Medium.woff") format("woff"),
    url("../fonts/NotoSansCJKjp-Medium.ttf") format("truetype"),
    url("../fonts/NotoSansCJKjp-Medium.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Noto Sans Japanese";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansCJKjp-Bold.woff2") format("woff2"),
    url("../fonts/NotoSansCJKjp-Bold.woff") format("woff"),
    url("../fonts/NotoSansCJKjp-Bold.ttf") format("truetype"),
    url("../fonts/NotoSansCJKjp-Bold.eot") format("embedded-opentype");
}
.c-faq {
  background-image: url(../images/common/c-faq-bg.png);
  background-size: cover; /* 画像を要素に合わせて調整 */
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 767px) {
  .c-faq {
    padding-bottom: 6.25rem;
  }
}

.c-faq-items {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .c-faq-items {
    margin-top: 3.125rem;
  }
}

.c-faq-q {
  background-color: #fff;
  width: 85%;
  color: #f59090;
  padding: 1.25rem 3.125rem 1.25rem 25%;
  letter-spacing: 0.08em;
  line-height: 1.2;
  border-radius: 0 50px 50px 0;
  box-shadow: inset 0px -3px 5px 0px rgba(0, 0, 0, 0.31),
    -4px -4px 8px rgba(255, 255, 255, 0.65);
  position: relative;

  min-height: 108px !important;
  max-height: 108px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: flex;
  align-items: center;
  justify-content: start;
}
@media screen and (max-width: 767px) {
  .c-faq-q {
    width: 99%;
    padding: 0.9375rem 1rem 0.9375rem 15%;
    box-shadow: inset -2px -2px 3px 0px rgba(0, 0, 0, 0.31),
      -4px -4px 8px rgba(255, 255, 255, 0.65);
    font-size: 1.2rem;

    min-height: 80px !important;
    max-height: 80px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: start;
  }
}

.q-2,
.q-3,
.q-4,
.q-9 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .q-2,
  .q-3,
  .q-9,
  .q-16,
  .q-19,
  .q-22,
  .q-16,
  .q-19,
  .q-22 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .c-faq-q.q-3 {
    padding-top: 1.8125rem;
    padding-bottom: 1.8125rem;
  }
}

.c-faq-q::before {
  position: absolute;
  left: 22%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffdcdc; /* 背景色 */
  color: #f59090;
  border-radius: 50%;
  padding: 2.1875rem; /* パディングで円を作る */
  font-weight: 200;
  text-align: center;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  font-family: "Noto Sans JP";
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .c-faq-q::before {
    font-size: 1rem;
    left: 4%;
    padding: 1rem; /* パディングで円を作る */
    width: 36px;
    height: 36px;
  }
}

.c-faq-q::before {
  content: "Q1";
}

.c-faq-q.q-2::before {
  content: "Q2";
}

.c-faq-q.q-3::before {
  content: "Q3";
}

.c-faq-q.q-4::before {
  content: "Q4";
}

.c-faq-q.q-5::before {
  content: "Q5";
}

.c-faq-q.q-6::before {
  content: "Q6";
}

.c-faq-q.q-7::before {
  content: "Q7";
}

.c-faq-q.q-8::before {
  content: "Q8";
}

.c-faq-q.q-9::before {
  content: "Q9";
}

.c-faq-q.q-10::before {
  content: "Q10";
  font-size: 1.65rem;
}

.c-faq-q.q-11::before {
  content: "Q11";
  font-size: 1.65rem;
}

.c-faq-q.q-12::before {
  content: "Q12";
  font-size: 1.65rem;
}

.c-faq-q.q-13::before {
  content: "Q13";
  font-size: 1.65rem;
}

.c-faq-q.q-14::before {
  content: "Q14";
  font-size: 1.65rem;
}

.c-faq-q.q-15::before {
  content: "Q15";
  font-size: 1.65rem;
}

.c-faq-q.q-16::before {
  content: "Q16";
  font-size: 1.65rem;
}

.c-faq-q.q-17::before {
  content: "Q17";
  font-size: 1.65rem;
}

.c-faq-q.q-18::before {
  content: "Q18";
  font-size: 1.65rem;
}

.c-faq-q.q-19::before {
  content: "Q19";
  font-size: 1.65rem;
}

.c-faq-q.q-20::before {
  content: "Q20";
  font-size: 1.65rem;
}

.c-faq-q.q-21::before {
  content: "Q21";
  font-size: 1.65rem;
}

.c-faq-q.q-22::before {
  content: "Q22";
  font-size: 1.65rem;
}

.c-faq-q.q-23::before {
  content: "Q23";
  font-size: 1.65rem;
}

.c-faq-q.q-24::before {
  content: "Q24";
  font-size: 1.65rem;
}

.c-faq-q {
  font-weight: bold;
  font-family: "Noto Sans JP";
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .c-faq-q {
    font-size: 1rem;
  }
  .c-faq-q.q-10::before {
    content: "Q10";
    font-size: 0.85rem;
  }

  .c-faq-q.q-11::before {
    content: "Q11";
    font-size: 0.85rem;
  }

  .c-faq-q.q-12::before {
    content: "Q12";
    font-size: 0.85rem;
  }

  .c-faq-q.q-13::before {
    content: "Q13";
    font-size: 0.85rem;
  }

  .c-faq-q.q-14::before {
    content: "Q14";
    font-size: 0.85rem;
  }

  .c-faq-q.q-15::before {
    content: "Q15";
    font-size: 0.85rem;
  }

  .c-faq-q.q-16::before {
    content: "Q16";
    font-size: 0.85rem;
  }

  .c-faq-q.q-17::before {
    content: "Q17";
    font-size: 0.85rem;
  }

  .c-faq-q.q-18::before {
    content: "Q18";
    font-size: 0.85rem;
  }

  .c-faq-q.q-19::before {
    content: "Q19";
    font-size: 0.85rem;
  }

  .c-faq-q.q-20::before {
    content: "Q20";
    font-size: 0.85rem;
  }

  .c-faq-q.q-21::before {
    content: "Q21";
    font-size: 0.85rem;
  }

  .c-faq-q.q-22::before {
    content: "Q22";
    font-size: 0.85rem;
  }

  .c-faq-q.q-23::before {
    content: "Q23";
    font-size: 0.85rem;
  }

  .c-faq-q.q-24::before {
    content: "Q24";
    font-size: 0.85rem;
  }
}

.c-faq-a {
  width: 85%;
  padding-left: 25%;
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
  font-weight: bold;
  font-family: "Noto Sans JP";
  font-size: 1.75rem;
}
.c-faq-a.last {
  font-size: 1.65rem;
}

@media screen and (max-width: 767px) {
  .c-faq-a {
    width: 95%;
    margin-top: 1.5625rem;
    margin-bottom: 1.5625rem;
    font-size: 1.25rem;
    padding-left: 6%;
    padding-right: 0rem;
    font-size: 1.2rem;
    line-height: 1.8;
  }
  .c-faq-a.last {
    font-size: 1.05rem;
  }
}

.c-faq-item-btn {
  width: 100%;
  margin: 0 auto;
  padding-top: 1.875rem;
  text-align: center; /* 最後のli要素を中央揃え */
}

.c-faq-item-btn img {
  margin: 0 auto;
  width: 20%;
}
@media screen and (max-width: 767px) {
  .c-faq-item-btn img {
    width: 60%;
  }
}

.faq-pd {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .faq-pd {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

.c-access {
  background-color: #fef3f5;
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 767px) {
  .c-access {
    padding-bottom: 3.125rem;
  }
}

.c-access-rap {
  display: flex;
  align-items: center;
  margin-top: 3.125rem;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .c-access-rap {
    flex-direction: column;
  }
}

.c-access-rap iframe {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .c-access-rap iframe {
    width: 100%;
  }
}

.c-access-text-rap {
  width: 45%;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .c-access-text-rap {
    margin-top: 1.25rem;
    width: 100%;
  }
}

.c-access-text2 {
  margin-top: 1.875rem;
}

.c-access-text-rap .c-btn-img {
  display: block;
  width: 62%;
  margin-top: 3.125rem;
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-access-text-rap .c-btn-img {
    margin-left: 15%;
  }
}

.c-service-slick {
  padding-bottom: 5.125rem;
}
@media screen and (max-width: 767px) {
  .c-service-slick {
    padding-bottom: 1.875rem;
  }
}

.service-slick {
  position: relative;
  margin-top: 7.125rem;
}
@media screen and (max-width: 767px) {
  .service-slick {
    margin-top: 1.875rem;
  }
}

.service-slick.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.service-slick__img.slick-center {
  transform: scale(1);
}

@media screen and (max-width: 767px) {
  .service-slick__img {
    padding-left: 1.25rem;
  }
}

.service-slick__img img {
  width: 85%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .service-slick__img img {
    width: 90%;
  }
}

.service-slick .slick-dots li button:before {
  opacity: 1;
  color: #d4e7ed;
}

.service-slick .slick-dots li.slick-active button:before {
  color: #f59090;
}

.c-price {
  background: repeating-linear-gradient(
    -45deg,
    #fef3f5,
    #fef3f5 6.5px,
    #ffffff 7.5px,
    #ffffff 11px
  );
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .c-price {
    padding-bottom: 2.5rem;
  }
}

.c-price-rap {
  margin-top: 2.5rem;
}

.price-text {
  background-color: #fff;
  color: #f59090;
  padding: 1rem 0 1rem;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-weight: 200;
  margin: 0 auto;

  /* text-align: center; */
  background-color: #fff;
  color: #f59090;
  padding: 1rem 0 1rem;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-weight: 200;
  margin: 0 auto;
  font-size: 2rem;
  color: #fb6b6d;
  font-weight: bold;
  font-family: "Noto Sans JP";
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .price-text {
    font-size: 1.25rem;
    line-height: 1.429;
    max-width: 100%;
  }
}

.price-container {
  margin-top: 3.125rem;
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .price-container {
    flex-direction: column;
    gap: 60px;
  }
}

.price-box {
  background-color: #fff;
  border: 3px solid #f59090;
  border-radius: 22px;
  box-shadow: 6px 6px 0px 1px #fcd5d5;
  padding: 30px 20px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .price-box {
    width: 100%;
  }
}

.price-title {
  background-color: #f59090;
  border-radius: 36px;
  box-shadow: 4px 4px 0px 1px #fcd5d5;
  color: #fff;
  width: 50%;
  letter-spacing: 0.1em;
  padding: 8px 0;
  position: absolute;
  top: -8.5%;
  left: 25%;
  font-weight: bold;
  font-family: "Noto Sans JP";
  font-size: 2rem;
}

.price-title.price-title--2 {
  top: -6.5%;
}

.price-list li {
  padding: 16px 0;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .price-list li {
    font-size: 0.875rem;
  }
  .price-title {
    font-size: 1.25rem;
  }
}

.price-list li:not(:last-child) {
  border-bottom: 2px dotted #f59090;
}

.price-list1 span {
  font-size: 0.875rem;
  color: #f59090;
}

.price-list1 li {
  position: relative;
  text-align: center;
  font-size: 2rem;
  line-height: 1.6;
  color: #683835;
  font-weight: bold;
  font-family: "Noto Sans JP";
}

@media screen and (max-width: 767px) {
  .price-list li {
    font-size: 1.25rem;
  }
}

.price-list2 li {
  padding: 16px 8px;
  display: flex;
  justify-content: space-between;
  position: relative;

  padding: 16px 8px;
  display: flex;
  justify-content: space-between;
  position: relative;
  font-size: 2rem;
  line-height: 1.6;
  color: #683835;
  font-weight: bold;
  font-family: "Noto Sans JP";
  gap: 2.5rem;
}

@media screen and (max-width: 767px) {
  .price-list2 li {
    font-size: 0.85rem;
    gap: 0;
  }
}

.box1 {
  height: max-content;
  width: 41%;
}
@media screen and (max-width: 767px) {
  .box1 {
    height: auto;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .box2 {
    width: 100%;
  }
}

.popular::before {
  content: "";
  display: block;
  width: 5rem;
  height: 5rem;
  background-image: url(../images/common/popular.png);
  background-size: contain;
  position: absolute;
  top: -7%;
  left: -17%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .popular::before {
    width: 3rem;
    height: 3rem;
    top: -13%;
    left: -13%;
  }
}

.price-list1 li:nth-of-type(4)::after {
  color: #f59090;
  font-size: 0.875rem;
  display: block;
  position: absolute;
  top: 30%;
  right: 44%;
}
@media screen and (max-width: 767px) {
  .price-list1 li:nth-of-type(4)::after {
    top: 30%;
    right: 45%;
  }
}

.price-list2 li::after {
  content: "＊";
  color: #f59090;
  display: block;
  position: absolute;
  top: 40%;
  right: 15%;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .price-list2 li::after {
    top: 30%;
    right: 16%;
  }
}

.header {
  height: 4.375rem;
  background-color: #f4bcc5;
}
@media screen and (max-width: 767px) {
  .header {
    height: 6.25rem;
  }
}

.header__inner {
  padding: 0 3.125rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header__inner {
    display: block;
    padding: 0;
    margin: 0 auto;
    height: auto;
  }
}

.header__logo {
  max-width: 9.375rem;
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 8.125rem;
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
  }
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__nav {
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__nav-list {
    justify-content: space-evenly;
  }
}

.header__nav-item {
  height: inherit;
}

.header__nav-item.header__nav-item--contact {
  margin-left: 0.9375rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__nav-item.header__nav-item--contact {
    margin-left: 0;
  }
}

.header__nav-item a {
  padding: 0 0.9375rem;
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  font-family: "Noto Sans Japanese";
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .header__nav-item a {
    font-size: 0.875rem;
  }
}

.header__nav-item span {
  margin-top: 0.3125rem;
  display: block;
  font-size: 0.75rem;
}

.header__nav-item.header__nav-item--contact a {
  position: relative;
  height: initial;
  max-width: 10rem;
  padding: 0;
}

.header__nav-item--contact {
  position: relative;
}

.header__hamburger {
  display: none;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 2.5rem;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    display: block;
    position: absolute;
    top: 25%;
    right: 2%;
  }
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.875rem;
  height: 1px;
  background-color: #fff;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.5rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.5rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  overflow-y: scroll;
  scrollbar-width: none;
}

.header__drawer-title {
  background-color: #f4bcc5;
  padding: 0.75rem 7.5rem;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-nav {
  padding-top: 1.875rem;
}

.header__drawer-item {
  border-bottom: dotted 2px #f4bcc5;
  margin: 0 1.25rem;
}

.header__drawer-item a {
  padding: 1.25rem 0.625rem;
  display: block;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #f4bcc5;
  text-align: left;
  text-transform: uppercase;
}

.header__drawer-item-btn {
  justify-content: center;
  margin-top: 1.5rem;
}

.header__nav-item.header__nav-item--contact.header__drawer-item-btn a {
  max-width: 10.625rem;
}

.header__drawer-item.header__drawer-item--contact a::after {
  content: "";
  margin-bottom: 0.3125rem;
  margin-left: 1.25rem;
  width: 0.9375rem;
  height: 0.9375rem;
  display: inline-block;
  background-image: url(./../images/common/contact-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__sp-link {
  margin-top: 3.125rem;
}

.header__nav-list.md-show {
  display: none;
}

@media screen and (max-width: 768px) {
  .header__nav-list.md-show {
    display: block;
  }
  .header__nav-list.md-none {
    display: none;
  }
}
.header__nav-item--dropdown {
  position: relative;
}

.header__nav-item--dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f4bcc5;
  font-size: 1rem;
  color: #fff;
  min-width: 200px;
  z-index: 1000;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.header__nav-item--dropdown .dropdown-menu li {
  list-style: none;
}

.header__nav-item--dropdown .dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.header__nav-item--dropdown:hover .dropdown-menu {
  display: block;
}

.header__nav-item--dropdown .dropdown-menu li a:hover {
  background-color: #f5f5f5;
  color: #f4bcc5;
}

.mv {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .mv {
    margin-top: 6.25rem;
  }
}

.mv__inner {
  padding: 3.125rem 0;
  background-image: url(../images/common/mv-bg.png);
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__inner {
    padding: 1.875rem 0;
    background-image: url(../images/common/mv-bg-sp.png);
  }
}

.mv-container {
  position: relative;
}

.mv__title-wrap {
  position: absolute;
  z-index: 2;
  top: 40%;
  left: 40%;
  transform: translate(-50%, -50%);
  color: #f59090;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mv__title-wrap {
    width: initial;
    text-align: left;
    top: 29%;
    left: 34%;
  }
}

.mv__main-title {
  font-size: 3.75rem;
  font-family: "Noto Sans Japanese";
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .mv__main-title {
    font-size: 2.5rem;
  }
}

.mv__sub-title {
  margin-top: 1.25rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .mv__sub-title {
    font-size: 2.1875rem;
  }
}

.mv__img {
  width: 90%;
  margin-left: auto;
}

.mv__img img {
  width: 100%;
  object-fit: cover;
}

.mv__btn-rap {
  width: 45%;
  padding: 1.25rem 5.625rem 1.25rem 0;
  text-align: right;
  background-color: #fff;
  border-top-right-radius: 73px; /* 右上の角丸 */
  border-bottom-right-radius: 73px; /* 右下の角丸 */
  position: absolute;
  bottom: 22%;
  left: 0%;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.31),
    0px 0px 8px rgba(255, 255, 255, 0.65); /* ハイライトの部分 */
}
@media screen and (max-width: 767px) {
  .mv__btn-rap {
    padding: 0.625rem 3.75rem 0.625rem 0;
    bottom: 13%;
    width: 80%;
  }
}

.mv__btn {
  display: inline-block;
  font-size: 1.875rem;
  letter-spacing: 0.08em;
  color: #f59090;
  font-family: "Noto Sans Japanese";
}
@media screen and (max-width: 767px) {
  .mv__btn {
    font-size: 1.25rem;
  }
}

.mv__btn-rap::after {
  content: ""; /* 擬似要素にはcontentプロパティが必須 */
  display: block; /* 画像のように扱うためにblockレベル要素に */
  width: 1.5625rem; /* 画像の幅 */
  height: 1.5625rem; /* 画像の高さ */
  background-image: url("../images/common/mv-arrow.png"); /* 追加したい画像のパス */
  background-size: cover; /* 画像を要素に合わせて調整 */
  position: absolute; /* 親要素に対して絶対位置指定 */
  top: 35%; /* 位置調整 */
  right: 5%; /* 位置調整 */
}
@media screen and (max-width: 767px) {
  .mv__btn-rap::after {
    top: 24%; /* 位置調整 */
  }
}

@media screen and (max-width: 767px) {
  .mv.sub-mv {
    margin-top: 0;
  }
}

.sub-mv__inner {
  position: relative;
  padding: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .sub-mv__inner {
    padding-bottom: 1.5625rem;
  }
}

.sub-mv__title-wrap {
  max-width: 17.1875rem;
  text-align: center;
  position: absolute;
  top: 12%;
  left: 7%;
}
@media screen and (max-width: 767px) {
  .sub-mv__title-wrap {
    left: 10%;
    top: 6%;
  }
}

.sub-mv__main-title {
  font-size: 3.5rem;
  color: #f59090;
  letter-spacing: 0.08em;
  line-height: 1.2;
  padding: 0px 10px;
  position: relative;
  font-family: "Noto Sans Japanese";
  font-weight: 300;

  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "Noto Sans JP";
}
@media screen and (max-width: 767px) {
  .sub-mv__main-title {
    font-size: 1.75rem;
  }
}

.sub-mv__title-sub {
  font-size: 1.625rem;
  color: #f59090;
  letter-spacing: 0.08em;
  line-height: 1.2;
  padding-top: 10px;
  font-family: "Noto Sans Japanese";
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .sub-mv__title-sub {
    font-size: 1.125rem;
  }
}

.sub-mv__main-title span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    #f59090 33%,
    rgba(255, 255, 255, 0) 67%
  );
  background-size: 5px 1px;
  background-repeat: repeat-x;
  position: absolute;
  bottom: 0%;
  left: 0%;
}
@media screen and (max-width: 767px) {
  .sub-mv__main-title span::after {
    bottom: -13%;
  }
}

.news {
  background-color: #fffbf8;
}

.news__inner.inner {
  max-width: 65.625rem;
}

.news__list {
  margin-top: 6.25rem;
  padding-bottom: 3.125rem;
}

.news-list__item {
  padding: 30px 0;
  border-top: 1px solid #000;
}

.news-list__item:last-child {
  border-bottom: 1px solid #000;
}

.news-list__item a {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .news-list__item a {
    flex-direction: column;
  }
}

.news-list__item-meta {
  display: flex;
  align-items: center;
}

.news-list__item-category {
  margin-left: 1.875rem;
  padding: 0.3125rem 1.875rem;
  min-width: 5rem;
  width: fit-content;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  text-align: center;
  border-radius: 19px;
}
@media screen and (max-width: 767px) {
  .news-list__item-category {
    margin-left: 0;
  }
}

.category-news {
  background-color: #ef657b;
}

.news-list__item-date {
  margin-left: 3.125rem;
  font-size: 1rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .news-list__item-date {
    margin-left: 1.875rem;
  }
}

.news-list__item-title {
  margin-top: 0;
  margin-left: 1.875rem;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .news-list__item-title {
    margin-left: auto; /* 左のマージンを自動にして右寄せ */
    display: inline-block;
    margin-top: 1rem;
    align-self: flex-start; /* 親要素内で右端に配置 */
    margin-left: 0rem;
  }
}

.p-btn-container.inner {
  max-width: 65.625rem;
}

.p-btn-body {
  display: flex;
  justify-content: space-evenly;
  margin: 5rem 0px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-btn-body {
    flex-direction: column;
    font-size: 1rem;
  }
}

.btn-rv-text {
  position: relative;
  display: inline-block;
  color: #f59090;
}

.btn-rv-link {
  color: #fff;
  letter-spacing: 0.08em;
  padding: 0rem 0;
  display: block;
  border-radius: 76px;
  position: relative;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .btn-rv-link {
    display: block;
  }
}

.p-btn-rv .btn-rv-link {
  max-width: 100%;
}

.p-btn-line {
  margin-left: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-btn-line {
    margin-top: 1.875rem;
    margin-left: 0rem;
  }
}

.p-btn-line .btn-rv-link {
  max-width: 100%;
}

.btn-rv-link::after {
  display: block;
  width: 1.5625rem;
  height: 1.5625rem;
  background-image: url(../images/common/arrow-p.png);
  background-size: cover;
  position: absolute;
  top: 36%;
  right: 5%;
}

.p-btn-line .btn-rv-link::after {
  background-image: url(../images/common/arrow-g.png);
}

.btn-rv-text::before,
.btn-rv-text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2.5rem; /* 線の長さ */
  border-top: 2px solid #f59090; /* 線の色と太さ */
}

.btn-rv-text::before {
  left: -3.75rem; /* テキストの左側の位置 */
  transform: translateY(-50%) rotate(55deg); /* 線の角度 */
}

.btn-rv-text::after {
  right: -3.75rem; /* テキストの右側の位置 */
  transform: translateY(-50%) rotate(-55deg); /* 線の角度 */
}

.p-btn-line .btn-rv-text::before {
  left: -2.5rem; /* テキストの左側の位置 */
  transform: translateY(-50%) rotate(55deg); /* 線の角度 */
}

.p-btn-line .btn-rv-text::after {
  right: -2.5rem; /* テキストの右側の位置 */
  transform: translateY(-50%) rotate(-55deg); /* 線の角度 */
}

.mv__title-wrap.p-top {
  text-align-last: left;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .mv__title-wrap.p-top {
    width: 78%;
    top: 16%;
    left: 59%;
    right: 0%;
  }
}

.p-top .mv__main-title {
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-top .mv__main-title {
    font-size: 1.75rem;
  }
}

.p-btn-body.p-top {
  margin-bottom: 6.875rem;
}
@media screen and (max-width: 767px) {
  .p-btn-body.p-top {
    margin-top: 1.625rem;
    margin-bottom: 3.125rem;
  }
}

.qa-section {
  width: 100%;
  padding: 20px 0;
  background: #f9f3f0; /* 背景色を設定 */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qa-header {
  width: 100%;
  background: #fff; /* 白背景色 */
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 50px; /* 角を丸くする */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.qa-label {
  background: #fadcd2; /* Q2の背景色 */
  color: #e06c6c; /* Q2のテキスト色 */
  border-radius: 50%; /* 円形にする */
  padding: 10px 15px;
  margin-right: 15px;
  flex-shrink: 0;
  font-weight: bold;
  text-align: center;
}

.qa-question {
  flex-grow: 1; /* 残りのスペースを占める */
  text-align: center; /* 中央揃え */
  color: #e06c6c; /* テキスト色 */
  font-weight: bold;
  font-size: 1.2em; /* フォントサイズ */
}

.qa-body {
  margin-top: 10px;
  text-align: center; /* テキストを中央揃え */
  color: #666; /* テキスト色 */
  font-size: 1em; /* フォントサイズ */
}

.news__contents-text-wrap {
  background-image: url(../images/common/news-c-mv-bg.png);
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .news__contents-text-wrap {
    background-image: url(../images/common/news-c-mv-bg-sp.png);
  }
}

.news-list__item.news__contents-text {
  border: none;
  max-width: 65.625rem;
  padding: 5.625rem 0;
}
@media screen and (max-width: 767px) {
  .news-list__item.news__contents-text {
    padding: 3.125rem 1.25rem;
    max-width: 37.5rem;
  }
}

.news-list__item-title.news__contents-text {
  margin-top: 1.875rem;
}

.news-contents-list {
  margin: 5rem 0;
}

.news-contents-list__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .news-contents-list__item {
    flex-direction: column;
  }
}

.news-contents-list__item-img {
  max-width: 50%;
  margin-right: 1.25rem;
  border-radius: 277px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news-contents-list__item-img {
    max-width: 90%;
    margin-right: 0rem;
  }
}

@media screen and (max-width: 767px) {
  .news-contents-list__item-text-wrap {
    margin-top: 1.875rem;
  }
}

.news__contents-title {
  margin-top: 2.5rem;
  font-size: 1rem;
}

.news__contents .news__list {
  margin-top: 1.875rem;
}

.sub-mv__title-wrap.p-facia {
  max-width: 36.25rem;
  left: 3%;
  top: 11%;
}

@media screen and (max-width: 767px) {
  .sub-mv__main-title.p-facia {
    font-size: 2rem;
  }
  .sub-mv__title-wrap.p-facia {
    top: 4%;
  }
}

.p-facia-sub {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .section-title-main.facia-concept {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 767px) {
  .section-title-main {
    font-size: 1.5rem;
    width: 100%;
  }
  .section-title-main.bust {
    width: 100%;
  }
}

.stepbar-pc.p-facia {
  top: 10%;
}

.stepbar-pc2.p-facia {
  bottom: 44%;
}

.c-step-text.p-facia::before {
  height: 40.625rem;
}
.hair-removal {
  bottom: 45% !important;
}

.hair-removal::before {
  height: 24.4375rem;
}

.facial::before {
  height: 28.4375rem;
}
.sub-mv__title-wrap.p-hair {
  max-width: 36.25rem;
  left: 2%;
}

.sub-mv__title-wrap.p-bust {
  max-width: 36.25rem;
  left: 10%;
}
@media screen and (max-width: 767px) {
  .sub-mv__title-wrap.p-bust {
    top: 7%;
  }
}

@media screen and (max-width: 767px) {
  .section-title-main.bust-concept {
    font-size: 1.75rem;
    width: 100%;
  }
}

.text-bk.bust-concept {
  font-size: 2rem;
  line-height: 2.2;
  color: #683835;
  font-weight: 700;
  font-family: "Noto Sans JP";
}

@media screen and (max-width: 767px) {
  .text-bk.bust-concept {
    font-size: 1.1rem;
  }
}

.section-title-main.bust-reason {
  letter-spacing: 0.08em;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .section-title-main.bust-reason {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 767px) {
  .c-reason-text-rap.c-reason-text-rap2.bust-reason {
    margin-right: 0;
  }
}

.stepbar-pc.p-bust {
  top: 10%;
}

.stepbar-pc2.p-bust {
  bottom: 45%;
}

.c-faq-q.bust-faq {
  padding-top: 2.1875rem;
  padding-bottom: 2.1875rem;
  font-weight: bold;
  font-family: "Noto Sans JP";
  font-size: 2rem;
}

.q-2.bust-faq,
.q-3.bust-faq {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.concept__inner {
  background-image: url(../images/common/concept-bg.png);
  background-size: cover;
  padding-top: 6.25rem;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .concept__inner {
    background-image: url(../images/common/concept-bg-sp.png);
    padding-top: 3.125rem;
    margin-bottom: 3.125rem;
  }

  .c-faq-q.bust-faq {
    font-size: 1.1rem;
  }
}

.concept__container {
  display: flex;
  margin-right: 10%;
}
@media screen and (max-width: 767px) {
  .concept__container {
    flex-direction: column-reverse;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.concept__container img {
  max-width: 480px;
  width: 35%;
  object-fit: cover;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .concept__container img {
    width: 80%;
    margin: 0 auto;
    margin-top: 3.125rem;
  }
}

.concept__text-rap {
  position: relative;
}

.concept__text-rap::before {
  content: ""; /* 擬似要素にはcontentプロパティが必須 */
  display: block; /* 画像のように扱うためにblockレベル要素に */
  width: 100%; /* 画像の幅 */
  height: 2px; /* 画像の高さ */
  position: absolute; /* 親要素に対して絶対位置指定 */
  bottom: 2%; /* 位置調整 */
  left: 0%; /* 位置調整 */
  border-bottom: 2px dotted #ff9aa2; /* ピンクの色 */
}
@media screen and (max-width: 1299px) {
  .concept__text-rap::before {
    bottom: 3%; /* 位置調整 */
  }
}
@media screen and (max-width: 767px) {
  .concept__text-rap::before {
    bottom: -3%; /* 位置調整 */
  }
}

.concept__title.section-title-main {
  text-align: left;
}

.concept__title {
  margin-bottom: 3.125rem;
  letter-spacing: 0.08em;
  position: relative; /* 擬似要素のために必要 */
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .concept__title {
    font-size: 1.375rem;
  }
}

.concept__title::after {
  content: "";
  flex-grow: 1;
  border-bottom: 2px dotted #ff9aa2; /* ピンクの色 */
  margin-left: 10px; /* テキストと点線の間のスペース */
}

.concept__text {
  margin-bottom: 2.5rem;
  font-size: 1rem;
  line-height: 1.75;
  font-family: "Noto Sans Japanese";
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .concept__text {
    font-size: 0.875rem;
    line-height: 1.429;
    margin-bottom: 1.25rem;
  }
}

.sub-mv__title-wrap.p-access {
  max-width: 36.25rem;
  left: 7%;
}
@media screen and (max-width: 767px) {
  .sub-mv__title-wrap.p-access {
    top: 7%;
  }
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .info-table {
    display: block;
  }
}

.info-table th,
.info-table td {
  border: 1px solid #a5a29d;
  padding: 0.625rem;
  text-align: left;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
    border-top: none;
  }
}

@media screen and (max-width: 767px) {
  .info-table .border-top {
    border-top: 1px solid #a5a29d;
  }
}

.info-table th {
  width: 9.375rem;
}
@media screen and (max-width: 767px) {
  .info-table th {
    width: 100%;
  }
}

.access-step {
  background-color: #fef3f5;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .access-step {
    padding-bottom: 1.875rem;
  }
}

.access-step-title {
  background-color: #fff;
  padding: 0.625rem;
  border-radius: 50px;
  box-shadow: inset 0px -3px 5px 0px rgba(0, 0, 0, 0.31),
    -4px -4px 8px rgba(255, 255, 255, 0.65);
}
@media screen and (max-width: 767px) {
  .access-step-title {
    border-radius: 65px;
  }
}

.access-step-title h3 {
  margin: 0;
  color: #f59090;
  font-size: 2rem;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.08em;
  font-family: "Noto Sans Japanese";
}
@media screen and (max-width: 767px) {
  .access-step-title h3 {
    font-size: 1.125rem;
  }
}

.access-step-items {
  margin-top: 3.125rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .access-step-items {
    margin-top: 1.875rem;
    flex-direction: column;
    align-content: space-around;
  }
}

@media screen and (max-width: 767px) {
  .access-step-item.access-step-items2 {
    margin-top: 4.375rem;
  }
}

.access-step-items.access-step-items2 {
  justify-content: center;
}

.access-step-items2 .step {
  margin-left: 3.125rem;
}
@media screen and (max-width: 767px) {
  .access-step-items2 .step {
    margin-left: 0;
  }
}

.access-step-item {
  width: 30%;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .access-step-item {
    width: 95%;
    padding: 0rem;
  }
}

.access-step-item img {
  width: 100%;
}

.access-step-item p {
  margin-top: 1.25rem;
}

.step {
  position: relative;
}

.step::after {
  content: ""; /* 擬似要素にはcontentプロパティが必須 */
  display: block; /* 画像のように扱うためにblockレベル要素に */
  width: 1.875rem; /* 画像の幅 */
  height: 3.4375rem; /* 画像の高さ */
  background-image: url("../images/common/step-arrow.png"); /* 追加したい画像のパス */
  background-size: cover; /* 画像を要素に合わせて調整 */
  position: absolute; /* 親要素に対して絶対位置指定 */
  top: 28%;
  left: -14%;
}
@media screen and (max-width: 767px) {
  .step::after {
    top: -17%;
    left: 45%;
    transform: rotate(90deg); /* 45度回転 */
  }
}

.sub-mv__title-wrap.p-contact {
  left: 7%;
}

.contact {
  background-color: #fef3f5;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-bottom: 3.125rem;
  }
}

.section-title.contact__title {
  padding: 3.125rem 4.375rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .section-title.contact__title {
    padding: 1.875rem 1.875rem 3.75rem;
  }
}

.contact__form {
  margin-top: 3.125rem;
}

.form__label {
  width: 100%;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.08em;
  padding-left: 1.875rem;
  color: #f59090;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .form__label {
    font-size: 1.25rem;
  }
}

.form__wrap + .form__wrap {
  margin-top: 1.875rem;
}

.form-input input {
  padding: 1rem 2rem;
  margin-top: 1.25rem;
  width: 100%;
  font-size: 0.9375rem;
  line-height: 1;
  border-radius: 0;
  appearance: none;
  background-image: none;
  border-radius: 73px;
  border: none;
  box-shadow: inset 0px -3px 5px 0px rgba(0, 0, 0, 0.31),
    -4px -4px 8px rgba(255, 255, 255, 0.65);
}
@media screen and (max-width: 767px) {
  .form-input input {
    margin-top: 0.625rem;
  }
}

.form-textarea textarea {
  padding: 1rem 2rem;
  margin-top: 1.25rem;
  width: 100%;
  height: 12.5rem;
  font-size: 0.9375rem;
  border-radius: 0;
  border: none;
  appearance: none;
  background-image: none;
  border-radius: 45px;
  box-shadow: inset 0px -3px 5px 0px rgba(0, 0, 0, 0.31),
    -4px -4px 8px rgba(255, 255, 255, 0.65);
}
@media screen and (max-width: 767px) {
  .form-textarea textarea {
    margin-top: 0.625rem;
  }
}

.contact__form-privacy {
  margin-top: 3.75rem;
  text-align: center;
}

.contact__form-privacy input + span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #464646;
}

.form__submit {
  margin-top: 1.25rem;
  text-align: center;
}

.contact__btn {
  background-color: transparent;
  border-color: transparent;
  width: 35%;
}
@media screen and (max-width: 767px) {
  .contact__btn {
    width: 90%;
  }
}

/* flatpickr上書き用css */
.flatpickr-calendar {
  border-radius: 12px;
  overflow: hidden;
}

.flatpickr-day.selected {
  background-color: #ef657b;
  border: 2px solid #e06f7b;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay,
.flatpickr-day:hover {
  width: 100%;
  color: #fff;
  background-color: #ef657b;
}

.flatpickr-months .flatpickr-month {
  color: #fff;
  background-color: #e06f7b;
  height: 45px;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month,
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: rgba(255, 255, 255, 0.9);
}

span.flatpickr-weekday,
.flatpickr-current-month
  .flatpickr-monthDropdown-months
  .flatpickr-monthDropdown-month {
  color: #e06f7b;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  top: 1.2%;
}

/* flatpickr用css */
.flatpickr-calendar.inline {
  width: 490px;
  border-radius: 10px;
  overflow: hidden;
  top: -52px;
}

.flatpickr-months {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flatpickr-months svg {
  opacity: 0;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  border-radius: 50%;
  top: 0;
  position: relative;
}

.flatpickr-months .flatpickr-prev-month::before,
.flatpickr-months .flatpickr-next-month::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.flatpickr-months .flatpickr-prev-month {
  left: 20px !important;
}

.flatpickr-months .flatpickr-prev-month::before {
  border-left: 0;
  border-right: 12px solid #fc6b6d;
}

.flatpickr-months .flatpickr-next-month {
  right: 20px !important;
}

.flatpickr-months .flatpickr-next-month::before {
  border-left: 12px solid #fc6b6d;
  border-right: 0;
}

.flatpickr-months .flatpickr-current-month .numInputWrapper {
  position: relative;
}

.flatpickr-months .flatpickr-current-month .numInputWrapper::after {
  content: "年";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flatpickr-months .flatpickr-disabled {
  display: block !important;
  opacity: 0;
}

.flatpickr-day {
  width: 100%;
  max-width: 100%;
  text-align: center;
}

span.flatpickr-day.today {
  border: none;
  background: #e2e2e2;
}

span.flatpickr-day.selected {
  background: #ef657b;
  color: #fff;
  font-weight: bold;
  border: none;
}

.flatpickr-day:nth-child(7n) {
  background: #e2f7ff;
}

.flatpickr-day:nth-child(7n + 1) {
  background: #ffeaea;
}

.flatpickr-day.flatpickr-disabled {
  background: #fff;
  color: rgba(57, 57, 57, 0.3) !important;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  font-size: 0;
}

.flatpickr-months {
  background: #e06f7b;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flatpickr-months svg {
  opacity: 0;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  background: #fff;
  border-radius: 50%;
  top: 0;
  position: relative;
}

.flatpickr-months .flatpickr-prev-month::before,
.flatpickr-months .flatpickr-next-month::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.flatpickr-months .flatpickr-current-month .numInputWrapper {
  position: relative;
}

.flatpickr-months .flatpickr-current-month .numInputWrapper::after {
  content: "年";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flatpickr-months .flatpickr-disabled {
  display: block !important;
  opacity: 0;
}

.flatpickr-days {
  width: 100% !important;
  border: solid 1px #bfbfbf;
  border-left: none;
  border-bottom: none;
}

.dayContainer {
  display: grid !important;
  grid-template-columns: repeat(7, 1fr) !important;
  width: auto;
  min-width: 278px;
  max-width: 278px;
}

.dayContainer span {
  width: 100%;
  border-radius: 0;
  border-bottom: solid 1px #bfbfbf !important;
  border-left: solid 1px #bfbfbf !important;
}

.flatpickr-day {
  width: 100%;
  max-width: 100%;
  text-align: center;
  line-height: 1.7;
}

.flatpickr-day.today {
  border: none;
}

.flatpickr-day.selected {
  background: #fc6b6d;
  color: #fff;
  font-weight: bold;
  border: none;
}

.flatpickr-day:nth-child(7n) {
  background: #e2f7ff;
}

.flatpickr-day:nth-child(7n + 1) {
  background: #ffeaea;
}

.flatpickr-day.nextMonthDay {
  color: #000;
  color: initial;
}

.flatpickr-innerContainer {
  justify-content: center;
  padding: 0.8rem;
  padding-top: 0;
}

.flatpickr-calendar.inline {
  width: 320px;
  border-radius: 10px;
  overflow: hidden;
  top: 4px;
}

.thanks {
  background-image: url(../images/common/thanks-bg.png);
  background-size: cover;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .thanks {
    background-image: url(../images/common/thanks-bg-sp.png);
    margin-top: 5.9375rem;
  }
}

.thanks__inner {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .thanks__inner {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.thanks__body {
  background-color: #fff;
  border-radius: 50px;
  padding: 6.25rem 9.375rem;
}
@media screen and (max-width: 767px) {
  .thanks__body {
    padding: 1.875rem 1.25rem;
  }
}

.thanks__text-l {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .thanks__text-l {
    font-size: 2rem;
    text-align: left;
  }
}

.thanks__text {
  font-size: 2rem;
  margin-top: 3.125rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .thanks__text {
    margin-top: 0.625rem;
    font-size: 1rem;
  }
}

.sub-mv__title-wrap.p-faq-mv {
  max-width: 36.25rem;
  left: 10%;
  top: 7%;
}
@media screen and (max-width: 767px) {
  .sub-mv__title-wrap.p-faq-mv {
    left: 5%;
  }
}

.p-faq {
  background-image: url(../images/common/c-faq-bg.png);
  background-size: contain; /* 画像を要素に合わせて調整 */
  background-repeat: repeat;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding-bottom: 3.125rem;
  }
}

.p-faq.p-faq2 {
  background-image: url(../images/common/c-faq-bg2.png);
  background-size: contain; /* 画像を要素に合わせて調整 */
  background-repeat: repeat;
}

.p-faq-body {
  background-image: url(../images/common/faq-bg-body.png);
}

.p-faq-p {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-faq-p {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

.p-faq-btn-text {
  margin-bottom: 1.25rem;
  padding: 0 1.25rem;
}

.section-title.p-faq-title {
  font-size: 2rem;
  padding-left: 3.125rem;
  padding-right: 3.125rem;
}
@media screen and (max-width: 767px) {
  .section-title.p-faq-title {
    font-size: 1.5rem;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}

.section-title.p-faq-title2 {
  font-size: 1.625rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.section-title.p-faq-title3 {
  font-size: 1.5rem;
  padding-left: 0rem;
  padding-right: 0rem;
}
@media screen and (max-width: 767px) {
  .section-title.p-faq-title3 {
    font-size: 1.125rem;
  }
}

.sub-mv__title-wrap.p-privacy {
  max-width: 50rem;
  left: 2%;
  top: 3%;
}
@media screen and (max-width: 767px) {
  .sub-mv__title-wrap.p-privacy {
    left: 5%;
    top: 4%;
  }
}

.policy-title {
  font-size: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .policy-title {
    font-size: 1.75rem;
  }
}

.privacy {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  background-color: #fef3f5;
}
@media screen and (max-width: 767px) {
  .privacy {
    padding-top: 3.125rem;
  }
}

.policy-lead {
  font-size: 1rem;
}

.policy-box {
  padding: 0.9375rem;
  padding-left: 1.875rem;
  margin-top: 2rem;
  background-color: #fff;
  font-size: 2rem;
  border-radius: 50px;
  box-shadow: inset 0px -3px 5px 0px rgba(0, 0, 0, 0.31),
    -4px -4px 8px rgba(255, 255, 255, 0.65);
}
@media screen and (max-width: 767px) {
  .policy-box {
    font-size: 1.375rem;
  }
}

.policy-box_title {
  display: flex;
  align-items: center;
}

.policy-box_number {
  color: #ef657b;
  white-space: nowrap;
  padding-right: 0.625rem;
}

.policy-list-number {
  counter-reset: number; /* カウンターをリセット */
  margin-top: 1rem;
}

.policy-list-number > li {
  padding-left: 1.5625rem;
  margin-top: 1rem;
  line-height: 1.786;
  letter-spacing: 0.08em;
  position: relative;
  counter-increment: number; /* 各liごとにカウンターをインクリメント */
}

.policy-list-number > li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: counter(number) ". "; /* カウンター値を表示 */
}

.policy-list-inner {
  counter-reset: inner-number; /* 内部カウンターをリセット */
  margin-top: 0.5rem;
  padding-left: 2rem;
}

.policy-list-inner > li {
  margin-top: 0.5rem;
  line-height: 1.786;
  letter-spacing: 0.08em;
  position: relative;
  counter-increment: inner-number; /* 内部リストのカウンターをインクリメント */
}

.policy-list-inner > li:before {
  position: absolute;
  top: 0;
  left: -1.5625rem; /* 親リストの番号と揃えるために左にずらす */
  content: counter(inner-number) ". "; /* 内部カウンター値を表示 */
}

.p-link {
  color: blue; /* テキストの色 */
  text-decoration: none; /* デフォルトの下線を削除 */
  border-bottom: 1px solid blue; /* 青い下線を追加 */
  display: inline; /* テキストの幅に合わせる */
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.custom-table th,
.custom-table td {
  border: 1px solid #716b6b;
  padding: 8px;
  font-weight: 300;
}

.custom-table th {
  text-align: left;
}

.custom-table td {
  text-align: left;
}

.custom-table .title-column {
  width: 30%;
}

.custom-table .content-column {
  width: 70%;
}

.p-btn-container.p-privacy {
  background-color: #fff;
}

.cf__inner {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .cf__inner {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.cf__body {
  background-color: #fff;
  border-radius: 47px;
  padding: 1.875rem 6.25rem;
  border: 5px solid #ef657b;
}
@media screen and (max-width: 767px) {
  .cf__body {
    padding: 1.875rem 0.5rem;
  }
}

.cf__text-l {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 300;
  color: #f59090;
}
@media screen and (max-width: 767px) {
  .cf__text-l {
    font-size: 1.125rem;
  }
}

.confirmation {
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .confirmation {
    padding: 1.25rem 0rem;
  }
}

.confirmation__group {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  color: #464646;
  gap: 5rem;
  border-bottom: 2px dotted #f59090;
}
@media screen and (max-width: 767px) {
  .confirmation__group {
    font-size: 0.875rem;
    gap: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .confirmation__group.confirmation__group-chek {
    border-bottom: none;
    margin-bottom: 0px;
    align-items: end;
  }
}

@media screen and (max-width: 767px) {
  .confirmation__group-chek1 {
    display: block;
  }
}

.confirmation__label {
  text-align: right;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .confirmation__label {
    width: 40%;
  }
}

.confirmation__value {
  width: 70%;
  text-align-last: left;
}
@media screen and (max-width: 767px) {
  .confirmation__value {
    width: 60%;
  }
}

.confirmation__actions {
  display: flex;
  justify-content: center;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .confirmation__actions {
    flex-direction: column;
    align-items: center;
  }
}

.confirmation__button {
  cursor: pointer;
  background-color: #fff;
  border: none;
  max-width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .confirmation__button--back {
    margin-top: 1rem;
  }
}

/* 予約フォーム */
.reservation__inner {
  padding-top: 6.25rem;
  padding-bottom: 8.125rem;
}

@media screen and (max-width: 767px) {
  .reservation__inner {
    padding-top: 3.25rem;
    padding-bottom: 8.125rem;
  }
}

.required {
  position: relative;
}

.required::after {
  content: "必須";
  padding: 0.2rem 1rem;
  color: #fff;
  background: #cd302c;
  font-size: 1rem;
  border-radius: 1em;
  position: absolute; /* 親要素に対して絶対位置指定 */
  top: 20%;
  left: 15%;
}
.required.required1::after {
  left: 18%;
}
.required.required2::after {
  left: 20%;
}
.required.required3::after {
  content: "任意";
  background: #65c178;
  left: 23%;
}
.required.required4::after {
  top: 0%;
  left: 64%;
}
@media screen and (max-width: 767px) {
  .required::after {
    font-size: 0.8rem;
    left: 34%;
  }
  .required.required1::after {
    left: 40%;
  }
  .required.required2::after {
    left: 45%;
  }
  .required.required3::after {
    left: 51%;
  }
  .required.required4::after {
    top: 10%;
    left: 81%;
  }
}

.form__input {
  padding: 1rem 2rem;
  /* margin-top: 1.25rem; */
  width: 100%;
  font-size: 0.9375rem;
  line-height: 1;
  border-radius: 0;
  appearance: none;
  background-image: none;
  border-radius: 73px;
  border: none;
  box-shadow: inset 0px -3px 5px 0px rgba(0, 0, 0, 0.31),
    -4px -4px 8px rgba(255, 255, 255, 0.65);
}
@media screen and (max-width: 767px) {
  .form-input input {
    margin-top: 0.625rem;
  }
}

.form-title {
  color: #f59090;
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 0.8rem;
  padding-left: 0.8rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .form-title {
    color: #f59090;
    font-size: 1rem;
    font-weight: 300;
  }
}

.treatment__options {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}

.treatment__option {
  display: flex;
  position: relative;
}

.treatment__option input[type="radio"] {
  display: none;
}

.treatment__option input[type="radio"] + .treatment__option-text::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  /* border: 2px solid #d36a6a; */
  border-radius: 50%;
  margin-right: 8px;
  background-color: #ffffff;
  position: relative;
}

.treatment__option
  input[type="radio"]:checked
  + .treatment__option-text::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #d36a6a;
  border-radius: 50%;
  position: absolute;
  top: 42%;
  left: 9px;
  transform: translate(-50%, -50%);
}

.treatment__option-text {
  font-size: 18px;
  color: #f59090;
  cursor: pointer;
}

.treatment__option input[type="radio"]:checked + .treatment__option-text {
  color: #f59090;
}

.form__wrap {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  align-items: center;
}

.form__label-date {
  font-size: 1.2rem;
  color: #fff;
  background-color: #ef657b;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  line-height: 1.2;
  border-radius: 22.84px;
  font-weight: 300;
}

.form__input.form__input--date {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .form__input.form__input--date {
    width: 72%;
  }
  input::placeholder {
    font-size: 12px;
  }
}

.form__section2 {
  margin-top: 50px;
}

/* ご希望のプラン */

.form__label-date.plan__title {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .form__label-date.plan__title {
    display: block;
    text-align: center;
  }
}

.form__label-date.plan__title2 {
  max-width: 25%;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .form__label-date.plan__title2 {
    max-width: 90%;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 auto;
  }
}

.plan__text {
  margin: 0 auto;
  font-size: 1rem;
  letter-spacing: 0.08em;
  max-width: 54%;
  color: #464646;
}
@media screen and (max-width: 767px) {
  .plan__text {
    max-width: 85%;
    font-size: 0.875rem;
    font-weight: 300;
  }
}

.pricing-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .pricing-menu {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
}

.pricing-menu__body {
  margin-top: 20px;
  position: relative;
}

.pricing-menu__body::after {
  content: ""; /* 擬似要素にはcontentプロパティが必須 */
  display: block; /* 画像のように扱うためにblockレベル要素に */
  background-color: #f59090;
  width: 1px; /* 画像の幅 */
  height: 177px;
  position: absolute;
  top: 0%;
  left: 40%;
}

.pricing-menu__table {
  flex: 1;
  min-width: 200px;
  max-width: 30%;
}

@media screen and (max-width: 767px) {
  .pricing-menu__table {
    min-width: 200px;
    max-width: 90%;
    width: 90%;
  }
}

.pricing-menu__row {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  border-bottom: 1px solid #f59090;
  color: #f59090;
}

.pricing-menu__row:last-child {
  border-bottom: none;
}

.pricing-menu__time {
  max-width: 30%;
}

.pricing-menu__time,
.pricing-menu__price {
  text-align: center;
}

.pricing-menu__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 60%;
}
@media screen and (max-width: 767px) {
  .pricing-menu__options {
    max-width: 100%;
  }
}

.pricing-menu__option {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 73px;
  padding: 10px;
  cursor: pointer;
  box-shadow: inset 0px -3px 5px 0px rgba(0, 0, 0, 0.31),
    -4px -4px 8px rgba(255, 255, 255, 0.65);
  position: relative;
}

.pricing-menu__option input[type="checkbox"] {
  display: none;
}

.pricing-menu__option
  input[type="checkbox"]
  + .pricing-menu__option-text::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  background-color: #fdebee;
  border-radius: 5px;
  font-size: 18px;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 17%;
  left: 20px;
  line-height: 28px; /* チェックマークの縦位置調整 */
  text-align: center; /* チェックマークの横位置調整 */
}
@media screen and (max-width: 767px) {
  .pricing-menu__option
    input[type="checkbox"]
    + .pricing-menu__option-text::before {
    top: 10%;
    left: 20px;
  }
}

.pricing-menu__option
  input[type="checkbox"]:checked
  + .pricing-menu__option-text::before {
  content: "✔︎";
  color: #d36a6a;
  font-size: 32px;
}

.pricing-menu__option-text {
  flex: 1;
  color: #f59090;
  text-align: center;
  font-size: 16px;
  margin-left: 30px; /* チェックボックスのスペースを確保 */
}
@media screen and (max-width: 767px) {
  .pricing-menu__option-text {
    font-size: 13px;
  }
}

.contact-texstarea {
  height: 250px;
  padding: 2rem;
}

.required2::before {
  content: "複数選択可";
  padding: 0.2rem 1rem;
  color: #fff;
  background: #65a8c1;
  font-size: 1rem;
  border-radius: 1em;
  position: absolute;
  top: 20%;
  left: 27%;
}
@media screen and (max-width: 767px) {
  .required2::before {
    font-size: 0.8rem;
    left: 64%;
  }
}

.p-btn-container.p-contact {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .appearance .r-privacy {
    font-size: 0.7rem;
  }
}

@media screen and (max-width: 767px) {
  .cf__body {
    padding: 1.875rem 0.5rem;
  }
}

.cf__text-l {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 300;
  color: #f59090;
}
@media screen and (max-width: 767px) {
  .cf__text-l {
    font-size: 1.125rem;
  }
}

.confirmation {
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .confirmation {
    padding: 1.25rem 0rem;
  }
}

.confirmation__group {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  color: #464646;
  gap: 5rem;
  border-bottom: 2px dotted #f59090;
}
@media screen and (max-width: 767px) {
  .confirmation__group {
    font-size: 0.875rem;
    gap: 1.375rem;
  }
}

@media screen and (max-width: 767px) {
  .confirmation__group.confirmation__group-chek {
    border-bottom: none;
    margin-bottom: 0px;
    align-items: end;
  }
}

@media screen and (max-width: 767px) {
  .confirmation__group-chek1 {
    display: block;
  }
}

.confirmation__label {
  text-align: right;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .confirmation__label {
    width: 33%;
  }
}

.confirmation__value {
  width: 70%;
  text-align-last: left;
  word-wrap: break-word; /* 旧版のためのスタイル */
  overflow-wrap: break-word; /* 新版のためのスタイル */
}
@media screen and (max-width: 767px) {
  .confirmation__value {
    width: 60%;
  }
}

.confirmation__actions {
  display: flex;
  justify-content: center;
  margin-top: 1.875rem;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .confirmation__actions {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

.confirmation__button {
  cursor: pointer;
  background-color: #fff;
  border: none;
  max-width: 12.5rem;
}

@media screen and (max-width: 767px) {
  .confirmation__button--back {
    margin-top: 1rem;
  }
}

.error-message {
  color: #f59090;
  font-size: 0.9rem;
  padding-left: 0.8rem;
}

.pagination {
  display: flex; /* フレックスボックスを使用して水平に配置 */
  justify-content: center; /* ページネーションを中央揃え */
  margin: 20px 0; /* 上下のマージンを追加 */
  list-style: none; /* デフォルトのリストスタイルを無効に */
  padding: 0; /* パディングをリセット */
  padding-bottom: 3.125rem;
}

.pagination a,
.pagination span {
  color: #f4bcc5; /* リンクとテキストの色 */
  padding: 10px 15px; /* クリックしやすいようにパディングを追加 */
  margin: 0 5px; /* ボタン同士の間隔を設定 */
  border: 1px solid #f4bcc5; /* 枠線を追加 */
  border-radius: 4px; /* 角を丸くする */
  text-decoration: none; /* リンクの下線を削除 */
  transition: background-color 0.3s ease; /* 背景色の変化にアニメーションを追加 */
}

.pagination a:hover,
.pagination .current {
  background-color: #f4bcc5; /* ホバー時と現在のページの背景色 */
  color: #fff; /* テキスト色を白に */
  border-color: #f4bcc5; /* 枠線の色 */
}

.pagination .prev,
.pagination .next {
  font-weight: bold; /* 前へ・次へを太字に */
}

.wpcf7 .wpcf7-spinner {
  display: none !important;
}

.center {
  text-align: center;
}

.mt-100 {
  margin-top: 100;
}

.mt-32 {
  margin-top: 2rem;
}

.mt-16 {
  margin-top: 1rem;
}

.mt-24 {
  margin-top: 1.5rem;
}

.ml-16 {
  margin-left: 1rem;
}

.pl-16 {
  padding-left: 1rem;
}
.mt-48 {
  margin-top: 3rem;
}

.c-concept-inner {
  max-width: 82.813rem;
}

.c-before-inner {
  max-width: 82.813rem;
}

.c-price-inner {
  max-width: 82.813rem;
}

.w-90 {
  width: 90%;
  margin: auto;
}

.w-absolute {
  position: absolute;
  right: 50%;
  bottom: 0;
  transform: translate(50%, 50%);
}

.w-447 {
  max-width: 27rem !important;
  width: 100%;
}

.w-543 {
  max-width: 34rem !important;
}
.worries__title.section-title-main {
  width: 100%;
  max-width: 100%;
}
.worries__title.section-title-main.w-76 {
  max-width: 628px;
}
@media screen and (max-width: 767px) {
  .text-left {
    text-align: left;
  }
  .w-90 {
    width: 100%;
  }
  .w-543 {
    max-width: 100% !important;
  }
}
.text-bk.bust-concept.bold {
  font-size: 2rem;
  line-height: 2;
  color: #683835;
  font-weight: bold;
  font-family: "Noto Sans JP";
}
.text-bk.bust-concept.fz-18 {
  font-size: 1.8rem;
}
.text-bk.bust-concept.bold.fz-18 {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .text-bk.bust-concept.bold {
    font-size: 1.1rem;
  }
  .text-bk.bust-concept.bold.fz-18 {
    font-size: 1.1rem;
  }
  .text-bk.bust-concept.fz-18 {
    font-size: 1.1rem;
  }
  .section-title-main.c-concept-title.facia-concept.facial {
    transform: translate(-50%, -166%);
  }
}

.pr-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.faq-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin: auto;
}
