@charset "UTF-8";
*,
*::before,
*::after {
  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;
}

/* 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 {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* 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]) {
  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;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 1805px) {
  html {
    font-size: 0.8864265928vw;
  }
}
@media screen and (max-width: 1025px) {
  html {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.3529411765vw;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: initial;
  }
}

a {
  -webkit-text-decoration: none;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

/* hover指定できるPCを想定したスタイル */
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
/* hoverが使えないタッチ端末を想定した装飾 */
@media (hover: none) {
  a:active {
    opacity: 0.7;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  color: #4b4240;
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  height: 100%;
  line-height: 1.5;
  min-height: 100dvh;
  text-rendering: optimizeSpeed;
}

main {
  flex: 1;
}

.l-container {
  background: linear-gradient(to right, #FDF4E6, #FBF9F5);
  box-shadow: 0 0 1.5rem rgba(170, 160, 147, 0.38);
  height: 100vh;
  height: 100dvh;
  overflow-x: clip;
  overflow-y: auto;
}

.l-container::before {
  background: url(../images/common/leaf-right.webp) no-repeat right center/contain;
  bottom: -5%;
  content: "";
  height: 584px;
  height: 36.5rem;
  position: fixed;
  right: -2%;
  width: 638px;
  width: 39.875rem;
}
@media screen and (max-width: 767px) {
  .l-container::before {
    content: none;
  }
}

.l-container__inner {
  display: flex;
  min-height: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-container__inner {
    flex-direction: column;
  }
}

.l-header {
  bottom: auto;
  height: 60px;
  height: 3.75rem;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 90px;
    height: 5.625rem;
  }
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 730px;
  max-width: 45.625rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 572px;
    max-width: 35.75rem;
    padding-left: 16px;
    padding-left: 1rem;
    padding-right: 16px;
    padding-right: 1rem;
  }
}

.l-inner2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 1805px;
  max-width: 112.8125rem;
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-inner2 {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.l-main {
  background-color: #fbf9f6;
  border-radius: 5rem 5rem 0 0;
  box-shadow: 0 0 1.5rem rgba(170, 160, 147, 0.38);
  flex: 1;
  margin-left: 20px;
  margin-left: 1.25rem;
  margin-right: 20px;
  margin-right: 1.25rem;
  margin-top: 16px;
  margin-top: 1rem;
  min-width: 680px;
  min-width: 42.5rem;
}
@media screen and (max-width: 1025px) {
  .l-main {
    margin-left: auto;
    margin-right: auto;
    max-width: 680px;
    max-width: 42.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-main {
    border-radius: 0;
    box-shadow: none;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    min-width: auto;
  }
}

.l-main__inner {
  margin: 0 auto;
  max-width: 680px;
  max-width: 42.5rem;
}

.c-button1 {
  align-items: center;
  background-color: #fff;
  border: 0.5px solid #916b42;
  border-radius: 100vmax;
  color: #916b42;
  display: inline-flex;
  padding: 11.2px 16px 13.2px 16.6px;
  padding: 0.7rem 1rem 0.825rem 1.0375rem;
  position: relative;
  transition: color 0.3s ease-out;
  width: 100%;
  z-index: 1;
}
.c-button1::before {
  background: linear-gradient(to right, #be9f7d, #e0c490);
  border-radius: 100vmax;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  visibility: hidden;
  width: 100%;
  z-index: -1;
}
.c-button1::after {
  background-color: #916b42;
  border-radius: 50%;
  content: "";
  height: 4px;
  height: 0.25rem;
  position: absolute;
  right: 16px;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s ease-out;
  width: 4px;
  width: 0.25rem;
}
@media screen and (max-width: 480px) {
  .c-button1 {
    padding-right: 50px;
    padding-right: 3.125rem;
  }
}

.c-button1__icon {
  color: #916b42;
  flex-shrink: 0;
  height: max(14px, 10px);
  height: max(0.875rem, 10px);
  margin-right: 8px;
  margin-right: 0.5rem;
  transition: color 0.3s ease-out;
  width: max(14px, 10px);
  width: max(0.875rem, 10px);
}

.c-button1__text {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1;
}

.c-button1--black {
  border: 1px solid #4d4d4d;
  border: 0.0625rem solid #4d4d4d;
  color: #4d4d4d;
}
.c-button1--black::before {
  background: linear-gradient(to right, #be9f7d, #e0c490);
}
.c-button1--black::after {
  background-color: #4d4d4d;
}
.c-button1--black .c-button1__icon {
  color: #4d4d4d;
}

@media (hover: hover) {
  .c-button1:hover {
    color: #fff;
    opacity: 1;
  }
  .c-button1:hover::before {
    opacity: 1;
    visibility: visible;
  }
  .c-button1:hover::after {
    background-color: #fff;
  }
  .c-button1:hover .c-button1__icon {
    color: #fff;
  }
  .c-button1--black:hover {
    border: 1px solid #916b42;
    border: 0.0625rem solid #916b42;
  }
}
.c-button2 {
  align-items: center;
  background-color: #fff;
  border-radius: 100vmax;
  box-shadow: 0 0.1875rem 1.125rem rgba(11, 8, 2, 0.21);
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  height: 92.36px;
  height: 5.7725rem;
  justify-content: center;
  line-height: 1;
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-right: 10px;
  padding-right: 0.625rem;
  position: relative;
  text-align: center;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border 0.3s ease-out, color 0.3s ease-out;
  width: 100%;
  z-index: 1;
}
.c-button2::before {
  background: linear-gradient(to right, #be9f7d, #e0c490);
  border-radius: 100vmax;
  content: "";
  height: 100%;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  visibility: visible;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c-button2 {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    font-weight: 400;
  }
}

.c-button2 span {
  display: block;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
}
@media screen and (max-width: 767px) {
  .c-button2 span {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
}

.c-button2--red::before {
  background: linear-gradient(to right, #AF2D5C, #E66B8C);
}

.c-button2--small {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  height: 63px;
  height: 3.9375rem;
}

.c-button2--md {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  height: 63px;
  height: 3.9375rem;
}
@media screen and (max-width: 480px) {
  .c-button2--md {
    height: 80px;
    height: 5rem;
  }
}

.c-button2--md span {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  margin-bottom: 2px;
  margin-bottom: 0.125rem;
}
@media screen and (max-width: 480px) {
  .c-button2--md span {
    margin-bottom: 2px;
    margin-bottom: 0.125rem;
  }
}

.c-button2--h88 {
  font-size: 24px;
  font-size: 1.5rem;
  height: 88px;
  height: 5.5rem;
}
@media screen and (max-width: 480px) {
  .c-button2--h88 {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
  }
}

.c-button2--h88 span {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
}
@media screen and (max-width: 480px) {
  .c-button2--h88 span {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
}

.c-button2.is-disabled {
  background-color: #F3F1EE;
  box-shadow: none;
  color: #B1B1B1;
  cursor: not-allowed;
  pointer-events: none;
}
.c-button2.is-disabled::before {
  display: none;
}

@media (hover: hover) {
  .c-button2:hover {
    border: 1px solid #916b42;
    border: 0.0625rem solid #916b42;
    box-shadow: none;
    color: #916b42;
    opacity: 1;
    transform: translateY(3px);
  }
  .c-button2:hover::before {
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (hover: hover) and (max-width: 1025px) {
  .c-button2:hover {
    transform: translateY(2px);
  }
}
@media (hover: hover) {
  .c-button2--red:hover {
    border: 1px solid #AF2D5B;
    border: 0.0625rem solid #AF2D5B;
    color: #AF2D5B;
  }
}
.p-about-treatment {
  background-color: #fbf9f6;
  margin-top: -35px;
  margin-top: -2.1875rem;
  padding-bottom: 54px;
  padding-bottom: 3.375rem;
  padding-top: 160px;
  padding-top: 10rem;
  position: relative;
}

.p-about-treatment::before {
  background: url(../images/lp/about-treatment-bg.webp) no-repeat bottom center/cover;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.p-about-treatment__inner {
  padding-left: 40px;
  padding-left: 2.5rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  position: relative;
  width: 100%;
}

.p-about-treatment__badge {
  left: 50%;
  position: absolute;
  top: -4.2%;
  transform: translateX(-50%);
  width: 218px;
  width: 13.625rem;
  z-index: 20;
}

.p-about-treatment__badge img {
  aspect-ratio: 218/249;
  height: auto;
  width: 100%;
}

.p-about-treatment__badge-text {
  color: #ad9c89;
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.09;
  margin-top: 0;
}

.p-about-treatment__subtitle-wrapper {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}

.p-about-treatment__subtitle {
  color: #584D4B;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  line-height: 1.4583333333;
  padding-left: 39px;
  padding-left: 2.4375rem;
  padding-right: 39px;
  padding-right: 2.4375rem;
  position: relative;
}

.p-about-treatment__subtitle span {
  color: #ff7b71;
}

.p-about-treatment__subtitle::after {
  aspect-ratio: 500/11;
  background: url(../images/lp/title-line.svg) no-repeat center center/contain;
  bottom: -15px;
  bottom: -0.9375rem;
  content: "";
  display: inline-block;
  height: auto;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}

.p-about-treatment__title {
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: 54px;
  font-size: 3.375rem;
  font-weight: 300;
  line-height: 1.44;
  margin-top: 12px;
  margin-top: 0.75rem;
  text-align: center;
}

.p-about-treatment__features {
  margin-left: auto;
  margin-right: auto;
  margin-top: -16px;
  margin-top: -1rem;
}

.p-about-treatment__features img {
  aspect-ratio: 592/143;
  height: auto;
  width: 100%;
}

.p-about-treatment__description {
  color: #584D4B;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  line-height: 1.5833333333;
  margin-top: -1px;
  margin-top: -0.0625rem;
  text-align: center;
}

.p-about-treatment__message {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  gap: 0rem;
  justify-content: center;
  margin-top: 32px;
  margin-top: 2rem;
  padding-left: 5px;
  padding-left: 0.3125rem;
}

.p-about-treatment__message-text {
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: 54px;
  font-size: 3.375rem;
  font-weight: 300;
  line-height: 1.44;
}

.p-about-treatment__message-text span {
  color: #ff7b71;
}

.p-about-treatment__message-text--main {
  margin-left: 0px;
  margin-left: 0rem;
  padding-right: 15px;
  padding-right: 0.9375rem;
}

.p-about-treatment__message-text--accent {
  color: #ff7b71;
  font-size: 64px;
  font-size: 4rem;
  line-height: 1;
  transform-origin: center;
}

.p-about-treatment__message-text--accent:nth-of-type(3) {
  letter-spacing: -0.15em;
  transform: rotate(-2deg) translate(-6px, -6px);
}
@media screen and (max-width: 1440px) {
  .p-about-treatment__message-text--accent:nth-of-type(3) {
    transform: rotate(-2deg) translate(-3px, -6px);
  }
}
@media screen and (max-width: 480px) {
  .p-about-treatment__message-text--accent:nth-of-type(3) {
    transform: rotate(-2deg) translate(-1px, -6px);
  }
}

.p-about-treatment__message-text--accent:nth-of-type(4) {
  letter-spacing: -0.15em;
  transform: rotate(3deg) translateX(8px);
}

.p-about-treatment__message-text--accent:nth-of-type(5) {
  letter-spacing: -0.2em;
  transform: rotate(12deg) translateY(-5px);
}

.p-about-treatment__before-after {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  margin-top: 0.9375rem;
  row-gap: 36px;
  row-gap: 2.25rem;
}

.p-about-treatment__ba-image {
  width: 100%;
}

.p-about-treatment__ba-image img {
  aspect-ratio: 599/349;
  height: auto;
  width: 100%;
}

.p-access {
  padding: 20px 17px 49px 16px;
  padding: 1.25rem 1.0625rem 3.0625rem 1rem;
  position: relative;
}

.p-access::before {
  background: url(../images/common/leaf-left.webp) no-repeat left center/contain;
  bottom: 41px;
  bottom: 2.5625rem;
  content: "";
  height: 261px;
  height: 16.3125rem;
  left: -17px;
  left: -1.0625rem;
  position: absolute;
  width: 285px;
  width: 17.8125rem;
}

.p-access__star {
  background: url(../images/common/icon-star.webp) no-repeat center center/contain;
  height: 10.28px;
  height: 0.6425rem;
  margin-left: auto;
  margin-right: auto;
  width: 10.28px;
  width: 0.6425rem;
}

.p-access__slogan {
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  font-weight: 400;
  line-height: 1.46;
  margin-top: 18px;
  margin-top: 1.125rem;
  text-align: center;
}

.p-access__slogan span {
  -webkit-text-decoration: underline;
  color: #53A598;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 12px;
  text-underline-offset: 0.75rem;
}

.p-access__map {
  border-radius: 2.5rem;
  margin-top: 28px;
  margin-top: 1.75rem;
  overflow: hidden;
  width: 100%;
}

.p-access__map img {
  aspect-ratio: 647/358;
  height: auto;
  width: 100%;
}

.p-access__info {
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  display: flex;
  margin-top: 16px;
  margin-top: 1rem;
  padding-left: 23px;
  padding-left: 1.4375rem;
  padding-right: 23px;
  padding-right: 1.4375rem;
}

.p-access__title {
  color: #ad9c89;
  flex-shrink: 0;
  font-family: optima-lt-pro, sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 0.56;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (max-width: 480px) {
  .p-access__title {
    font-size: max(40px, 10px);
    font-size: max(2.5rem, 10px);
  }
}

.p-access__details {
  flex: 1;
}

.p-access__details p {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.75;
}

.p-access__map-btn {
  margin-top: 10px;
  margin-top: 0.625rem;
  width: 242px;
  width: 15.125rem;
}
@media screen and (max-width: 480px) {
  .p-access__map-btn {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-faq {
  background: linear-gradient(to bottom, #F2E0CB, #D8EDD3);
  counter-reset: qa-counter;
  padding-bottom: 54.5px;
  padding-bottom: 3.40625rem;
  padding-top: 55px;
  padding-top: 3.4375rem;
}

.p-faq__inner {
  padding-left: 16px;
  padding-left: 1rem;
  padding-right: 17px;
  padding-right: 1.0625rem;
  width: 100%;
}

.p-faq__title {
  text-align: center;
}

.p-faq__title-main {
  color: #ad9c89;
  font-family: optima-lt-pro, sans-serif;
  font-size: 64px;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.328125;
}

.p-faq__title-text {
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.p-faq__list {
  grid-gap: 25px;
  display: grid;
  gap: 25px;
  gap: 1.5625rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-faq__summary {
  grid-gap: 19px;
  align-items: center;
  background-color: #fff;
  border-radius: 0.5rem;
  cursor: pointer;
  display: grid;
  gap: 19px;
  gap: 1.1875rem;
  grid-template-columns: auto 1fr auto;
  list-style: none;
  padding: 18px 16px 13px 8.5px;
  padding: 1.125rem 1rem 0.8125rem 0.53125rem;
  position: relative;
}
.p-faq__summary::-webkit-details-marker {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-faq__summary {
    gap: 10px;
    gap: 0.625rem;
    padding: 12px 16px;
    padding: 0.75rem 1rem;
  }
}

.p-faq__item {
  color: #414141;
  counter-increment: qa-counter;
}

.p-faq__qnum {
  background-image: url(../images/lp/qa-speak-bubble.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  flex-shrink: 0;
  height: 49px;
  height: 3.0625rem;
  justify-content: center;
  padding-top: 8px;
  padding-top: 0.5rem;
  width: 46px;
  width: 2.875rem;
}

.p-faq__qnum::before {
  color: #fff;
  content: "Q" counter(qa-counter);
  font-family: optima-lt-pro, sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.p-faq__qtext {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
}

.p-faq__toggle {
  height: 16px;
  height: 1rem;
  position: relative;
  transform-origin: 50% 50%;
  transition: transform 0.25s ease;
  width: 21px;
  width: 1.3125rem;
}

.p-faq__toggle::before,
.p-faq__toggle::after {
  background: #414141;
  bottom: 0;
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  transform-origin: bottom center;
  width: 1px;
}

.p-faq__toggle::after {
  transform: translateX(-50%) rotate(25deg);
}

.p-faq__toggle::before {
  transform: translateX(-50%) rotate(-25deg);
}

.p-faq__item[open] .p-faq__toggle {
  transform: rotate(180deg);
}

.p-faq__answer-inner {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7142857143;
  padding: 16px 24px 0;
  padding: 1rem 1.5rem 0;
}

.p-fixed-buttons {
  height: 100vh;
  opacity: 1;
  overflow: hidden;
  pointer-events: auto;
  position: relative;
  position: sticky;
  top: 0;
  width: 30.6212242106%;
}
@media screen and (max-width: 1025px) {
  .p-fixed-buttons {
    background-color: rgba(255, 255, 255, 0.7);
    bottom: 0;
    bottom: env(safe-area-inset-bottom);
    height: -moz-fit-content;
    height: fit-content;
    height: auto;
    left: 50%;
    max-width: 680px;
    max-width: 42.5rem;
    opacity: 0;
    overflow: visible;
    padding: 10px;
    padding: 0.625rem;
    pointer-events: none;
    position: fixed;
    top: auto;
    top: initial;
    transform: translateX(-50%);
    transition: opacity 0.6s ease-in-out;
    width: 100%;
    z-index: 1000;
  }
}

@media screen and (max-width: 1025px) {
  .p-fixed-buttons.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
}

.p-fixed-buttons__inner {
  height: 100%;
  position: relative;
}

.p-fixed-buttons__content {
  max-width: 452.58px;
  max-width: 28.28625rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
@media screen and (max-width: 1025px) {
  .p-fixed-buttons__content {
    grid-gap: 10px;
    display: grid;
    gap: 10px;
    gap: 0.625rem;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    position: static;
    transform: none;
  }
}

.p-fixed-buttons__label {
  color: #414141;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  line-height: 2.7777777778;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  text-align: center;
}
@media screen and (max-width: 1025px) {
  .p-fixed-buttons__label {
    display: none;
  }
}

.p-fixed-buttons__item:first-child {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 1025px) {
  .p-fixed-buttons__item:first-child {
    margin-top: 0;
  }
}

.p-fixed-buttons__item + .p-fixed-buttons__item {
  margin-top: 21.8px;
  margin-top: 1.3625rem;
}
@media screen and (max-width: 1025px) {
  .p-fixed-buttons__item + .p-fixed-buttons__item {
    margin-top: 0;
  }
}

@media screen and (max-width: 1025px) {
  .p-fixed-buttons__link.c-button2 {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    height: 63px;
    height: 3.9375rem;
  }
}
@media screen and (max-width: 480px) {
  .p-fixed-buttons__link.c-button2 {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    height: 80px;
    height: 5rem;
  }
}

@media screen and (max-width: 1025px) {
  .p-fixed-buttons__link.c-button2 span {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
  }
}
@media screen and (max-width: 480px) {
  .p-fixed-buttons__link.c-button2 span {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    margin-bottom: 2px;
    margin-bottom: 0.125rem;
  }
}

.p-fixed-logo {
  height: 100vh;
  overflow: hidden;
  position: relative;
  position: sticky;
  top: 0;
  width: 30.6212242106%;
}
@media screen and (max-width: 1025px) {
  .p-fixed-logo {
    display: none;
  }
}

.p-fixed-logo__inner {
  height: 100%;
  position: relative;
}

.p-fixed-logo__content {
  left: 16%;
  max-width: 236.98px;
  max-width: 14.81125rem;
  position: absolute;
  top: 47%;
  transform: translateY(-50%);
  width: 100%;
}

.p-fixed-logo__image {
  width: 100%;
}

.p-fixed-logo__image img {
  -o-object-fit: contain;
  aspect-ratio: 236.98/176.11;
  height: auto;
     object-fit: contain;
  width: 100%;
}

.p-fixed-logo__shop-name {
  color: #A56D35;
  font-size: max(21px, 10px);
  font-size: max(1.3125rem, 10px);
  font-weight: 500;
  line-height: 1.1428571429;
  margin-top: 14.5px;
  margin-top: 0.90625rem;
  text-align: center;
}

.p-flow {
  background-color: #EFF8F6;
  padding-bottom: 117px;
  padding-bottom: 7.3125rem;
}

.p-flow__inner {
  padding-left: 15.3px;
  padding-left: 0.95625rem;
  padding-right: 16px;
  padding-right: 1rem;
}

.p-flow__header {
  background: url(../images/lp/flow-bg.webp) no-repeat center bottom/cover;
  padding: 38px 24px 70px;
  padding: 2.375rem 1.5rem 4.375rem;
  text-align: center;
}

.p-flow__header-label {
  color: #fff;
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: max(25px, 10px);
  font-size: max(1.5625rem, 10px);
  font-weight: 300;
  line-height: 1;
  padding-left: 10px;
  padding-left: 0.625rem;
}

.p-flow__header-label span {
  -webkit-text-emphasis: dot #fff;
  color: #FFF0BC;
  text-emphasis: dot #fff;
}

.p-flow__header-title {
  color: #fff;
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: 54px;
  font-size: 3.375rem;
  font-weight: 300;
  line-height: 1.2;
  margin-top: 11px;
  margin-top: 0.6875rem;
}

.p-flow__list {
  margin-top: 21.2px;
  margin-top: 1.325rem;
  position: relative;
}

.p-flow__list::before {
  background-color: #DEC18F;
  content: "";
  height: 105%;
  left: 5.5%;
  position: absolute;
  top: 2%;
  width: 1px;
  width: 0.0625rem;
}

.p-flow__item {
  -moz-column-gap: 1.1875rem;
       column-gap: 1.1875rem;
  display: flex;
}

.p-flow__item:not(:first-child) {
  margin-top: 28.6px;
  margin-top: 1.7875rem;
}

.p-flow__number {
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  color: #DEC18F;
  display: flex;
  flex-shrink: 0;
  font-family: optima-lt-pro, sans-serif;
  font-size: 34px;
  font-size: 2.125rem;
  height: 74px;
  height: 4.625rem;
  justify-content: center;
  line-height: 1;
  position: relative;
  width: 74px;
  width: 4.625rem;
}

.p-flow__content {
  flex: 1;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-flow__title {
  color: #53A598;
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.375;
}

.p-flow__text {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  line-height: 1.7777777778;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-flow__buttons {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
  margin-top: 0.75rem;
  row-gap: 14.2px;
  row-gap: 0.8875rem;
}

.p-flow__image {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-flow__image img {
  aspect-ratio: 556/302;
  border-radius: 0.5rem;
  height: auto;
  width: 100%;
}

.p-flow__pulse {
  -moz-column-gap: 0.9875rem;
  align-items: center;
  background-color: #fff;
  border-radius: 0.5rem;
       column-gap: 0.9875rem;
  display: flex;
  margin-top: 23.9px;
  margin-top: 1.49375rem;
  padding: 16px 20px 16px 16.4px;
  padding: 1rem 1.25rem 1rem 1.025rem;
}

.p-flow__pulse-image {
  flex-shrink: 0;
  width: 138px;
  width: 8.625rem;
}

.p-flow__pulse-image img {
  aspect-ratio: 1/1;
  border-radius: 0.375rem;
  height: auto;
  width: 100%;
}

.p-flow__pulse-content {
  flex: 1;
}

.p-flow__pulse-title {
  color: #ad9c89;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 500;
  line-height: 1.7777777778;
}

.p-flow__pulse-description {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 2;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-footer {
  background-color: #ad9c89;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  padding-top: 95px;
  padding-top: 5.9375rem;
}
@media screen and (max-width: 1025px) {
  .p-footer {
    padding-bottom: 115px;
    padding-bottom: 7.1875rem;
  }
}

.p-footer__inner {
  padding-left: 83px;
  padding-left: 5.1875rem;
  padding-right: 80px;
  padding-right: 5rem;
  text-align: center;
}

.p-footer__logo {
  margin-left: auto;
  margin-right: auto;
  width: 366.36px;
  width: 22.8975rem;
}

.p-footer__logo img {
  -o-object-fit: contain;
  height: auto;
     object-fit: contain;
  width: 100%;
}

.p-footer__nav {
  margin-top: 70px;
  margin-top: 4.375rem;
}

.p-footer__nav-items {
  -moz-column-gap: 3.75rem;
  align-items: center;
       column-gap: 3.75rem;
  display: flex;
}
@media screen and (max-width: 480px) {
  .p-footer__nav-items {
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
    justify-content: space-between;
  }
}

.p-footer__nav-item a {
  color: #fff;
  display: inline-block;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.5;
  padding: 10px;
  padding: 0.625rem;
  white-space: nowrap;
}

.p-footer__copyright {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.p-footer__copyright small {
  color: #fff;
  font-family: avenir-lt-pro, sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 300;
  line-height: 1.3571428571;
}

.p-hero {
  aspect-ratio: 680/1063;
  border-radius: 5rem 5rem 0 0;
  height: calc(100dvh - 1rem);
  min-height: 800px;
  min-height: 50rem;
  overflow: clip;
  position: relative;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-hero {
    border-radius: 0;
  }
}

.p-hero::before {
  aspect-ratio: 680/1063;
  background: url(../images/lp/hero_bg.webp) no-repeat top center/cover;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.p-hero__card {
  height: 100%;
  position: relative;
  width: 100%;
}

.p-hero__card-image {
  height: 47%;
  position: absolute;
  right: 2%;
  top: 4%;
  width: auto;
}

.p-hero__card-image img {
  aspect-ratio: 176/566;
  height: 100%;
  width: auto;
}

.p-hero__shop {
  left: 30px;
  left: 1.875rem;
  position: absolute;
  top: 32.8px;
  top: 2.05rem;
  z-index: 10;
}

.p-hero__shop-logo {
  display: block;
  width: 102.78px;
  width: 6.42375rem;
}

.p-hero__shop-logo img {
  -o-object-fit: contain;
  aspect-ratio: 102.78/76.38;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

.p-hero__shop-name {
  color: #fff;
  display: block;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.2857142857;
  margin-top: 10px;
  margin-top: 0.625rem;
  text-align: center;
}

.p-hero__content {
  bottom: 0.5%;
  left: 50%;
  padding: 0 40px 0 40px;
  padding: 0 2.5rem 0 2.5rem;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  width: 100%;
  z-index: 10;
}

.p-hero__features {
  align-items: center;
  display: flex;
  gap: 16px;
  gap: 1rem;
  justify-content: space-between;
}

.p-hero__feature-item {
  align-items: center;
  background-color: #fff;
  display: flex;
  justify-content: center;
  width: 43.1666666667%;
}

.p-hero__feature-text {
  color: #916b42;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
  padding: 9px 8px 12px;
  padding: 0.5625rem 0.5rem 0.75rem;
  text-align: center;
}

.p-hero__feature-divider {
  background: url(../images/lp/icon-multiplication.svg) no-repeat center center/contain;
  flex-shrink: 0;
  height: 26.7px;
  height: 1.66875rem;
  width: 26.7px;
  width: 1.66875rem;
}

.p-hero__slogan-wrapper {
  margin-top: 18px;
  margin-top: 1.125rem;
}

.p-hero__slogan {
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .p-hero__slogan {
    font-size: max(25px, 10px);
    font-size: max(1.5625rem, 10px);
  }
}

.p-hero__slogan-image {
  margin-left: auto;
  margin-right: auto;
  margin-top: 8px;
  margin-top: 0.5rem;
  width: 97.1666666667%;
}

.p-hero__slogan-image img {
  aspect-ratio: 583/84;
  height: auto;
  width: 100%;
}

.p-hero__services {
  grid-column-gap: 1rem;
  -moz-column-gap: 1rem;
  align-items: center;
       column-gap: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 11.125rem));
  justify-content: space-between;
  position: relative;
}

.p-hero__service-circle {
  align-items: center;
  aspect-ratio: 1/1;
  background: url(../images/lp/circle-bg.webp) no-repeat center center/cover;
  border-radius: 50%;
  display: flex;
  height: auto;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.p-hero__service-label {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.p-hero__message {
  bottom: -18px;
  bottom: -1.125rem;
  left: 6px;
  left: 0.375rem;
  position: absolute;
  width: 319px;
  width: 19.9375rem;
  z-index: 10;
}

.p-hero__message img {
  aspect-ratio: 628/124;
  height: auto;
  width: 100%;
}

.p-hero__disclaimer {
  color: #ad9c89;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.43;
  margin-right: -20px;
  margin-right: -1.25rem;
  margin-top: 16px;
  margin-top: 1rem;
  text-align: right;
}

.p-merit {
  margin-top: -155px;
  margin-top: -9.6875rem;
  position: relative;
}

.p-merit__head {
  position: relative;
  width: 100%;
}

.p-merit__head-image {
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  width: 100%;
}

.p-merit__head-image img {
  aspect-ratio: 680/904;
  height: auto;
  width: 100%;
}

.p-merit__head-text {
  position: absolute;
  right: 40px;
  right: 2.5rem;
  top: -50px;
  top: -3.125rem;
  width: 192px;
  width: 12rem;
}

.p-merit__head-text img {
  -o-object-fit: contain;
  aspect-ratio: 192/430;
  height: auto;
     object-fit: contain;
  width: 100%;
}

.p-merit__head-list {
  bottom: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 600px;
  width: 37.5rem;
}

.p-merit__head-list img {
  -o-object-fit: contain;
  aspect-ratio: 600/360;
  height: auto;
     object-fit: contain;
  width: 100%;
}

.p-merit__inner {
  padding: 54.6px 26.8px 50px 26.3px;
  padding: 3.4125rem 1.675rem 3.125rem 1.64375rem;
}

.p-merit__lead {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 38px;
  padding-bottom: 2.375rem;
  position: relative;
  width: 95.5495294305%;
  z-index: 5;
}

.p-merit__lead::after {
  background: url(../images/lp/bubbles.webp) no-repeat center center/contain;
  bottom: 0;
  content: "";
  height: 60px;
  height: 3.75rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 43px;
  width: 2.6875rem;
  z-index: -1;
}

.p-merit__lead-text {
  background: linear-gradient(to right, #be9f7d, #e0c490);
  border-radius: 100vmax;
  color: #FAFBFA;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  line-height: 1.3333333333;
  padding: 14.75px 24px;
  padding: 0.921875rem 1.5rem;
  text-align: center;
}

.p-merit__title {
  color: #584D4B;
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-top: 3px;
  margin-top: 0.1875rem;
  text-align: center;
}

.p-merit__title-em {
  color: #ff7b71;
  font-size: 68px;
  font-size: 4.25rem;
  line-height: 1;
}

.p-merit__graph {
  margin-left: auto;
  margin-right: auto;
  margin-top: 23px;
  margin-top: 1.4375rem;
  width: 95.5495294305%;
}

.p-merit__graph img {
  aspect-ratio: 599/343.9;
  height: auto;
  width: 100%;
}

.p-merit__text {
  color: #584D4B;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  line-height: 1.7777777778;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20.5px;
  margin-top: 1.28125rem;
  width: 95.5495294305%;
}

.p-merit__text span {
  color: #916b42;
}

.p-problem {
  padding-bottom: 130px;
  padding-bottom: 8.125rem;
  padding-top: 110px;
  padding-top: 6.875rem;
  position: relative;
  z-index: 10;
}

.p-problem::before {
  background: url(../images/lp/problem-bg.webp) no-repeat top center/100% 100%;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.p-problem__inner {
  padding-left: 40px;
  padding-left: 2.5rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  position: relative;
}

.p-problem__heading {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

.p-problem__heading span {
  color: #8FA9B7;
  font-size: 64px;
  font-size: 4rem;
  line-height: 1;
  position: relative;
}

.p-problem__heading span::before {
  background: url(../images/lp/deco-problem.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  height: 65.269px;
  height: 4.079375rem;
  left: -24%;
  position: absolute;
  top: -19%;
  width: 72.32px;
  width: 4.52rem;
}

.p-problem__card {
  background-color: #fff;
  border-radius: 0.75rem;
  margin-top: 38px;
  margin-top: 2.375rem;
  padding: 30px 50px 35px;
  padding: 1.875rem 3.125rem 2.1875rem;
}

.p-problem__item {
  align-items: center;
  display: flex;
}

.p-problem__item + .p-problem__item {
  margin-top: 18.5px;
  margin-top: 1.15625rem;
}

.p-problem__icon {
  width: 37.05px;
  width: 2.315625rem;
}

.p-problem__icon img {
  aspect-ratio: 37.05/37;
  height: auto;
  width: 100%;
}

.p-problem__text {
  color: #584D4B;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  line-height: 1.7916666667;
  padding-left: 62.05px;
  padding-left: 3.878125rem;
  position: relative;
}

.p-problem__text span {
  color: #ad9c89;
}

.p-problem__text::before {
  background: url(../images/lp/icon-check.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  height: 37px;
  height: 2.3125rem;
  left: 0;
  position: absolute;
  top: 5px;
  top: 0.3125rem;
  width: 37.05px;
  width: 2.315625rem;
}

.p-problem__description {
  margin-top: 36px;
  margin-top: 2.25rem;
}

.p-problem__description-text {
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  line-height: 1.6666666667;
}

.p-problem__labels {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  gap: 0.5rem;
  margin-top: 18px;
  margin-top: 1.125rem;
}

.p-problem__label {
  background-color: #A7BBC6;
  border-radius: 0.5rem;
  color: #FAFBFA;
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  min-width: 130px;
  min-width: 8.125rem;
  padding: 7px 16px 9px;
  padding: 0.4375rem 1rem 0.5625rem;
  text-align: center;
}

.p-problem__labels + .p-problem__description-text {
  margin-top: 17px;
  margin-top: 1.0625rem;
}

.p-safe-treatment {
  margin-top: -160px;
  margin-top: -10rem;
  overflow: hidden;
  padding-bottom: 370px;
  padding-bottom: 23.125rem;
  padding-top: 125px;
  padding-top: 7.8125rem;
  position: relative;
  z-index: 5;
}

.p-safe-treatment::before {
  background: url(../images/lp/safe-treatment-bg.webp) no-repeat bottom center/cover;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.p-safe-treatment__inner {
  padding-left: 39.3px;
  padding-left: 2.45625rem;
  padding-right: 41.8px;
  padding-right: 2.6125rem;
  position: relative;
  width: 100%;
  z-index: 10;
}

.p-safe-treatment__header {
  text-align: center;
}

.p-safe-treatment__header-small {
  color: #584D4B;
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  font-weight: 300;
  line-height: 1.4583333333;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}

.p-safe-treatment__header-text {
  color: #584D4B;
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.4375;
}

.p-safe-treatment__header-text:first-child {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-safe-treatment__header-text + .p-safe-treatment__header-text {
  margin-top: -3px;
  margin-top: -0.1875rem;
}

.p-safe-treatment__main-title {
  color: #53A598;
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: 54px;
  font-size: 3.375rem;
  font-weight: 300;
  line-height: 1.3703703704;
  text-align: center;
}

.p-safe-treatment__main-title-highlight {
  background: linear-gradient(transparent 60%, #FCF5A5 60%);
  color: #584D4B;
  display: inline-block;
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: 54px;
  font-size: 3.375rem;
  font-weight: 300;
  line-height: 1.3703703704;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  text-align: center;
}

.p-safe-treatment__cards {
  -moz-column-gap: 1.375rem;
  align-items: center;
       column-gap: 1.375rem;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-safe-treatment__card {
  align-items: center;
  background-color: #fff;
  border: 1px solid #53A598;
  border: 0.0625rem solid #53A598;
  border-radius: 50%;
  display: flex;
  height: 183px;
  height: 11.4375rem;
  justify-content: center;
  width: 183px;
  width: 11.4375rem;
}

.p-safe-treatment__card-text {
  color: #53A598;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  font-weight: 500;
  line-height: 1.3333333333;
  text-align: center;
}

.p-safe-treatment__description {
  color: #584D4B;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  line-height: 1.7777777778;
  margin-top: 10px;
  margin-top: 0.625rem;
  text-align: left;
}

.p-shop-list {
  padding-bottom: 55px;
  padding-bottom: 3.4375rem;
  padding-top: 50px;
  padding-top: 3.125rem;
  position: relative;
}

.p-shop-list::before {
  background: url(../images/common/leaf-left.webp) no-repeat left center/contain;
  content: "";
  height: 207px;
  height: 12.9375rem;
  left: -10px;
  left: -0.625rem;
  position: absolute;
  top: -35px;
  top: -2.1875rem;
  width: 226px;
  width: 14.125rem;
}

.p-shop-list__inner {
  padding-left: 16.5px;
  padding-left: 1.03125rem;
  padding-right: 16.5px;
  padding-right: 1.03125rem;
  position: relative;
}

.p-shop-list__heading {
  text-align: center;
}

.p-shop-list__heading-text {
  -moz-column-gap: 0.5rem;
  align-items: center;
       column-gap: 0.5rem;
  display: flex;
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  font-weight: 300;
  justify-content: center;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  .p-shop-list__heading-text {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
  }
}

.p-shop-list__heading-text::before,
.p-shop-list__heading-text::after {
  background: #DEC18F;
  content: "";
  height: 1px;
  width: 35px;
  width: 2.1875rem;
}

.p-shop-list__heading-text::before {
  transform: rotate(55deg);
}

.p-shop-list__heading-text::after {
  transform: rotate(-55deg);
}

.p-shop-list__heading-main {
  color: #ff7b71;
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: 300;
  line-height: 1.6842105263;
  margin-top: -5px;
  margin-top: -0.3125rem;
}

.p-shop-list__heading-main span {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 8px;
  text-underline-offset: 0.5rem;
}

.p-shop-list__items {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-shop-list__item + .p-shop-list__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-shop-card {
  background-color: #fff;
  border-radius: 0.875rem;
  padding: 24px 28.8px 27px 18.8px;
  padding: 1.5rem 1.8rem 1.6875rem 1.175rem;
}

.p-shop-card__head {
  -moz-column-gap: 0.75rem;
  align-items: center;
       column-gap: 0.75rem;
  display: flex;
}

.p-shop-card__image {
  flex-shrink: 0;
  width: 167px;
  width: 10.4375rem;
}

.p-shop-card__image img {
  -o-object-fit: cover;
  aspect-ratio: 167/108;
  border-radius: 10.25rem;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-shop-card__title {
  flex: 1;
}

.p-shop-card__name {
  color: #464343;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4375;
}

.p-shop-card__name-en {
  color: #916C42;
  font-family: optima-lt-pro, sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 400;
  line-height: 1.3571428571;
}

.p-shop-card__body {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-shop-card__row {
  display: flex;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  padding-left: 5px;
  padding-left: 0.3125rem;
}

.p-shop-card__row + .p-shop-card__row {
  border-top: 1px solid #707070;
  border-top: 0.0625rem solid #707070;
  padding-top: 8px;
  padding-top: 0.5rem;
}

.p-shop-card__label {
  color: #ad9c89;
  flex-shrink: 0;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.5;
  margin-top: 3px;
  margin-top: 0.1875rem;
  width: 83.3px;
  width: 5.20625rem;
}

.p-shop-card__info {
  flex: 1;
}

.p-shop-card__text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  line-height: 1.5;
  margin-top: 4px;
  margin-top: 0.25rem;
}

.p-shop-card__row:first-child .p-shop-card__text {
  color: #414141;
}

.p-shop-card__btn {
  margin-top: 10px;
  margin-top: 0.625rem;
  width: 242px;
  width: 15.125rem;
}
@media screen and (max-width: 480px) {
  .p-shop-card__btn {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-shop-card__buttons {
  grid-column-gap: 1.6875rem;
  -moz-column-gap: 1.6875rem;
       column-gap: 1.6875rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 3px;
  margin-top: 0.1875rem;
}
@media screen and (max-width: 480px) {
  .p-shop-card__buttons {
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
  }
}

.p-skin-approach {
  padding-bottom: 190px;
  padding-bottom: 11.875rem;
  padding-top: 45px;
  padding-top: 2.8125rem;
  position: relative;
  z-index: 10;
}

.p-skin-approach::before {
  background: url(../images/lp/skin-approach-bg.webp) no-repeat bottom center/cover;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.p-skin-approach__inner {
  padding-left: 40px;
  padding-left: 2.5rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  position: relative;
}

.p-skin-approach__lead-text {
  -moz-column-gap: 1.25rem;
  align-items: center;
  color: #584D4B;
       column-gap: 1.25rem;
  display: flex;
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  font-weight: 300;
  justify-content: center;
  line-height: 1.4583333333;
}

.p-skin-approach__lead-text::before,
.p-skin-approach__lead-text::after {
  background: #584D4B;
  content: "";
  height: 1px;
  width: 23px;
  width: 1.4375rem;
}

.p-skin-approach__lead-text::before {
  transform: rotate(45deg);
}

.p-skin-approach__lead-text::after {
  transform: rotate(-45deg);
}

.p-skin-approach__lead-title {
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.45;
  margin-top: 10px;
  margin-top: 0.625rem;
  text-align: center;
}

.p-skin-approach__lead-title-green {
  color: #53A598;
}

.p-skin-approach__lead-title-pink {
  color: #ff7b71;
}

.p-skin-approach__diagram {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-skin-approach__diagram img {
  aspect-ratio: 600/330;
  height: auto;
  width: 100%;
}

.p-skin-approach__text {
  color: #584D4B;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  line-height: 1.7777777778;
  margin-top: 8px;
  margin-top: 0.5rem;
}
.p-skin-approach__text span {
  color: #916b42;
}

.p-skin-approach__tsubo {
  background-color: #fff;
  border: 1px solid rgba(83, 165, 152, 0.4);
  border: 0.0625rem solid rgba(83, 165, 152, 0.4);
  border-radius: 0.5625rem;
  margin-top: 72px;
  margin-top: 4.5rem;
  padding: 50px 26.5px 38px 27.5px;
  padding: 3.125rem 1.65625rem 2.375rem 1.71875rem;
  position: relative;
}

.p-skin-approach__tsubo-title {
  background-color: #53A598;
  border-radius: 100vmax;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  left: 50%;
  line-height: 1.2;
  padding: 14.6px 16px;
  padding: 0.9125rem 1rem;
  position: absolute;
  text-align: center;
  top: 0;
  transform: translate(-50%, -50%);
  width: 83.47%;
}

.p-skin-approach__tsubo-text {
  color: #584D4B;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  line-height: 1.7777777778;
}
.p-skin-approach__tsubo-text span {
  color: #916b42;
}

.p-skin-approach__tsubo-image {
  margin-top: 16px;
  margin-top: 1rem;
  width: 100%;
}

.p-skin-approach__tsubo-image img {
  aspect-ratio: 545/464;
  height: auto;
  width: 100%;
}

.p-skin-approach__pulse {
  -moz-column-gap: 1.5625rem;
  align-items: center;
  background: linear-gradient(to bottom, #FDF4E6, #FBF9F6);
  border: 1px solid #DEC18F;
  border: 0.0625rem solid #DEC18F;
  border-radius: 1rem;
       column-gap: 1.5625rem;
  display: flex;
  margin-top: 92px;
  margin-top: 5.75rem;
  padding: 22px 24px 20px 16px;
  padding: 1.375rem 1.5rem 1.25rem 1rem;
  position: relative;
}

.p-skin-approach__pulse::before {
  background: url(../images/lp/furthermore.webp) no-repeat center center/contain;
  content: "";
  height: 106px;
  height: 6.625rem;
  left: 50%;
  position: absolute;
  top: -70px;
  top: -4.375rem;
  transform: translateX(-50%);
  width: 76px;
  width: 4.75rem;
}

.p-skin-approach__pulse-image {
  flex-shrink: 0;
  width: 236px;
  width: 14.75rem;
}

.p-skin-approach__pulse-image img {
  aspect-ratio: 236/256;
  height: auto;
  width: 100%;
}

.p-skin-approach__pulse-content {
  flex: 1;
  padding-top: 24px;
  padding-top: 1.5rem;
}

.p-skin-approach__pulse-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3333333333;
}

.p-skin-approach__pulse-title span {
  color: #ff7b71;
}

.p-skin-approach__pulse-description {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  line-height: 1.7777777778;
  margin-top: 8px;
  margin-top: 0.5rem;
}
.p-skin-approach__pulse-description span {
  color: #916b42;
}

.p-trial {
  background: linear-gradient(to bottom, #FDF4E6, #FBF9F6);
  margin-bottom: 80px;
  margin-bottom: 5rem;
  padding-bottom: 0;
  padding-top: 48px;
  padding-top: 3rem;
}

.p-trial--secondary {
  margin-bottom: 0;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  padding-top: 113px;
  padding-top: 7.0625rem;
  position: relative;
}

.p-trial__inner {
  padding-left: 16.5px;
  padding-left: 1.03125rem;
  padding-right: 16.5px;
  padding-right: 1.03125rem;
}

.p-trial__lead {
  background: url(../images/lp/lead-bg.webp) no-repeat center center/cover;
  border: 1px solid #DEC18F;
  border: 0.0625rem solid #DEC18F;
  border-radius: 0.625rem;
  display: none;
  padding: 28px 24px 28px;
  padding: 1.75rem 1.5rem 1.75rem;
  text-align: center;
}

.p-trial--secondary .p-trial__lead {
  display: block;
  left: 50%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: -70px;
  top: -4.375rem;
  transform: translateX(-50%);
  width: 95.1470588235%;
}

.p-trial__lead-text {
  color: #916b42;
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.375;
}

.p-trial__lead-text span {
  display: block;
  font-size: max(26px, 10px);
  font-size: max(1.625rem, 10px);
  line-height: 1.3846153846;
}

.p-trial__title {
  text-align: center;
}

.p-trial__label {
  border: 1px solid #916b42;
  border: 0.0625rem solid #916b42;
  color: #916b42;
  display: inline-block;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 400;
  line-height: 1;
  padding: 6px 36px;
  padding: 0.375rem 2.25rem;
}

.p-trial__title-main {
  color: #916b42;
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 0.3333333333;
  margin-top: 3px;
  margin-top: 0.1875rem;
}

.p-trial__title-time {
  color: #ff7b71;
  font-family: "Noto Serif KR", serif;
  font-size: 84px;
  font-size: 5.25rem;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  vertical-align: sub;
}

.p-trial__types {
  background-color: #ffffff;
  border: 1px solid #E6DFD3;
  border: 0.0625rem solid #E6DFD3;
  border-radius: 0.8125rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 28px;
  margin-top: 1.75rem;
  padding: 16px 24px 28px;
  padding: 1rem 1.5rem 1.75rem;
  width: 92.7357032457%;
}

.p-trial__types-text {
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  font-weight: 300;
  line-height: 2.1666666667;
  text-align: center;
}
.p-trial__types-text span {
  color: #ff7b71;
}
@media screen and (max-width: 480px) {
  .p-trial__types-text {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
  }
}

.p-trial__types-list {
  -moz-column-gap: 1.01875rem;
  align-items: center;
       column-gap: 1.01875rem;
  display: flex;
  justify-content: center;
  margin-top: -5px;
  margin-top: -0.3125rem;
}

.p-trial__types-item {
  text-align: center;
}

.p-trial__types-image {
  width: 179.82px;
  width: 11.23875rem;
}

.p-trial__types-image img {
  aspect-ratio: 1/1;
  height: 100%;
  width: 100%;
}

.p-trial__types-or {
  color: #ad9c89;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: 300;
  line-height: 1;
  margin-top: -45px;
  margin-top: -2.8125rem;
}

.p-trial__types-name {
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
  font-weight: 400;
  line-height: 1;
  margin-top: 7px;
  margin-top: 0.4375rem;
}

.p-trial__price {
  margin-top: 21px;
  margin-top: 1.3125rem;
}

.p-trial__price-lead {
  color: #414141;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 400;
  line-height: 2.7777777778;
}

.p-trial__price-box {
  align-items: flex-end;
  display: flex;
  justify-content: center;
  margin-top: -20px;
  margin-top: -1.25rem;
}

.p-trial__price-img {
  flex-shrink: 0;
  width: 142px;
  width: 8.875rem;
}

.p-trial__price-img img {
  aspect-ratio: 142/90.5;
  height: auto;
  width: 100%;
}

.p-trial__price-normal {
  margin-left: 8px;
  margin-left: 0.5rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}

.p-trial__price-caption {
  color: #ad9c89;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 1;
}

.p-trial__price-value {
  font-family: "Noto Serif KR", serif;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: -0.07em;
  line-height: 1;
  white-space: nowrap;
}

.p-trial__price-normal .p-trial__price-value {
  padding-right: 26.7px;
  padding-right: 1.66875rem;
  position: relative;
}

.p-trial__price-normal .p-trial__price-value::before {
  aspect-ratio: 157.66/19.21;
  background: url(../images/lp/price-line.svg) no-repeat center center/contain;
  bottom: -5px;
  bottom: -0.3125rem;
  content: "";
  height: auto;
  position: absolute;
  right: 0;
  width: 100%;
}

.p-trial__price-value-unit {
  display: inline-block;
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  margin-left: 2px;
  margin-left: 0.125rem;
}

.p-menu-first__price-line {
  background-color: #E67E7E;
  display: inline-block;
  height: 2px;
  height: 0.125rem;
  left: 0;
  position: absolute;
  top: 60%;
  transform: translateY(-50%) rotate(14deg);
  transform-origin: center;
  width: 90%;
}

.p-trial__price-trial {
  align-items: flex-end;
  display: flex;
  margin-left: 8px;
  margin-left: 0.5rem;
}

.p-trial__price-badge {
  width: 42px;
  width: 2.625rem;
}

.p-trial__price-badge img {
  aspect-ratio: 42/81;
  height: auto;
  width: 100%;
}

.p-trial__price-value--large {
  color: #ad9c89;
  font-family: "Noto Serif KR", serif;
  font-size: 105px;
  font-size: 6.5625rem;
  font-weight: 300;
  letter-spacing: -0.07em;
  line-height: 1;
  white-space: nowrap;
}

.p-trial__price-value--large span {
  display: inline-block;
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
}

.p-trial__buttons {
  grid-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
  align-items: center;
       column-gap: 0.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-voice {
  background: linear-gradient(to bottom, #fdf4e6 0%, #fbf9f6 100%);
  margin-top: -38px;
  margin-top: -2.375rem;
  overflow-x: clip;
  padding: 100px 0 250px;
  padding: 6.25rem 0 15.625rem;
  position: relative;
}

.p-voice::before {
  background: url(../images/lp/voice-bg.webp) no-repeat top center/cover;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.p-voice__inner {
  position: relative;
}

.p-voice__header {
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.p-voice__title-wrapper {
  padding-left: 60px;
  padding-left: 3.75rem;
  padding-right: 60px;
  padding-right: 3.75rem;
  position: relative;
  text-align: center;
}

.p-voice__title-wrapper::before,
.p-voice__title-wrapper::after {
  aspect-ratio: 47.75/136.21;
  content: "";
  display: inline-block;
  height: 180%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
}

.p-voice__title-wrapper::before {
  background: url(../images/lp/deco-left.webp) no-repeat center center/contain;
  left: -6%;
}

.p-voice__title-wrapper::after {
  background: url(../images/lp/deco-right.webp) no-repeat center center/contain;
  right: -6%;
}

.p-voice__title {
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1.4285714286;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  position: relative;
}

.p-voice__title::after {
  background-color: #916b42;
  bottom: 0;
  content: "";
  height: 0.7px;
  height: 0.04375rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 108%;
}

.p-voice__main-title {
  color: #916b42;
  font-family: hiragino-mincho-pron, sans-serif;
  font-size: 54px;
  font-size: 3.375rem;
  font-weight: 300;
  line-height: 1.3703703704;
  margin-top: 10px;
  margin-top: 0.625rem;
  padding-left: 20px;
  padding-left: 1.25rem;
}

.p-voice__slider {
  margin-top: 35px;
  margin-top: 2.1875rem;
  position: relative;
  width: 100%;
}

.p-voice__slider-inner {
  animation: p-voice-slide 60s linear infinite;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
  padding-bottom: 2px;
  padding-bottom: 0.125rem;
  width: -moz-fit-content;
  width: fit-content;
}

.p-voice__slider:hover .p-voice__slider-inner,
.p-voice__slider:active .p-voice__slider-inner {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .p-voice__slider-inner {
    animation: none;
  }
}
@keyframes p-voice-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.p-voice__slider-item {
  flex-shrink: 0;
  height: auto;
  width: 600px;
  width: 37.5rem;
}

.p-voice__slider-item img {
  box-shadow: 0 0 0.75rem 0 rgba(216, 204, 184, 0.67);
  height: auto;
  width: 100%;
}

.p-voice__disclaimer {
  margin-top: 16px;
  margin-top: 1rem;
  padding-left: 41px;
  padding-left: 2.5625rem;
  padding-right: 41px;
  padding-right: 2.5625rem;
}

.p-voice__disclaimer-text {
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  line-height: 1.3;
}

.js-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.js-fade-in.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.u-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-sm {
  display: none;
}
@media screen and (max-width: 480px) {
  .u-sm {
    display: block;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */
