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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  border: 0;
  font-size: 100%;
  font-weight: normal;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}
sup {
  vertical-align: super;
  display: inline-block;
}
button {
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  font: inherit;
  margin: 0;
  padding: 0;
}

input,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
  vertical-align: top;
}

/* =========================
CF7 ラジオ/チェック 共通
========================= */

.wpcf7 .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 11px; /* ○ と文字の間 */
  cursor: pointer;
  line-height: 1.2;
}

.wpcf7 .wpcf7-list-item {
  margin: 0 85px 0 0; /* ラジオ同士の間隔 */
}

@media screen and (max-width: 767px) {
  .wpcf7 .wpcf7-list-item {
    margin: 0 0 0 0;
    width: 100%;
  }
}

.smf-form .smf-radio-button-control__control:checked {
  background-color: #fff;
}

.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-tel,
.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  padding: 21px;
  border-radius: 10px;
  border: none;
}
.smf-form .smf-text-control__control,
.smf-form .smf-textarea-control__control {
  width: 100%;
  padding: 21px;
  border-radius: 10px;
  border: none;
}

.wp-block-snow-monkey-forms-item.smf-item {
  margin-bottom: 28px;
}
.wp-block-snow-monkey-forms-item.smf-item.check-type {
  position: relative;
}

[data-screen="confirm"]
  .wp-block-snow-monkey-forms-item.smf-item.check-type
  .smf-item__col {
  font-size: clamp(
    18px,
    calc(18px + (24 - 18) * ((100vw - 375px) / (1920 - 375))),
    24px
  );
  padding-left: 50px;
  position: relative;
}

[data-screen="confirm"].wp-block-snow-monkey-forms-item.smf-item.check-type
  .smf-item__col {
  font-size: clamp(
    18px,
    calc(18px + (24 - 18) * ((100vw - 375px) / (1920 - 375))),
    24px
  );
}

[data-screen="confirm"]
  .wp-block-snow-monkey-forms-item.smf-item.check-type
  .smf-item__col--controls:before {
  width: 40px;
  height: 40px;
  border-radius: 100vw;
  outline: solid 2px var(--color-purple);
  content: "";
  display: block;
  background-color: var(--color-text-white);
  position: absolute;
  bottom: 0;
  left: 0;
}

[data-screen="confirm"]
  .wp-block-snow-monkey-forms-item.smf-item.check-type
  .smf-item__col--controls:after {
  width: 26px;
  height: 26px;
  border-radius: 100vw;
  background-color: var(--color-purple);
  content: "";
  display: block;
  position: absolute;
  bottom: 7px;
  left: 7px;
}

.smf-radio-buttons-control__control {
  display: flex;
  gap: 60px;
}

.smf-item__controls {
  font-size: 16px;
}

.check-type .smf-item__controls {
  font-size: 24px;
  font-weight: 500;
}
.wpcf7 input[type="radio"] {
  outline: solid 2px var(--color-purple);
}
.smf-form input[type="radio"] {
  outline: solid 2px var(--color-purple);
}
.wpcf7 input[type="radio"],
.wpcf7 input[type="checkbox"],
.smf-form input[type="radio"],
.smf-form input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  display: inline-grid;
  place-content: center;
  flex: 0 0 auto;
  cursor: pointer;
  width: 40px;
  height: 40px;

  border: none;
  background: #fff;
}

.wpcf7 input[type="radio"]:focus-visible,
.wpcf7 input[type="checkbox"]:focus-visible,
.smf-form input[type="radio"]:focus-visible,
.smf-form input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(201, 182, 255, 0.35);
  outline-offset: 3px;
}

/* =========================
ラジオボタン（丸）
========================= */
.wpcf7 input[type="radio"] {
  border-radius: 999px;
  position: relative;
}

/* 選択時：中の● */
.wpcf7 input[type="radio"]::before,
.smf-form input[type="radio"]::before {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--color-purple);

  /* 中央配置（必要なら） */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);

  transition: transform 0.12s ease-in-out;
}
.wpcf7 input[type="radio"]:checked::before,
.smf-form input[type="radio"]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}

.wpcf7-list-item-label,
.smf-radio-button-control__label {
  font-family: var(--ff-noto);
  font-weight: 500;
  font-size: clamp(
    18px,
    calc(18px + (24 - 18) * ((100vw - 375px) / (1920 - 375))),
    24px
  );
  letter-spacing: 0.3rem;
}

.wpcf7-form label,
.smf-item__label__text {
  display: inline-block;
  margin-bottom: 20px;
  font-family: var(--ff-noto);
  font-weight: 500;
  font-size: clamp(
    18px,
    calc(18px + (24 - 18) * ((100vw - 375px) / (1920 - 375))),
    24px
  );
}
.wpcf7-form p {
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .wpcf7-form p:last-of-type {
    text-align: center;
  }
}
.wpcf7-form-control {
  margin-bottom: 3px;
}
.wpcf7-radio p {
  margin-bottom: 17px;
  display: block;
}
/* =========================
プレースホルダー
========================= */
/* 全フォーム共通 */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #dcd7e0;
  opacity: 1;
}

.wpcf7 input::-webkit-input-placeholder,
.wpcf7 textarea::-webkit-input-placeholder {
  color: #dcd7e0;
}

.wpcf7 input:-ms-input-placeholder,
.wpcf7 textarea:-ms-input-placeholder {
  color: #dcd7e0;
}
/* =========================
チェックボックス（角丸 + ✓）
========================= */

.wpcf7-form-control.wpcf7-acceptance {
  margin-block-start: 40px;
  display: block;
}
.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 16px;
  letter-spacing: 0.1rem;
}

.wpcf7 input[type="checkbox"] {
  border-radius: 6px;
}

/* ✓を疑似要素で描画 */
/* ✓を常に表示（薄い色） */
.wpcf7 input[type="checkbox"]::before {
  content: "";
  width: 17px;
  height: 24px;
  border-right: 4px solid #e2d9fa; /* 未チェック時の色 */
  border-bottom: 4px solid #e2d9fa;
  transform: rotate(45deg) scale(1); /* 常に表示 */
  transition: border-color 0.12s ease-in-out;
  margin-top: -6px;
}

/* チェックされたら色を変える */
.wpcf7 input[type="checkbox"]:checked::before {
  border-right-color: var(--color-text-purple); /* チェック時の色 */
  border-bottom-color: var(--color-text-purple);
}

.wpcf7 .wpcf7-acceptance a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.wpcf7-not-valid-tip {
  color: #ce3131;
}

:root {
  --color-text-purple: #513565;
  --color-text-purple-light: #9786a3;
  --color-text-white: #ffffff;
  --color-text-black: #2c0e43;
  --color-purple: #513565;
  --background-base: #ffffff;
  --background-black: #070505;
  --background-pink: #db82a0;
  --ff-mincho: "Shippori Mincho", serif;
  --ff-noto: "Noto Sans JP", sans-serif;
  --fz-base: 16px;
  --fw-base: 400;
  --fw-md: 500;
  --fw-bold: 700;
}

body {
  background-color: var(--background-base);
  color: var(--color-text-black);
  font-family: var(--ff-base);
  font-size: var(--fz-base);
  font-weight: var(--fw-base);
}

.l-header {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 11;
}

.l-header__inner {
  display: flex;
  flex-direction: row;
  inline-size: 100%;
  justify-content: space-between;
  padding-inline-end: 50px;
  padding-inline-start: 50px;
}

.l-header__logo {
  align-items: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.l-header__logo--ja {
  color: var(--color-text-black);
  font-size: 12px;
  font-family: var(--ff-mincho);
  letter-spacing: 0.17em;
  font-weight: 500;
}

.l-header__icon {
  block-size: 30px;
  display: block;
  inline-size: 30px;
}

.l-header__right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.l-header__sns {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header__sns {
    display: none;
  }
}
.l-header__btn {
  background: var(--background-base);
  block-size: 40px;
  border-radius: 50%;
  inline-size: 40px;
  position: relative;
  z-index: 11;
}

.l-header-btn__bar {
  background: var(--color-text-black);
  block-size: 1px;
  inline-size: 19px;
  inset-inline-start: 49%;
  position: absolute;
  transform: translateX(-50%);
  transition: transform 0.3s linear;
}

.l-header-btn__bar:nth-of-type(1) {
  top: 14px;
}

/* .l-header-btn__bar:nth-of-type(2) {
  display: none;
} */

.l-header-btn__bar:nth-of-type(3) {
  bottom: 12px;
}

.l-header__btn.is-checked .l-header-btn__bar:nth-of-type(1) {
  transform: translateY(4px) translateX(-9px) rotate(-45deg);
  top: 17px;
}

.l-header__btn.is-checked .l-header-btn__bar:nth-of-type(2) {
  opacity: 0;
}

.l-header__btn.is-checked .l-header-btn__bar:nth-of-type(3) {
  transform: translateY(-4px) translateX(-9px) rotate(45deg);
  bottom: 14px;
}

.l-drawer {
  display: grid;
  height: 100dvh;
  inset: 0;
  overflow: hidden;
  place-items: center;
  position: fixed;
  transform: translateX(100%);
  z-index: 10;
}

.l-drawer::before {
  backdrop-filter: blur(15px);
  /* backdrop-filter: blur(15px) brightness(1.05); */
  block-size: 100%;
  content: "";
  inline-size: 100%;
  inset: 0;
  position: absolute;
  transform: scale(0.1);
  z-index: 0;
  /* border: solid 9px red; */
}

.l-drawer.is-checked {
  animation: drawerMove 0.4s ease forwards;
  overflow: visible;
}

.l-drawer.is-checked::before {
  animation: drawerBlur 0.4s ease forwards;
  animation-delay: 0.1s;
}

.l-drawer.is-checked .l-drawer__nav {
  animation: drawerOpacity 0.4s ease forwards;
  animation-delay: 0.3s;
}

.l-drawer.is-closing {
  animation: drawerMoveBack 0.4s ease forwards;
  animation-delay: 5s;
  transform: translateX(0%);
}

.l-drawer.is-closing::before {
  animation: drawerBlurBack 0.3s ease forwards;
}

.l-drawer.is-closing .l-drawer__nav {
  animation: drawerOpacityBack 0.2s ease forwards;
}

.l-drawer__nav {
  align-items: start;
  display: grid;
  gap: clamp(2.125rem, -1.9166666667rem + 8.4201388889vi, 8.1875rem);
  grid-template-columns: auto auto;
  /* grid-template-columns: repeat(2, 1fr); */
  opacity: 0;
}

.l-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.l-drawer__item--change span:nth-of-type(2) {
  display: none;
}

.l-drawer__item--change span:nth-of-type(3) {
  color: var(--color-text-purple);
  font-family: var(--ff-noto);
  font-size: 15px;
  letter-spacing: 0.1em;
}

.l-drawer__sub-list {
  margin-block-start: 20px;
  padding-inline-start: 48px;
  display: flex;
  gap: 15px;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .l-drawer__sub-list {
    gap: 10px;
    margin-block-start: 17px;
    padding-inline-start: 30px;
  }
}

.l-drawer__sub-list li {
  display: flex;
  font-family: var(--ff-noto);

  gap: 17px;
  font-size: clamp(
    10px,
    calc(10px + (15 - 10) * ((100vw - 375px) / (1920 - 375))),
    15px
  );
}

@media screen and (max-width: 767px) {
  .l-drawer__sub-list li {
    color: var(--color-text-white);
    gap: 10px;
  }

  .l-drawer__sub-list li svg {
    color: var(--color-text-white);
    width: 8px;
    height: 8px;
  }
}
.l-drawer__link {
  display: flex;
  flex-direction: column;
  gap: 7px;
  /* gap: 10px; */
  padding-inline-start: 45px;
  position: relative;
}

.l-drawer__link::before {
  background: var(--color-text-purple);
  block-size: 15px;
  border-radius: 50%;
  content: "";
  inline-size: 16px;
  inset-block-start: 17px;
  inset-inline-start: 0px;
  position: absolute;
}

.l-drawer__link span:nth-of-type(1) {
  color: var(--color-text-purple);
  font-family: var(--ff-mincho);
  font-size: 30px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.l-drawer__link span:nth-of-type(2) {
  color: var(--color-text-purple);
  font-family: var(--ff-noto);
  font-size: 15px;
  letter-spacing: 0.1em;
}

.l-main {
  overflow: hidden;
}
.home .l-main {
  background-color: var(--background-base);
}
.l-footer {
  position: relative;
  z-index: 2;
  margin-block-start: -10px;
}

.l-footer__inner {
  /* overflow: hidden; */
  text-align: center;
  padding-block-end: 46px;
  padding-block-start: 65px;
  padding-inline: clamp(1.25rem, -12.9166666667rem + 29.5138888889vi, 22.5rem);
  position: relative;
}

.l-footer__inner::before {
  background-image: linear-gradient(0deg, #c7a5ff, #83cdff);
  clip-path: ellipse(130% 100% at 50% 100%);
  content: "";
  inset: 0;
  /* inset-block-start: 20px; */
  position: absolute;
  margin-top: -20px;
  z-index: -1;
}

.l-footer__logo {
  text-align: center;
}

.l-footer__body {
  align-items: flex-start;
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  grid-template-columns: 162px 166px 100px;
  gap: 49px;
  inline-size: min(525px, 100%);
  margin-block-start: 36px;
  margin-inline: auto;
}

.l-footer__nav {
  align-items: center;
  display: flex;
  text-align: left;
}

.l-footer__nav:nth-of-type(2) {
  justify-content: center;
}

.l-footer__nav:nth-of-type(3) {
  justify-content: flex-end;
}

.l-footer__item + .l-footer__item {
  margin-block-start: 11px;
}

.l-footer__link {
  color: var(--color-text-white);
  display: block;
  font-family: var(--ff-mincho);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.l-footer__snss {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-end;
  height: 100%;
}

.l-footer__sns {
  display: block;
}

.l-footer__sns svg {
  display: block;
  height: 100%;
  width: 100%;
}

.l-footer__bottom {
  margin-block-start: 27px;
  text-align: center;
}

.l-footer__copyright {
  color: var(--color-text-white);
  font-family: var(--ff-noto);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.09em;
  line-height: 3.6;
}

.l-footer-bottom__snss {
  display: none;
}

.l-footer-bottom__sns {
  block-size: 40px;
  display: block;
  inline-size: 40px;
}

.l-footer-bottom__sns svg {
  display: block;
  height: 100%;
  width: 100%;
}

.l-footer__pagetop {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  inset-block-end: clamp(
    2.1875rem,
    0.5916666667rem + 3.3246527778vi,
    4.58125rem
  );
  inset-inline-end: clamp(
    3.125rem,
    -9.6458333333rem + 26.6059027778vi,
    22.28125rem
  );
  position: absolute;
}

.l-footer-pagetop__icon img {
  block-size: 200%;
  display: block;
  inline-size: 100%;
}

.l-footer-pagetop__text {
  color: var(--color-text-white);
  font-family: var(--ff-noto);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.c-btn__wrap {
  text-align: center;
}

.c-btn {
  background: var(--background-pink);
  border: 1px solid #db82a0;
  border-radius: 30px;
  color: var(--color-text-white);
  display: inline-block;
  font-family: var(--ff-mincho);
  font-size: 15px;
  padding-block: 19px 20px;
  padding-inline: 71px;
  text-align: center;
  text-transform: capitalize;
}

.c-fv__inner {
  /* block-size: clamp(27.4375rem, 20.4172535211rem + 29.9530516432vi, 47.375rem); */
  /* border-radius: 0 0 3500px 3500px/0 0 400px 400px; */
  display: block;
  /* inline-size: 104%; */
  /* inset-inline-start: 50%; */
  overflow: hidden;
  position: relative;
  mix-blend-mode: overlay;
  /* transform: translateX(-50%); */
}
/* 
.c-fv__inner::before {
  content: "";
  inset: 0;
  position: absolute;
} */

.c-fv__text--en {
  /* background: linear-gradient(180deg, #f0f8fc 0%, #f0f8fc 60%, #e8bece 100%); */
  /* color: transparent; */
  color: red;
  font-family: var(--ff-mincho);
  font-size: 100px;
  letter-spacing: 0.14em;
  /* text-transform: uppercase;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  /* background-clip: text; */
  inset-block-start: 49%;
  inset-inline-start: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 1;
  /* mix-blend-mode: lighten; */
  /* mix-blend-mode: overlay; */
  font-weight: 500;
}

.c-fv__text--en svg {
  max-width: clamp(
    294px,
    calc(294px + (607 - 294) * ((100vw - 767px) / (1920 - 767))),
    607px
  );
}

@media screen and (max-width: 767px) {
  .c-fv__text--en svg {
    max-width: 294px;
  }
}

.p-productFv {
  position: relative;
  /* background: url(../img/product-fv.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  min-height: 759px; */
}

/* .p-productFv .c-fv__inner::before {
  background: url(../img/product-fv.webp) no-repeat center center/cover;
  background-position: center 31%;
} */

.p-productFv .c-fv__inner {
  /* grid-row: 1;
  justify-self: center;
  align-self: center; */
  grid-area: stack;
  position: static;
}

.p-productFv__btns {
  align-self: end;
  justify-self: center;
  display: grid;
  gap: 20px;
  grid-row: 2/3;
  grid-column: 1/2;
  grid-template-columns: min(480px, 92vw);
  z-index: 1;
  padding-bottom: 80px;

  grid-area: stack;
  align-self: end;
  justify-self: center;
  padding-bottom: 80px;
  z-index: 1;
}
@media screen and (min-width: 1081px) and (max-width: 1280px) {
  .p-productFv__btns {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .p-productFv__btns {
    gap: 10px;
    padding-bottom: 20px;
  }
}

.p-productFv__btn span:nth-of-type(1) {
  font-size: clamp(16px, 2.2vw, 20px);
}
.p-productFv__btn {
  align-items: center;
  border-radius: 100px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  padding-block: 16px 12px;
  padding-inline: 40px 0px;
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .p-productFv__btn {
    padding-block: 6px;
  }
}

.p-productFv__btn span:nth-of-type(1) {
  color: var(--color-text-white);
  font-family: var(--ff-noto);
  font-size: 20px;
  font-weight: 600;
  inline-size: 156px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.p-productFv__btn:nth-of-type(1) .arrow {
  color: var(--background-base);
  padding-inline: 14px;
  margin-block-start: -7px;
}

.p-productFv__btn:nth-of-type(1):hover {
  outline: solid 2px #e2b3e9;
  background-color: var(--background-base);
}
.p-productFv__btn:nth-of-type(1):hover span {
  color: #e2b3e9;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .p-productFv__btn span:nth-of-type(1) {
    font-size: clamp(
      15px,
      calc(15px + (20 - 15) * ((100vw - 768px) / (1080 - 768))),
      20px
    );
  }
}
.p-productFv__btn span:nth-of-type(2) {
  display: none;
}

.p-productFv__btn span:nth-of-type(3) {
  color: var(--color-text-white);
  display: block;
  flex-grow: 1;
  font-family: var(--ff-noto);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.13em;
  line-height: 1.25;
  max-inline-size: 230px;
  padding-inline-start: 16px;
  text-transform: capitalize;
}

.p-productFv__btn span:nth-of-type(4) {
  margin-inline-start: -15px;
}

.p-productFv__btn:nth-of-type(1) {
  position: relative;
}

.p-productFv__btn:nth-of-type(1) {
  background-color: #e2b3e9;
}

@media screen and (max-width: 767px) {
  .p-productFv__btn:nth-of-type(1) {
    background-color: transparent;
    background-image: url(../img/product-fv-btn-bg-pink.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-position: top;
  }
  .p-productFv__btn:nth-of-type(1):hover {
    background-image: none;
    background-color: var(--background-base);
  }
}
/* .p-productFv__btn:nth-of-type(1)::before {
  background: url(../img/productFv-btn-bg.webp) no-repeat center center/cover;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
} */
.p-productFv__btn:nth-of-type(2) {
  position: relative;
}
.p-productFv__btn:nth-of-type(2) .arrow {
  color: var(--background-base);
  padding-inline: 14px;
  margin-block-start: -7px;
}
@media screen and (max-width: 767px) {
  .p-productFv__btn:nth-of-type(2) {
    background-color: transparent;
    background-image: url(../img/product-fv-btn-bg-blue.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-position: top;
  }
  .p-productFv__btn:nth-of-type(2):hover {
    background-image: none;
    background-color: var(--background-base);
  }
}
.p-productFv__btn:nth-of-type(2) {
  background-color: #74c7ff;
}
.p-productFv__btn:nth-of-type(2):hover {
  outline: solid 2px #74c7ff;
  background-color: var(--background-base);
}
.p-productFv__btn:nth-of-type(2):hover span {
  color: #74c7ff;
}

.p-shoplistFv .c-fv__inner::before {
  background: url(../img/shoplist-fv.png) no-repeat center center/cover;
}

.p-conceptFv {
  overflow: hidden;
}

.c-fv {
  position: relative;
  z-index: 1;
}
.c-fv.p-productFv {
  /* display: grid;
  grid-template-rows: auto auto; */
  display: grid;
  grid-template-areas: "stack";
}

.c-fv.p-productFv picture {
  /* grid-row: 1 / -1;
  grid-column: 1;
  width: 100%;
  height: 100%; */
  grid-area: stack;
}

.c-fv.p-productFv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .c-fv.shadow .c-fv__inner {
    mix-blend-mode: initial;
  }
  .c-fv.shadow .c-fv__inner svg {
    filter: drop-shadow(0 0 10px rgba(244, 148, 227, 0.56));
  }
}
.c-fv picture,
.c-fv img {
  display: block;
  width: 100%;
  height: auto;
}
.c-fv__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  inset: 0;
  height: -webkit-fill-available;
  z-index: 2;
}
@media (max-width: 768px) {
  .titlePath {
    fill: #ffffff !important;
    mix-blend-mode: color !important;
  }

  .titleSvg {
    filter: drop-shadow(0 0 10px rgba(244, 148, 227, 0.56));
  }
}
/* .p-conceptFv .c-fv__inner::before {
  background: url(../img/concept-fv.png) no-repeat center center/cover;
  background-position: center 33%;
} */

/* @media screen and (max-width: 767px) {
  .p-conceptFv .c-fv__inner::before {
    background: url(../img/concept-fv-sp.webp) no-repeat center center/cover;
    background-size: cover;
  }
} */

/* .p-detailsBaseFv .c-fv__inner::before {
  background: url(../img/details-base-fv.png) no-repeat center center/cover;
  background-position: 15% 33%;
} */

/* .p-detailsPowderFv .c-fv__inner::before {
  background: url(../img/details-powder-fv.png) no-repeat center center/cover;
}

.p-detailsMistFv .c-fv__inner::before {
  background: url(../img/details-mist-fv.png) no-repeat center center/cover;
}

.p-detailsCleansingFv .c-fv__inner::before {
  background: url(../img/details-cleansing-fv.png) no-repeat center center/cover;
}

.p-detailsWashFv .c-fv__inner::before {
  background: url(../img/details-wash-fv.png) no-repeat center center/cover;
}

.p-detailsNewsFv .c-fv__inner::before {
  background: url(../img/news-fv.png) no-repeat center center/cover;
  background-position: 5% 95%;
} */

@media screen and (max-width: 767px) {
  .p-detailsNewsFv .c-fv__inner::before {
    background: url(../img/news-fv-sp.webp) no-repeat center center/cover;
    background-size: cover;
  }
}

.p-ContactFv .c-fv__inner::before {
  background: url(../img/contact-fv.png) no-repeat center center/cover;
  background-position: 5% 50%;
}

.p-privacyFv .c-fv__inner::before {
  background: url(../img/contact-fv.png) no-repeat center center/cover;
  background-position: 5% 50%;
}

.c-topsSection__title {
  position: relative;
  text-align: center;
}

.c-topSection-title__en {
  background: linear-gradient(180deg, #d1ecf8 0%, #d1ecf8 70%, #c9bfdc 100%);
  color: transparent;
  opacity: 0.4;
  font-family: var(--ff-mincho);
  font-size: 120px;
  inset-block-start: -200px;
  letter-spacing: 0.16em;
  position: absolute;
  transform: translateX(-50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  inset-inline-start: 50%;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 1;
}

.c-topSection-title__en--white {
  background: linear-gradient(180deg, #d1ecf8 0%, #d1ecf8 70%, #c9bfdc 100%);
  color: transparent;
  mix-blend-mode: overlay;
  opacity: 0.4;
  font-family: var(--ff-mincho);
  font-size: 120px;
  inset-block-start: -200px;
  letter-spacing: 0.16em;
  position: absolute;
  transform: translateX(-50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  inset-inline-start: 50%;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 1;
}

.c-topSection-title__ja {
  font-family: var(--ff-mincho);
  font-size: clamp(1.125rem, 0.860915493rem + 1.1267605634vi, 1.875rem);
  letter-spacing: 0.08em;
  position: relative;
  z-index: 3;
}

.c-topSection-title__ja .pc-hidden {
  display: none;
}

.c-topSection-title__ja--left {
  text-align: left;
}

.c-section-title__en {
  color: var(--color-text-purple-light);
  font-family: var(--ff-mincho);
  font-size: clamp(2rem, 1.6478873239rem + 1.5023474178vi, 3rem);
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.c-section-title__ja {
  color: var(--color-text-purple);
  font-family: var(--ff-mincho);
  font-size: clamp(1.125rem, 0.860915493rem + 1.1267605634vi, 1.875rem);
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-block-start: 23px;
  text-align: center;
}

.c-section-title__ja .pc-hidden {
  display: none;
}

@media screen and (max-width: 767px) {
  .c-section-title__ja .pc-hidden {
    display: block;
  }
}

.c-topProduct__item {
  display: flex;
  flex-direction: column;
  min-height: 306.81px;
  text-align: center;
  cursor: pointer;
}

.c-topProduct__item img {
  transform-origin: top center;
  transition: transform 200ms ease;
  will-change: transform;
}
.c-topProduct__item:hover img {
  transform: scale(1.0661157, 1.0549451); /* 121→129, 182→192 */
}

.c-topProduct__category {
  line-height: 1;
  border: 1px solid var(--color-text-purple);
  border-radius: 30px;
  font-family: var(--ff-noto);
  font-size: clamp(0.625rem, 0.5809859155rem + 0.1877934272vi, 0.75rem);
  letter-spacing: 0.03em;
  margin-inline: auto;
  max-inline-size: 115px;
  min-inline-size: 110px;
  padding-block: 3px;
  padding-inline: 13px;
  text-transform: capitalize;
}

.c-topProduct__img {
  flex-grow: 1;
  margin-block-start: -18px;
  position: relative;
}

.p-topProduct__bottom .c-topProduct__img {
  margin-block-start: -3px;
}

.p-topProduct__bottom .c-topProduct__text {
  margin-block-start: 3px;
}

.c-topProduct__text {
  font-family: var(--ff-noto);
  font-size: clamp(0.625rem, 0.5809859155rem + 0.1877934272vi, 0.75rem);
  letter-spacing: 0.04em;
  margin-block-start: 7px;
  text-align: center;
}

.c-topProduct__text .hidden {
  display: none;
}

.c-topProduct__btn {
  background: var(--background-pink);
  border: 1px solid #db82a0;
  border-radius: 28px;
  color: var(--color-text-white);
  display: inline-block;
  font-family: var(--ff-mincho);
  font-size: clamp(0.625rem, 0.5809859155rem + 0.1877934272vi, 0.75rem);
  inline-size: 100%;
  letter-spacing: 0.12em;
  margin-block-start: 17px;
  margin-inline: auto;
  max-inline-size: 160px;
  padding-block: 9px 13px;
  text-align: center;
  text-transform: capitalize;
}

.c-scrollbar {
  background: #f2f2f2;
  border-radius: 5px;
  display: none;
  height: 5px;
  inline-size: calc(100% - 60px);
  margin-block-start: 35.3px;
  margin-inline: auto;
  position: relative;
}

.c-scrollbar__rect {
  background: #db82a0;
  cursor: grab;
  inline-size: 63px;
  inset-block: 0;
  position: absolute;
}

.c-news__list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.c-news__item {
  border-bottom: 1px solid #ddc7ec;
  padding-block-end: 15.5px;
}

.c-news__item .c-news__btn--open {
  block-size: 100%;
  color: var(--color-text-purple);
  display: block;
  inline-size: 100%;
  text-align: left;
}

.c-news__title {
  font-family: var(--ff-noto);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--color-text-black);
  line-height: 1.5;
}

.c-news__date {
  display: inline-block;
  font-family: var(--ff-noto);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 2;
  margin-block-start: 11px;
}

.c-news__dialog {
  border: 0;
  border-radius: 16px;
  inline-size: calc(100% - 40px);
  inset: 0;
  max-inline-size: 800px;
  opacity: 0;
  padding: 0;
  position: fixed;
}

.c-news__dialog .c-news-dialog__inner {
  background-color: #fff;
  border-radius: 10px;
  color: var(--color-text-purple);
  padding-block: 45px 40px;
  padding-inline: 100px;
  position: relative;
}

.c-news__dialog::backdrop {
  background-image: linear-gradient(#c6ebfc, #e1b2ea);
  opacity: 0;
}

.c-news__dialog[open] {
  opacity: 1;
}

.c-news__dialog[open]::backdrop {
  opacity: 0.75;
}

.c-news__dialog .c-news__title {
  margin-block-start: 20px;
}

.c-news__dialog .c-news-dialog__btn--cross {
  block-size: 18.76px;
  inline-size: 18.76px;
  inset-block-start: 25px;
  inset-inline-end: 30px;
  position: absolute;
}

.c-news__dialog .c-news__content {
  margin-block-start: 46px;
}

.c-news__dialog .c-news__img {
  text-align: center;
}

.c-news__dialog .c-news__text {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 2;
  margin-block-start: 20px;
}
.c-news__dialog .c-news__text a {
  border-bottom: 1px solid #db82a0;
  color: #db82a0;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-block-start: 35px;
}

.c-news__dialog .c-news-dialog__btn {
  background: var(--background-pink);
  border-radius: 28px;
  color: var(--color-text-white);
  display: block;
  font-family: var(--ff-noto);
  font-size: 15px;
  inline-size: 100%;
  letter-spacing: 0.08em;
  margin-block-start: 40px;
  margin-inline: auto;
  max-inline-size: 240px;
  padding-block: 17px 16px;
  text-align: center;
}

:root:has(dialog[open]) {
  overflow: hidden;
  scrollbar-gutter: stable;
}

.c-pagination {
  border: 1px solid #ecd8e4;
  border-radius: 49px;
  display: flex;
  margin-inline: auto;
  max-inline-size: 248px;
  overflow: hidden;
}

.c-pagination__item:not(:last-of-type) {
  border-right: 1px solid #ecd8e4;
}

.c-pagination__link {
  background: var(--background-base);
  color: #db82a0;
  display: block;
  font-family: var(--ff-noto);
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 1.25;
  padding-block: 13px 12px;
  padding-inline: 16px 16px;
}

.c-pagination__link.is-current {
  background: var(--background-pink);
  color: var(--color-text-white);
}

.c-pagination__link--prev {
  padding-block: 11px 12px;
  padding-inline: 33.8px 23.6px;
}

.c-pagination__link--next {
  padding-block: 11px 12px;
  padding-inline: 33.6px 19.8px;
}
.p-topFv {
  margin-block-end: 106px;
  position: relative;
}

.p-topFv__bubble {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-topFv__bubble {
    display: block;
    position: absolute;
    right: 0;
    bottom: -80px;
    z-index: 2;
    width: 117px;
    height: 152px;
    animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
  }
}
.p-topFv__inner {
  position: relative;
}

/* .p-topFv__imgs {
  block-size: clamp(42.375rem, 31.7916666667rem + 22.0486111111vi, 58.25rem);
  block-size: clamp(
    678px,
    calc(678px + (2278 - 678) * ((100vw - 768px) / (4480 - 768))),
    2278px
  );
  border-radius: 0 0 3500px 3500px/0 0 400px 400px;
  inline-size: 104%;
  inset-inline-start: 50%;
  overflow: hidden;
  position: relative;
  transform: translateX(-50%);
} */
/* 
.p-topFv__imgs {
  block-size: clamp(
    678px,
    calc(678px + (2278 - 678) * ((100vw - 768px) / (4480 - 768))),
    2278px
  );
  inset-inline-start: 50%;
  overflow: hidden;
  position: relative;
  transform: translateX(-50%);
}

@media screen and (min-width: 1440px) and (max-width: 1920px) {
  .p-topFv__imgs {
    block-size: clamp(
      700px,
      calc(700px + (934 - 700) * ((100vw - 1440px) / (1920 - 1440))),
      934px
    );
  }
}

@media screen and (min-width: 4481px) {
  .p-topFv__imgs {
    block-size: 2280px;
  }
} */

.p-topFv__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 白はこれだけabsolute（画像じゃなくて“上に被せる膜”） */
.p-topFv__white {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
}

.p-topFv__img {
  animation: fvSlide 24s infinite;
  animation-timing-function: ease-in-out;
  inset: 0;
  opacity: 0;
  position: absolute;
}

.p-topFv__img img {
  block-size: 100%;
  display: block;
  inline-size: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-topFv__img:nth-child(1) {
  animation-delay: 0s;
}

.p-topFv__img:nth-child(2) {
  animation-delay: 6s;
}

.p-topFv__img:nth-child(3) {
  animation-delay: 12s;
}

.p-topFv__img:nth-child(4) {
  animation-delay: 18s;
}

/* .p-topFv__imgs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  animation: fvWhiteFlash 18s infinite linear;
} */

/* .p-topFv__imgs {
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 375px) and (max-width: 501px) {
  .p-topFv__imgs {
    --fv-max-h: 820;
    block-size: 678px;
  }
} */

.p-topFv__scroll {
  display: none;
  /* inset-block-end: 67px;
  inset-inline-end: clamp(5rem, -7.2916666667rem + 25.6076388889vi, 23.4375rem);
  position: absolute; */
}
/* 
.p-topFv__scroll::before {
  animation: scroll 2s infinite;
  background-color: var(--background-base);
  block-size: 100px;
  content: "";
  inline-size: 1px;
  inset-block-end: 70px;
  inset-inline-end: 0;
  inset-inline-start: 3px;
  margin: auto;
  position: absolute;
} */

.p-topFv-scroll__text {
  color: var(--color-text-white);
  font-family: var(--ff-mincho);
  font-size: clamp(0.875rem, 0.786971831rem + 0.3755868545vi, 1.125rem);
  letter-spacing: 0.08em;
  writing-mode: sideways-lr;
}

.p-topFv__text {
  inset-block-start: clamp(11.875rem, 10rem + 3.90625vi, 14.6875rem);
  inset-inline-start: clamp(4.5rem, -8.7375rem + 27.578125vi, 24.35625rem);
  position: absolute;
}

.p-topFv__text img {
  block-size: clamp(13.203125rem, 7.921875rem + 11.0026041667vi, 21.125rem);
  inline-size: clamp(5.0125rem, 3.075rem + 4.0364583333vi, 7.91875rem);
}

.p-topFv__logos {
  display: flex;
  flex-direction: column;
  gap: 7.4px;
  inset-block-end: 40.1px;
  inset-block-end: clamp(
    0.625rem,
    -0.6291666667rem + 2.6128472222vi,
    2.50625rem
  );
  inset-inline-start: 50%;
  justify-content: center;
  position: absolute;
  transform: translateX(-49%);
}

.p-topFv-logo__text {
  color: var(--color-text-black);
  font-family: var(--ff-noto);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.p-topCopy {
  position: relative;
}

.p-topCopy::before {
  background: url(../img/bubble-1.webp) no-repeat center center/contain;
  block-size: 500px;
  content: "";
  inline-size: 500px;
  inset-block-start: -170px;
  inset-inline-start: 20%;
  position: absolute;
  transform: translateX(-50%);
  z-index: -2;
}

.p-topCopy__inner {
  padding-block: 120px 147px;
  position: relative;
}

.p-topCopy__inner::before {
  background: url(../img/bubble-2.webp) no-repeat center center/contain;
  block-size: 170px;
  content: "";
  inline-size: 170px;
  inset-block-start: 15px;
  inset-inline-end: 27%;
  position: absolute;
  transform: translateX(50%);
  z-index: -2;
}

.p-topCopy__inner::after {
  background: url(../img/bubble-3.webp) no-repeat center center/contain;
  block-size: 125px;
  content: "";
  inline-size: 125px;
  inset-block-end: -20px;
  inset-inline-end: 18%;
  position: absolute;
  transform: translateX(50%);
  z-index: -2;
}

.p-topCopy__img {
  margin-inline-start: 30px;
  padding-inline: 30px;
  position: relative;
  text-align: center;
  z-index: 0;
}

.p-topMessage {
  overflow: hidden;
  position: relative;
  background: url(../img/p-topMessage-bg-pc.webp) no-repeat center center/cover;
}

.p-topMessage__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-block: 137px 28px;
  position: relative;
  text-align: center;
}

.p-topMessage__inner::before {
  background: url(../img/bubble-4.webp) no-repeat center center/cover;
  block-size: 379.5px;
  content: "";
  inline-size: 380px;
  inset-block-start: 78px;
  inset-inline-end: 9%;
  position: absolute;
  transform: translateX(50%);
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;

  z-index: 0;
}
.p-topMessage__inner::after {
  background: url(../img/bubble-4.webp) no-repeat center center/cover;
  block-size: 162px;
  content: "";
  inline-size: 162px;
  bottom: 10px;
  left: 386px;
  position: absolute;
  z-index: 0;
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
  opacity: 0.7;
}

/* .p-topMessage::before {
  background-image: linear-gradient(120deg, #c6ebfc 30%, #e1b2ea 80%);
  content: "";
  inset: 0;
  inset-block-start: 0;
  opacity: 0.7;
  position: absolute;
}

.p-topMessage::after {
  background: url(../img/p-topMessage-bg.webp) no-repeat center center/cover;
  background-position: 30% 0px;
  clip-path: ellipse(156% 70% at 50% 100%);
  content: "";
  inset: 0;
  inset-block-start: -800px;
  position: absolute;
  z-index: 0;
} */

.p-topMessage__head {
  position: relative;
}
.p-topMessage__head .c-topSection-title__en--white {
  display: inline-table;
  inline-size: 100%;
  inset-block-start: -120px;
}

.p-topMessage__head .c-topSection-title__ja {
  font-size: 30px;
  line-height: 1.8;
}
.p-topMessage__title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* top: -40px; */
  /* color: #fff; */
  font-size: 100px;
  mix-blend-mode: overlay;
  height: 100px;
  z-index: 1;
  width: 628px;
  top: -55px;
}

/* .p-topMessage__title--pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-topMessage__title--pc {
    display: none;
  }
}
.p-topMessage__title--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-topMessage__title--sp {
    display: block;
    border: solid 1px red;
    background-color: pink;
  }
} */

@media screen and (max-width: 767px) {
  .p-topMessage__title {
    width: 110%;
    width: 100%;
    bottom: auto;
    top: -53px;
    opacity: 0.4;
  }
}

.p-topMessage__title img {
  display: block;
  mix-blend-mode: overlay;
}

.p-topMessage__texts {
  margin-block-start: 35px;
  position: relative;
}

.p-topMessage__text {
  font-family: var(--ff-mincho);
  font-size: 24px;
  letter-spacing: 0.07em;
  line-height: 2;
}

.p-topMessage__text + .p-topMessage__text {
  margin-block-start: 50px;
}

.p-topMessage__logos {
  display: flex;
  flex-direction: column;
  gap: 7.4px;
  justify-content: center;
  margin-block-start: 51px;
}

.p-topMessage-logo__text {
  color: var(--color-text-black);
  font-family: var(--ff-noto);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.p-topMessage__img {
  /* margin-block-start: 60.1px; */
  margin-top: -41px;
}

.p-topConcept {
  position: relative;
}

.p-topConcept::before {
  background: var(--background-base);
  clip-path: ellipse(156% 100% at 50% 100%);
  content: "";
  inset: 0;
  inset-block-start: -90px;
  position: absolute;
  z-index: 0;
}

.p-topConcept::after {
  background: url(../img/bubble-5.webp) no-repeat center center/cover;
  block-size: 122px;
  content: "";
  filter: blur(1.5px);
  inline-size: 127px;
  inset-block-start: -150px;
  inset-inline-end: 30%;
  position: absolute;
  transform: translateX(50%);
  z-index: 0;
}

.p-topConcept__inner {
  padding-block: 120px 100px;
  position: relative;
  z-index: 1;
}

.p-topConcept__inner::before {
  background: url(../img/bubble-6.webp) no-repeat center center/cover;
  block-size: 122px;
  content: "";
  filter: blur(1.5px);
  inline-size: 127px;
  inset-block-start: 50px;
  inset-inline-start: 15%;
  position: absolute;
  transform: translateX(-50%);
  z-index: -1;
}

.p-topConcept__inner::after {
  background: url(../img/bubble-7.webp) no-repeat center center/cover;
  block-size: 120px;
  content: "";
  inline-size: 90px;
  inset-block-end: 50px;
  inset-inline-end: 16%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 0;
}

.p-topConcept__body {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, -1.9583333333rem + 6.1631944444vi, 5.4375rem);
  margin-inline: auto;
  max-inline-size: 1080px;
  padding-inline: 20px;
}

.p-topConcept__container {
  flex: 1;
}

.p-topConcept__head .c-section__title {
  display: inline-block;
  max-inline-size: 535px;
}

.p-topConcept__head .c-topSection-title__en {
  font-size: 100px;
  inset-block-start: -95px;
  inset-inline-start: 40%;
  z-index: -1;
}

.p-topConcept__head .c-topSection-title__ja {
  text-align: left;
}

.p-topConcept__head .c-topSection-title__ja .pc-hidden {
  display: none;
}

.p-topConcept__head .c-topSection-title__ja sup {
  font-size: 11px;
}

.p-topConcept__img {
  flex: 0.8;
  inline-size: 100%;
  max-inline-size: 350px;
}

.p-topConcept__texts {
  margin-block-start: 55px;
}

.p-topConcept__content {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.p-topConcept__content .pc-hidden {
  display: none;
}

.p-topConcept__text {
  font-family: var(--ff-noto);
  font-size: clamp(0.8125rem, 0.7684859155rem + 0.1877934272vi, 0.9375rem);
  letter-spacing: 0.1em;
  line-height: 2.5;
}

.p-topConcept__text sup {
  font-size: 8px;
}

.p-topConcept__text:nth-of-type(1) {
  max-inline-size: 527px;
}

.p-topConcept__add {
  font-family: var(--ff-noto);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.2;
  margin-block-start: 55px;
  max-inline-size: 596px;
}

.p-topConcept__btn {
  margin-block-start: 53px;
}

.p-topConcept__btn .c-btn {
  padding-block: 15px 19px;
  padding-inline: 80px;
}

.p-topProduct {
  position: relative;
  margin-block-start: 100px;
}
@media screen and (max-width: 767px) {
  .p-topProduct {
    margin-block-start: 67px;
  }
}
.p-topProduct__bubble {
  position: absolute;
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
.p-topProduct__bubble--top {
  width: 110px;
  height: 106px;
  top: -5%;
  right: 20%;
}
@media screen and (max-width: 767px) {
  .p-topProduct__bubble--top {
    top: -15%;
    right: -52px;
    width: 133px;
  }
}
.p-topProduct__bubble--bottom {
  width: 121px;
  height: 161px;
  bottom: 31%;
  left: 14%;
}
@media screen and (max-width: 767px) {
  .p-topProduct__bubble--bottom {
    display: none;
  }
}
.p-topProduct::before {
  background: url(../img/topProduct-bg.webp) no-repeat top center/cover;
  content: "";
  inset: 0;
  position: absolute;
}

.p-topProduct__inner {
  padding-block: 133px 71px;
  position: relative;
}

.p-topProduct__inner::before {
  background: url(../img/bubble-8.webp) no-repeat center center/cover;
  block-size: 247px;
  content: "";
  inline-size: 221px;
  inset-block-end: 370px;
  /* inset-inline-start: 23%; */
  left: 13%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 1;
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
  bottom: -100px;
}
@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
.p-topProduct__head {
  position: relative;
}
.p-topProduct__head .c-topSection-title__en {
  font-size: 90px;
  inset-block-start: -77px;
  z-index: 1;
}
.p-topProduct__title {
  position: absolute;
  left: 50%;
  top: -48px;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .p-topProduct__title {
    width: 100%;
  }
}
.p-topProduct__body {
  margin-block-start: 49px;
}

.p-topProduct__top {
  overflow: hidden;
}

.p-topProduct__arrow {
  display: none;
}
.p-topProduct__top .p-topProduct__list {
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(5, 179px);
  margin-block-start: 36px;
  margin-inline: auto;
  max-inline-size: 1182px;
  overflow: scroll;
  padding-inline: 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.p-topProduct__top .p-topProduct__list::-webkit-scrollbar {
  display: none;
}

.p-topProduct__top .c-topProduct__item:nth-of-type(4) .c-topProduct__img {
  margin-block-start: 13px;
}

.p-topProduct__top
  .c-topProduct__item:nth-of-type(4)
  .c-topProduct__img::before {
  inset-block-end: 14px;
}

.p-topProduct__bottom {
  margin-block-start: 71px;
}

.p-topProduct__bottom .p-topProduct__list {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, 1fr);
  margin-block-start: 34px;
  margin-inline: auto;
  max-inline-size: 480px;
  padding-inline: 30px;
}

.p-topProduct-body__title {
  font-family: var(--ff-mincho);
  font-size: 32px;
  letter-spacing: 0.08em;
  opacity: 0.6;
  text-align: center;
  text-transform: uppercase;
}

.p-conceptCopy__inner {
  padding-block: 102px 54px;
  position: relative;
}

.p-conceptCopy__texts {
  position: relative;
  text-align: center;
}

.p-conceptCopy__main {
  font-family: var(--ff-mincho);
  font-size: clamp(1.125rem, 0.6408450704rem + 2.0657276995vi, 2.5rem);
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.p-conceptCopy__sub {
  font-family: var(--ff-mincho);
  /* font-size: clamp(0.9375rem, 0.8714788732rem + 0.2816901408vi, 1.125rem); */
  font-size: clamp(
    15px,
    calc(15px + (24 - 15) * ((100vw - 390px) / (1920 - 390))),
    24px
  );
  letter-spacing: 0.08em;
  line-height: 2;
  margin-block-start: 29px;
}

.p-conceptCopy__sub .pc-hidden {
  display: none;
}

.p-conceptCopy__title {
  left: 4px;
  top: 52%;
  transform: translateY(-50%);
  opacity: 0.8;
  position: absolute;
}

.home .p-conceptIngredient {
  padding-block: 0;
}
.p-conceptIngredient {
  padding-block: 64px 111px;
}

@media screen and (max-width: 767px) {
  .p-conceptIngredient {
    padding-block: 0;
  }
}

.p-conceptIngredient .c-topSection-title__en {
  font-size: 100px;
  inset-block-start: -105px;
  inset-inline-start: 278px;
  z-index: -1;
}
.p-conceptIngredient__wrapper {
  /* height: 100vh; */
  /* overflow: hidden; */
  background-color: var(--background-base);
  position: relative;
}

.p-conceptIngredient__inner {
  position: relative;
  top: auto;
  transform: none;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 1080px) {
  .home .p-conceptIngredient__inner {
    max-width: 800px;
    margin: 0 auto;
  }
}

.p-conceptIngredient__inner::before {
  background: url(../img/conceptIngredient-bg.webp) no-repeat center
    center/cover;
  background-size: 120% 100%;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}
.home .p-conceptIngredient__inner::before {
  display: none;
}
.home .p-conceptIngredient__flex {
  display: grid;
  grid-template-rows: 485px 56px;
  grid-template-columns: 585px 506px;
  align-content: center;
  column-gap: 24px;
  align-items: center;
  padding-block-start: 0;
  row-gap: 100px;
  max-width: none;
  padding-bottom: 0;
}
@media screen and (min-width: 1081px) and (max-width: 1920px) {
  .home .p-conceptIngredient__flex {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1080px) {
  .home .p-conceptIngredient__flex {
    display: flex;
    flex-direction: column;
    row-gap: 0;
    padding-block-start: 0;
  }
}

.p-conceptIngredient__flex {
  height: inherit;
  max-width: 1040px;
  margin: 0 auto;
  padding-block-start: 138px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  gap: 18px;
  padding-bottom: 125px;
  justify-content: center;
}

@media screen and (max-width: 1080px) {
  .p-conceptIngredient__flex {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 0;
    align-items: center;
    padding-block-start: 146px;
    padding-bottom: 84px;
  }
}
.p-conceptIngredient__texts {
  flex: 1.1;
  max-inline-size: 580px;
  position: relative;
  padding-block-start: 90px;
}
@media screen and (max-width: 1080px) {
  .p-conceptIngredient__texts {
    display: contents;
  }
}
.home .p-conceptIngredient__texts {
  grid-column: 1/2;
  grid-row: 1/2;
  padding-left: 48px;
  margin-block-start: 68px;
  padding-left: 14px;
  padding-block-start: 0;
}

.home .p-conceptIngredient__title {
  position: absolute;
  top: -48px;
  left: 39px;
}

@media screen and (max-width: 1080px) {
  .home .p-conceptIngredient__title {
    position: static;
  }
}

.home .p-topConcept__button {
  grid-column: 1/3;
  grid-row: 2/3;
  /* width: 240px; */
  inline-size: 240px;
  padding-block: 16px;
  margin: 0 auto;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1080px) {
  .home .p-topConcept__button {
    order: 6;
    inline-size: 210px;
    padding-inline: 20px;
    margin-block-start: 24px;
  }
}

.p-conceptIngredient__main {
  font-family: var(--ff-mincho);
  font-size: clamp(1.125rem, 0.860915493rem + 1.1267605634vi, 1.875rem);
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media screen and (max-width: 1080px) {
  .p-conceptIngredient__main {
    order: 2;
    text-align: center;
    letter-spacing: 0.07em;
    margin-top: -57px;
    line-height: 2;
  }
}

.p-conceptIngredient__main sup {
  font-family: var(--ff-noto);
  font-weight: 300;
  font-size: small;
}

.p-conceptIngredient__sub {
  font-weight: 400;
  font-family: var(--ff-noto);
  font-size: clamp(0.8125rem, 0.7684859155rem + 0.1877934272vi, 0.9375rem);
  letter-spacing: 0.1em;
  line-height: 2.5;
  margin-block-start: 22px;
}

@media screen and (max-width: 1080px) {
  .p-conceptIngredient__sub {
    order: 2;
  }
}

.home .p-conceptIngredient__sub {
  margin-block-start: 50px;
}
@media screen and (max-width: 1080px) {
  .home .p-conceptIngredient__sub {
    order: 4;
  }
}

.p-conceptIngredient__sub .pc-hidden {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-conceptIngredient__sub .pc-hidden {
    display: block;
  }
}

.p-conceptIngredient__sub sup {
  vertical-align: top;
}

.p-conceptIngredient__add {
  font-family: var(--ff-noto);
  font-size: 10px;
  font-weight: 300;
  color: var(--color-purple);
  line-height: 1.2;
  margin-block-start: 27px;
}
@media screen and (max-width: 1080px) {
  .p-conceptIngredient__add {
    max-inline-size: 500px;
    order: 5;
    margin-inline: 30px;
    margin-block-start: 15px;
    margin-block-end: 38px;
  }
  .home .p-conceptIngredient__add {
    margin-block-start: 29px;
  }
}

.p-conceptIngredient__img {
  flex: 0.9;
  text-align: center;
  max-width: 520px;
  /* max-block-size: 484px; */
}

@media screen and (max-width: 1080px) {
  .p-conceptIngredient__img {
    margin-block-start: 18px;
    order: 3;
    overflow: visible;
  }
}
.home .p-conceptIngredient__img {
  grid-column: 2/3;
  grid-row: 1/2;
}

.swiper-button-next.c-concept-next__btn,
.swiper-button-prev.c-concept-prev__btn {
  width: 25px;
  height: 25px;
  background-image: url(../../assets/img/icon-arrow.svg);
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .swiper-button-next.c-concept-next__btn,
  .swiper-button-prev.c-concept-prev__btn {
    top: 39%;
    width: 20px;
    height: 20px;
  }
}
.swiper-button-prev.c-concept-prev__btn {
  transform: scale(-1, 1);
  left: 0;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev.c-concept-prev__btn {
    left: 5px;
  }
}

.swiper-button-next.c-concept-next__btn {
  right: 0;
}

@media screen and (max-width: 767px) {
  .swiper-button-next.c-concept-next__btn {
    right: 5px;
  }
}

.swiper-button-next.c-concept-next__btn:after,
.swiper-button-prev.c-concept-prev__btn:after {
  content: "";
}

.c-concept-next__btn.swiper-button-disabled,
.c-concept-prev__btn.swiper-button-disabled {
  display: none;
}

.p-conceptIngredient-slide__inner {
  block-size: 484px;
  inline-size: 100%;
  position: relative;
}

.p-conceptIngredient__slide {
  align-items: center;
  display: grid;
  inset: 0;
  opacity: 1;
  /* position: absolute; */
  /* transition: opacity 0.6s ease;
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse; */
}

@keyframes floating-y {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(5%);
  }
}
/* .p-conceptIngredient__slide.is-active {
  opacity: 1;
} */

.home .p-conceptIngredient__flex .p-conceptIngredient__slide--img {
  max-width: 440px;
}

.home .p-conceptIngredient__flex .p-conceptIngredient__slide--img img {
  margin: 0 auto;
  width: 90%;
}

@media screen and (max-width: 767px) {
  .home .p-conceptIngredient__flex .p-conceptIngredient__slide--img img {
    width: 100%;
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .home .p-conceptIngredient__flex .p-conceptIngredient__slide--img {
    display: block;
    /* max-width: 367px; */
    margin: 0 auto;
  }
}

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

@media screen and (max-width: 767px) {
  .p-conceptIngredient__slide--img {
    margin: 0 auto;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .swiper-slide__01 .p-conceptIngredient__slide--img {
    width: 92%;
  }
}

.p-step {
  padding-block-start: 91px;
  padding-block-end: 45px;
}

@media screen and (max-width: 767px) {
  .p-step {
    padding-block-start: 0;
  }
}

.p-stepConcept {
  margin-block-start: -200px;
}

.p-stepConcept .p-step__inner {
  padding-block-start: 0;
}

.p-concept-footer {
  margin-block-start: 0px;
}

.p-detailsProduct__inner {
  padding-block: 109px 49px;
}

.p-detailsProduct__head .c-section-title__en {
  text-transform: capitalize;
}

.p-detailsProduct__head .c-section-title__ja {
  font-weight: 500;
}

.p-detailsProduct__head .c-section-title__ja sup {
  font-size: x-small;
  font-family: var(--ff-noto);
  vertical-align: text-top;
  font-weight: 300;
}

.p-detailsProduct__head .c-section-title__ja .pc-hidden {
  display: none;
}

.p-detailsProduct__body {
  margin-block-start: 40px;
  margin-inline: auto;
  max-inline-size: 1073px;
  padding-inline: 20px;
  position: relative;
}

.p-detailsProduct__item {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, -4.1071428571rem + 10.6398809524vi, 5.46875rem);
  justify-content: center;
  margin-inline-start: -55px;
}

.p-detailsProduct__content {
  flex-grow: 1;
}

.p-detailsProduct-item__titleJa {
  font-family: var(--ff-noto);
  font-size: 24px;
  letter-spacing: 0.09em;
  margin-block-start: 20px;
}

.p-detailsProduct-item__titleJa .pc-hidden {
  display: none;
}

.p-detailsProduct-item__info {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-block-start: 36px;
}

.p-detailsProduct-itemInfo__spec {
  border: 1px solid #64bae0;
  border-radius: 5px;
  color: #64bae0;
  font-family: var(--ff-noto);
  font-size: 13px;
  letter-spacing: 0.2em;
  padding-block: 5px;
  padding-inline: 23.5px 19px;
}

.p-detailsProduct-itemInfo__price {
  font-family: var(--ff-mincho);
  font-size: 22px;
  letter-spacing: 0.08em;
  margin-block: calc((1em - 1lh) / 2);
}

.p-detailsProduct-itemInfo__price span:nth-of-type(1) {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2.25;
}

.p-detailsProduct-itemInfo__price span:nth-of-type(2) {
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 3;
}

.p-detailsProduct-item__effects {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 130px);
  margin-block-start: 40px;
  max-inline-size: 430px;
}

.p-detailsProduct-item__effect {
  block-size: 130px;
  border-radius: 50%;
  font-family: var(--ff-noto);
  font-size: 15px;
  inline-size: 130px;
  letter-spacing: 0.09em;
  line-height: 1.5;
  padding-block-start: 42px;
  text-align: center;
}

.p-detailsProduct-item__effect sup {
  font-family: var(--ff-noto);
  font-size: 8px;
  letter-spacing: 0.06em;
  line-height: 1.875;
}

.p-detailsProduct-item__effect span {
  font-family: var(--ff-noto);
  font-size: 10px;
  letter-spacing: 0.06em;
  line-height: 2.25;
}

.p-detailsProduct-item__effects--powder .p-detailsProduct-item__effect {
  background: #fff6ff;
  padding-block-start: 54px;
}

.p-detailsProduct-item__effects--blue .p-detailsProduct-item__effect {
  background: #ebf5fe;
  padding-block-start: 54px;
}

.p-detailsProduct-item__btn {
  background: var(--background-pink);
  border: 1px solid #db82a0;
  border-radius: 28px;
  color: var(--color-text-white);
  display: inline-block;
  font-family: var(--ff-noto);
  font-size: 15px;
  inline-size: 100%;
  letter-spacing: 0.08em;
  margin-block-start: 40px;
  margin-inline: auto;
  max-inline-size: 200px;
  padding-block: 16px 15px;
  text-align: center;
}

.p-detailsProduct__add {
  font-family: var(--ff-noto);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0;
  position: absolute;

  /* fallback（全ブラウザ用） */
  bottom: 13%;
  left: 20px;

  /* 対応ブラウザだけ上書き */
  inset-block-end: 13%;
  inset-inline-start: 20px;
}

.p-detailsProductFixer__body .p-detailsProduct__content {
  flex-grow: inherit;
}

.p-detailsProductFixer__body .p-detailsProduct__item {
  margin-inline-start: 13px;
}

.p-detailsProductFixer__body .p-detailsProduct-item__titleJa {
  margin-block-start: -2px;
}

.p-detailsProductFixer__body
  .p-detailsProduct-item__effects--powder
  .p-detailsProduct-item__effect {
  padding-block-start: 47px;
}

.p-detailsProductFixer__body .p-detailsProduct__add {
  inset-block-end: 0%;
  inset-inline-start: 100px;
}

.p-detailsProductWash__body .p-detailsProduct__content {
  flex-grow: inherit;
}

.p-detailsProductWash__body .p-detailsProduct__item {
  margin-inline-start: 13px;
}

.p-detailsProductWash__body .p-detailsProduct-item__titleJa {
  margin-block-start: 23px;
}

@media screen and (max-width: 767px) {
  .p-detailsProductWash__body .p-detailsProduct-item__titleJa {
    margin-block-start: 0;
  }
}

.p-detailsProductWash__body
  .p-detailsProduct-item__effects--powder
  .p-detailsProduct-item__effect {
  padding-block-start: 36px;
}

.p-detailsProductWash__body .p-detailsProduct-item__effects {
  margin-block-start: 23px;
}

.p-detailsProductWash__body
  .p-detailsProduct-item__effects
  .p-detailsProduct-item__effect:nth-of-type(3) {
  padding-block-start: 44px;
}

.p-detailsProductWash__body .p-detailsProduct__add {
  inset-block-end: -3%;
  inset-inline-start: 50px;
}

.p-detailsProductCleansing__body {
  padding-block-end: 118px;
}

.p-detailsProductCleansing__body .p-detailsProduct__content {
  flex-grow: inherit;
}

.p-detailsProductCleansing__body .p-detailsProduct__item {
  margin-inline-start: 13px;
}

.p-detailsProductCleansing__body .p-detailsProduct-item__titleJa {
  margin-block-start: 17px;
}

.p-detailsProductCleansing__body
  .p-detailsProduct-item__effects--powder
  .p-detailsProduct-item__effect {
  padding-block-start: 36px;
}

.p-detailsProductCleansing__body .p-detailsProduct-item__effects {
  margin-block-start: 23px;
}

.p-detailsProductCleansing__body
  .p-detailsProduct-item__effects
  .p-detailsProduct-item__effect:nth-of-type(1) {
  padding-block-start: 44px;
}

.p-detailsProductCleansing__body .p-detailsProduct__add {
  inset-block-end: 10%;
  inset-inline-start: clamp(1.25rem, -5.8928571429rem + 14.880952381vi, 7.5rem);
}

.p-detailsBaseProduct__inner {
  padding-block: 109px 37px;
}

.p-detailsBaseProduct__inner .c-section-title__ja {
  font-weight: 500;
}

.p-detailsBaseProduct__head .c-section-title__en {
  text-transform: capitalize;
}

.p-detailsBaseProduct__head .c-section-title__ja .pc-hidden {
  display: none;
}

.p-detailsBaseProduct__body {
  margin-block-start: 40px;
  margin-inline: auto;
  max-inline-size: 1166px;
  padding-inline: 20px;
}

.p-detailsBaseProduct__item {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, -5rem + 12.5vi, 6.25rem);
  justify-content: center;
}

.p-detailsBaseProduct__item:nth-of-type(2) {
  margin-block-start: 36px;
}
.p-detailsBaseProduct__item:nth-of-type(3) {
  margin-block-start: 12px;
}

.p-detailsBaseProduct__content {
  flex-grow: 1;
  margin-block-start: 53px;
}

.p-detailsBaseProduct-item__titleEn {
  font-family: var(--ff-noto);
  font-size: 12px;
  letter-spacing: 0.18em;
  padding-inline-start: 19px;
  position: relative;
  text-transform: uppercase;
}

.p-detailsBaseProduct-item__titleEn::before {
  block-size: 12px;
  border-radius: 50%;
  content: "";
  inline-size: 12px;
  inset-block-start: 50%;
  inset-inline-start: 0;
  position: absolute;
  transform: translateY(-50%);
}

.p-detailsBaseProduct-item__titleEn--lavender::before {
  background: #d5cee6;
}

.p-detailsBaseProduct-item__titleEn--green {
  color: #334837;
}

.p-detailsBaseProduct-item__titleEn--green::before {
  background: #c4e3ce;
}

.p-detailsBaseProduct-item__titleEn--clear {
  color: #0a497c;
}

.p-detailsBaseProduct-item__titleEn--clear::before {
  background: #bdd7ef;
}

.p-detailsBaseProduct-item__titleJa {
  font-family: var(--ff-noto);
  font-size: 24px;
  letter-spacing: 0.09em;
  font-weight: 500;
  margin-block-start: 29px;
}

.p-detailsBaseProduct-item__titleJa .pc-hidden {
  display: none;
}

.p-detailsBaseProduct-item__info {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-block-start: 30px;
}

.p-detailsBaseProduct-itemInfo__spec {
  border: 1px solid #64bae0;
  border-radius: 5px;
  color: #64bae0;
  font-family: var(--ff-noto);
  font-size: 13px;
  letter-spacing: 0.2em;
  padding-block: 5px;
  padding-inline: 19.5px 14px;
}

.p-detailsBaseProduct-itemInfo__price {
  font-family: var(--ff-mincho);
  font-size: 22px;
  letter-spacing: 0.08em;
  margin-block: calc((1em - 1lh) / 2);
}

.p-detailsBaseProduct-itemInfo__price span:nth-of-type(1) {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2.25;
}

.p-detailsBaseProduct-itemInfo__price span:nth-of-type(2) {
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 3;
}

.p-detailsBaseProduct-item__effects {
  /* display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 130px);
  margin-block-start: 40px; */
  display: inline-block;
  margin-block-start: 40px;
  max-inline-size: 430px;
}

.p-detailsBaseProduct-item__effect {
  block-size: 130px;
  border-radius: 50%;
  font-family: var(--ff-noto);
  font-size: 15px;
  inline-size: 130px;
  letter-spacing: 0.09em;
  line-height: 1.5;
  padding-block-start: 42px;
  text-align: center;
}

.p-detailsBaseProduct-item__effect sup {
  font-family: var(--ff-noto);
  font-size: 8px;
  letter-spacing: 0.06em;
  line-height: 1.875;
}

.p-detailsBaseProduct-item__effect span {
  font-family: var(--ff-noto);
  font-size: 10px;
  letter-spacing: 0.06em;
  line-height: 2.25;
}
.p-detailsBaseProduct-item__effect--lines {
  padding-block-start: 32px;
}

.p-detailsBaseProduct-item__effect--lavender {
  background: #ecedff;
}

.p-detailsBaseProduct-item__effect--green {
  background: #e4f8f5;
  color: #344837;
}

.p-detailsBaseProduct-item__effect--clear {
  background: #e3f2f9;
  color: #171c30;
}

.p-detailsBaseProduct-item__effect--clear:nth-of-type(2) {
  padding-block-start: 53px;
}

.p-detailsBaseProduct-item__btn {
  background: var(--background-pink);
  border: 1px solid #db82a0;
  border-radius: 28px;
  color: var(--color-text-white);
  display: inline-block;
  font-family: var(--ff-noto);
  font-size: 15px;
  inline-size: 100%;
  letter-spacing: 0.08em;
  margin-block-start: 40px;
  margin-inline: auto;
  max-inline-size: 200px;
  padding-block: 16px 15px;
  text-align: center;
}

.p-detailsBaseProduct__add {
  font-family: var(--ff-noto);
  font-size: 10px;
  font-weight: 300;
  margin-block-start: -8.8px;
}

.p-feature {
  margin-block-start: 69px;
}
@media screen and (max-width: 767px) {
  .p-feature {
    margin-block-start: 0;
  }
}
.p-feature__inner {
  background: url(../img/feature-bg.webp) no-repeat center center/cover;
  background-size: 100% 100%;
  padding-block: 105px 104px;
}

.p-feature__body {
  padding-block-start: 62px;
  max-width: 1920px;
  margin: 0 auto;
}

.p-feature-swiper {
  padding-block-start: 15px;
  position: relative;
}

.p-feature-swiper .swiper-slide {
  height: auto;
}

.p-feature-swiper .swiper-slide .p-feature__slide {
  height: 100%;
}

.p-feature-swiper .swiper-slide.swiper-slide-active .p-feature__slide::before {
  opacity: 0;
}

.p-feature__slide {
  align-items: center;
  background: var(--background-base);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  min-block-size: 620px;
  padding-block: 55px 20px;
  padding-inline: 20px;
  position: relative;
}

.p-feature__slide::before {
  background: url(../img/features-blur.webp) no-repeat center center/cover;
  border-radius: 18px;
  content: "";
  inset: 0;
  position: absolute;
  transition: opacity 0.4s ease-in-out;
}

.p-feature-slide__num {
  background: var(--background-pink);
  border-radius: 15px;
  color: var(--color-text-white);
  font-size: clamp(
    12px,
    calc(12px + (15 - 12) * ((100vw - 375px) / (1920 - 375))),
    15px
  );
  inset-block-start: -15px;
  inset-inline-start: 50%;
  letter-spacing: 0.07em;
  padding-block: 0 3px;
  height: 30px;
  line-height: 30px;
  width: 140px;
  text-align: center;
  padding-inline: 30px;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
  font-family: var(--ff-noto);
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .p-feature-slide__num {
    padding-block: 0 3px;
    padding-inline: 0;
    height: 27px;
    line-height: 27px;
    width: 94px;
  }
}
.p-feature-slide__title {
  font-family: var(--ff-mincho);
  font-size: 24px;
  letter-spacing: 0px;
  line-height: 1.25;
  text-align: center;
}

.p-feature-slide__title sup {
  font-size: 12px;
  font-family: var(--ff-noto);
  font-weight: 300;
  font-size: x-small;
}

.p-feature-slide__title .pc-hidden {
  display: none;
}

.p-feature-slide__img {
  margin-block-start: 20px;
}

.p-feature-slide__imgs {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(5, auto);
  margin-block-start: 40px;
}

.p-feature-slide__img--grid {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
  margin-block-start: 30px;
  /* margin-inline-start: clamp(0.625rem, -3.125rem + 7.8125vi, 6.25rem); */
}

.p-feature-slide__img--grid .p-feature-slide__img {
  text-align: center;
}

.p-feature-slide__text {
  font-family: var(--ff-noto);
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-block-start: 30px;
  /* max-inline-size: 700px; */
  font-weight: 500;
  text-align: center;
}

.p-feature-slide__text sup {
  font-size: 12px;
  vertical-align: top;
  margin-top: 2px;
}

.p-feature-slide__text .pc-hidden {
  display: none;
}

.p-feature-slide__text--purple {
  background: #faf5fa;
  border-radius: 10px;
  font-family: var(--ff-noto);
  font-size: 15px;
  inline-size: 100%;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-block-start: 20px;
  max-inline-size: 840px;
  padding-block: 25px 35px;
  padding-inline: 16px;
  text-align: center;
}

.p-feature-slide__text--purple p:nth-of-type(1) {
  font-family: var(--ff-noto);
  font-size: 18px;
  letter-spacing: 0.12em;
  line-height: 1.3333333333;
  padding-block-end: 23.5px;
  position: relative;
  text-align: center;
}

.p-feature-slide__text--purple p:nth-of-type(1)::before {
  background: var(--background-base);
  block-size: 1px;
  content: "";
  inline-size: 80%;
  inset-block-end: 0px;
  inset-inline-start: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.p-feature-slide__text--purple p:nth-of-type(2) {
  font-family: var(--ff-noto);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.6666666667;
  padding-block-start: 20.5px;
}

.p-feature-slide__text--purple .pc-hidden {
  display: none;
}

.p-feature-slide__list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, 120px);
  margin-block-start: 26px;
}

.p-feature-slide__item {
  background: #faf5fa;
  border-radius: 10px;
  font-family: var(--ff-noto);
  font-size: 12px;
  letter-spacing: 0.12em;
  padding-block: 13px 12px;
  text-align: center;
}

.p-feature-slide__plan {
  border: 1px solid #ddc7ec;
  border-radius: 10px;
  margin-block-start: 20px;
  padding-block: 35px 42px;
  padding-inline: clamp(1rem, -2.5rem + 7.2916666667vi, 6.25rem);
}

.p-feature-slide-plan__title {
  font-family: var(--ff-noto);
  font-size: 18px;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-align: center;
}

.p-feature-slide-plan__top {
  padding-block: 36px 32px;
}

.p-feature-slide-plan__top .p-feature-slide-plan__type {
  padding-inline-start: 39px;
  position: relative;
}

.p-feature-slide-plan__top .p-feature-slide-plan__type::before,
.p-feature-slide-plan__top .p-feature-slide-plan__type::after {
  block-size: 12px;
  border-radius: 50%;
  content: "";
  inline-size: 12px;
  inset-block-start: 50%;
  inset-inline-start: 0px;
  position: absolute;
  transform: translateY(-50%);
}

.p-feature-slide-plan__top .p-feature-slide-plan__type::before {
  background: #d5cee6;
}

.p-feature-slide-plan__top .p-feature-slide-plan__type::after {
  background: #c4e3ce;
  inset-inline-start: 17px;
}

.p-feature-slide-plan__bottom {
  border-top: 1px solid #ddc7ec;
  padding-block-start: 36px;
}

.p-feature-slide-plan__bottom .p-feature-slide-plan__type {
  padding-inline-start: 22px;
  position: relative;
}

.p-feature-slide-plan__bottom .p-feature-slide-plan__type::before {
  background: #bdd7ef;
  block-size: 12px;
  border-radius: 50%;
  content: "";
  inline-size: 12px;
  inset-block-start: 50%;
  inset-inline-start: 0px;
  position: absolute;
  transform: translateY(-50%);
}

.p-feature-slide-plan__top,
.p-feature-slide-plan__bottom {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.p-feature-slide-plan__type {
  font-family: var(--ff-noto);
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.p-feature-slide-plan__material {
  font-family: var(--ff-noto);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.p-feature-swiper__btns {
  display: flex;
  /* inline-size: 100%; */
  /* inline-size: clamp(53.5625rem, 8rem + 50.625vi, 68.75rem); */
  /* inline-size: 880px; */
  inline-size: clamp(
    880px,
    calc(880px + (1150 - 880) * ((100vw - 1441px) / (1920 - 1441))),
    1150px
  );

  inset-block-start: 50%;
  inset-inline-start: 50%;
  justify-content: space-between;
  margin-inline: auto;
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.p-feature-useMethod {
  margin: 0 auto;
  width: var(--useMethodW, 100%);
  max-width: 100%;
}

.p-feature-useMethod___inner {
  margin-block-start: 20px;
  margin-inline: auto;
  text-align: center;
}

.p-feature-useMethod___inner--grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.p-feature-useMethod___item {
  background: var(--background-base);
  margin: 0 auto;
  border: 1px solid #ddc7ec;
  border-radius: 10px;
  width: 100%;
}

.p-feature-useMethod__title {
  font-family: var(--ff-noto);
  font-size: 18px;
  letter-spacing: 0.12em;
  padding-block: 12px 15px;
  font-weight: 500;
  text-align: center;
  position: relative;
}

.p-feature-useMethod__title::after {
  background: #ddc7ec;
  /* block-size: 1px; */
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  /* inline-size: calc(100% + 60px);
  inset-block-start: 0px;
  inset-inline-start: 50%; */
  position: absolute;
  /* transform: translateX(-50%); */
}

.p-feature-useMethod__text {
  font-family: var(--ff-noto);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.6666666667;
  padding-block: 20px;
  position: relative;
  /* text-align: left; */
  padding-inline: 20px;
}

.p-feature-useMethod__text .sp-hidden {
  display: block;
}
/* .p-feature-useMethod__text::before {
  background: #ddc7ec;
  block-size: 1px;
  content: "";
  inline-size: calc(100% + 60px);
  inset-block-start: 0px;
  inset-inline-start: 50%;
  position: absolute;
  transform: translateX(-50%);
} */
.p-feature-useMethod__text--center {
  display: inline-block;
}

.p-feature__add {
  font-family: var(--ff-noto);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
  margin-block-start: 20px;
  margin-inline: auto;
  max-inline-size: 1080px;
  padding-inline: 20px;
  color: var(--color-purple);
}

.p-detailsCleansingFeature__body .p-feature-slide__text--purple {
  margin-block-start: 40px;
  text-align: center;
}

.p-detailsCleansingFeature__body .p-feature-slide__text--maxWidth {
  max-inline-size: 520px;
}

.p-detailsMistFeature__body .p-feature-slide__text--purple {
  margin-block-start: 20px;
  text-align: center;
}

.p-detailsMistFeature__body .p-feature-useMethod__text span {
  display: block;
  font-size: 10px;
  font-weight: 300;
  margin-block-start: 13px;
}

.p-detailsMistFeature__body .p-feature-slide__imgs {
  margin-block-start: 20px;
}

.p-detailsMistFeature__body .p-feature-slide__text .sp-hidden {
  display: none;
}

.p-detailsWashFeature__body .p-feature-slide__text--purple {
  margin-block-start: 20px;
  text-align: center;
}

.p-detailsWashFeature__body .p-feature-slide__imgs {
  grid-template-columns: repeat(2, auto);
}

.p-step__inner {
  padding-block: 0 99px;
}

.p-step__body {
  margin-block-start: 45px;
}

.p-step__top {
  position: relative;
}

.p-step__top .p-step__list {
  display: grid;
  gap: 65px;
  grid-template-columns: repeat(4, 193px);
  margin-block-start: 29px;
  margin-inline: auto;
  max-inline-size: 1015px;
  overflow: scroll;
  padding-inline: 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.p-step__top .p-step__list::-webkit-scrollbar {
  display: none;
}

.p-step__bottom {
  margin-block-start: 69px;
  position: relative;
}

.p-step__bottom .p-step__list {
  display: grid;
  gap: 65px;
  grid-template-columns: repeat(3, 170px);
  margin-block-start: 40px;
  margin-inline: auto;
  max-inline-size: 688px;
  overflow: scroll;
  padding-inline: 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.p-step__bottom .p-step__list::-webkit-scrollbar {
  display: none;
}

.p-step-body__title {
  font-family: var(--ff-mincho);
  font-size: 30px;
  letter-spacing: 0.08em;
  text-align: center;
}

.p-step-body__title--morning {
  color: #88cfff;
}

.p-step-body__title--night {
  color: #c47eff;
}

.p-step-body-title__en {
  font-family: var(--ff-mincho);
  font-size: 105px;
  inset-block-start: 0px;
  inset-inline-start: 49.5%;
  line-height: 1.25;
  position: absolute;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .p-step-body-title__en {
    inset-block-start: -11px;
  }
}

.p-step-body-title__en--morning {
  color: #e3f5ff;
}

.p-step-body-title__en--night {
  color: #eae1fb;
}

.p-step__item {
  position: relative;
  cursor: pointer;
  text-align: center;
}

.p-step__item + .p-step__item::before {
  background: url(../img/step-arrow.svg) no-repeat center center/cover;
  block-size: 26px;
  content: "";
  inline-size: 10px;
  inset-block-start: 50%;
  inset-inline-start: -32.5px;
  position: absolute;
  transform: translateY(-50%);
}
.p-step__img img {
  transform-origin: top center;
  transition: transform 200ms ease;
  will-change: transform;
}
.p-step__item:hover img {
  transform: scale(1.0661157, 1.0549451); /* 121→129, 182→192 */
}

.p-step__item.p-step__item--skincare:hover {
  transform: none;
}
.p-step__item.p-step__item--skincare:hover img {
  transform: none;
}

.p-step__top .p-step__item.p-step__item--base .p-step__img img,
.p-step__top .p-step__item.p-step__item--powder .p-step__img img {
  inline-size: 100%;
  margin-block-start: 37px;
}
@media screen and (max-width: 767px) {
  .p-step__top .p-step__item.p-step__item--base .p-step__img img,
  .p-step__top .p-step__item.p-step__item--powder .p-step__img img {
    margin-block-start: 28px;
  }
}

.p-step__bottom .p-step__item.p-step__item--skincare .p-step__img img {
  margin-block-start: 35px;
}
.p-step__bottom .p-step__item.p-step__item--face-wash .p-step__img img {
  margin-block-start: 6px;
}

.p-step__bottom .p-step__item.p-step__item--powder .p-step__img img {
  inline-size: 100%;
  margin-block-start: 25px;
  transform: scale(1.2);
}

.p-step__bottom .p-step__item.p-step__item--base .p-step__img img {
  margin-block-start: 4px;
}
@media screen and (max-width: 767px) {
  .p-step__item--facewash {
    max-width: 144px;
  }
}
.p-step__img {
  height: 193px;
}

.js-step__list--top .p-step__img--facewash img {
  margin-block-start: 5px;
}

@media screen and (max-width: 767px) {
  .js-step__list--top .p-step__img--facewash img {
    width: 113px;
    padding-top: 31px;
    text-align: center;
    margin: 0 auto;
  }
}
.js-step__list--top .p-step__img--make-fix-mist img {
  margin-block-start: -4px;
}

@media screen and (max-width: 767px) {
  .js-step__list--bottom .p-step__img--facewashimg {
    width: 113px;
    padding-top: 35px;
    text-align: center;
    margin: 0 auto;
  }
}

.p-step__num {
  font-family: var(--ff-noto);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.p-step__num--morning {
  color: #67c2ff;
}

.p-step__num--night {
  color: #db82a0;
}

.p-step__method {
  font-family: var(--ff-noto);
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-feature-settings: "palt";
  text-transform: uppercase;
}

.p-step__top .p-step__method,
.p-step__top .p-step__text {
  color: #002c50;
}
.p-step__bottom .p-step__method,
.p-step__bottom .p-step__text {
  color: #2c0e43;
}

.p-step__text {
  font-family: var(--ff-noto);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-block-start: 10px;
  text-transform: uppercase;
}

.p-step__btn {
  background: var(--background-pink);
  border: 1px solid #db82a0;
  border-radius: 28px;
  color: var(--color-text-white);
  display: inline-block;
  font-family: var(--ff-mincho);
  font-size: clamp(0.625rem, 0.5809859155rem + 0.1877934272vi, 0.75rem);
  inline-size: 100%;
  letter-spacing: 0.12em;
  margin-block-start: 12px;
  margin-inline: auto;
  max-inline-size: 160px;
  padding-block: 9px 13px;
  text-align: center;
  text-transform: capitalize;
}

.p-step__top .c-scrollbar {
  display: none;
}

.p-step__bottom .c-scrollbar {
  display: none;
}

.p-step__attention {
  color: #6a5a74;
  font-family: var(--ff-noto);
  font-size: 10px;
  margin-block-start: 12px;
  margin-inline: auto;
  max-inline-size: 688px;
  padding-inline: 57px;
}

.p-shoplistFv {
  position: relative;
}

.p-shoplistFv__btns {
  display: none;
}

.p-shoplistFv__btn {
  align-items: center;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-block: 15px 0px;
  position: relative;
}

.p-shoplistFv__btn::before {
  background: url(../img/shoplistFv-btn-bg.webp) no-repeat center center/cover;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.p-shoplistFv__btn span:nth-of-type(1) {
  color: var(--color-text-white);
  font-family: var(--ff-noto);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.p-shoplistFv__btn span:nth-of-type(2) {
  color: var(--color-text-white);
  font-family: var(--ff-noto);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.p-shoplistShop__inner {
  padding-block: 108px 120px;
  padding-inline: clamp(0.625rem, -0.8035714286rem + 2.9761904762vi, 1.875rem);
}

.p-shoplistShop__body {
  margin-block-start: 31px;
  margin-inline: auto;
  max-inline-size: 1080px;
}

.p-shoplistShop__list {
  display: grid;
  gap: clamp(0.625rem, -0.0892857143rem + 1.4880952381vi, 1.25rem);
  grid-template-columns: repeat(5, auto);
}

.p-shoplistShop__link {
  background: var(--background-pink);
  border: 1px solid #db82a0;
  border-radius: 10px;
  color: var(--color-text-white);
  display: block;
  font-family: var(--ff-noto);
  font-size: clamp(0.75rem, 0.6839788732rem + 0.2816901408vi, 0.9375rem);
  letter-spacing: 0.12em;
  padding-block: 15px 13px;
  text-align: center;
}

.p-shoplistCta {
  background: #ddd6e8;
  block-size: 501px;
  position: relative;
}

.p-shoplistCta::before {
  background: url(../img/p-topMessage-bg.webp) no-repeat center center;
  background-position: 0% 100%;
  content: "";
  inset: 0;
  opacity: 0.4;
  position: absolute;
  z-index: 0;
}

.p-shoplistCta__inner {
  display: flex;
  gap: clamp(1rem, -12.8571428571rem + 28.869047619vi, 13.125rem);
  justify-content: center;
  padding-inline-start: clamp(
    0.0625rem,
    -7.9375rem + 16.6666666667vi,
    12.0625rem
  );
  position: relative;
  z-index: 1;
}

.p-shoplistCta__head {
  margin-block-start: 148px;
}

.p-shoplistCta_btn {
  background: var(--background-pink);
  border: 1px solid #db82a0;
  border-radius: 40px;
  color: var(--color-text-white);
  display: inline-block;
  font-size: 18px;
  letter-spacing: 0.12em;
  margin-block-start: 31px;
  padding-block: 26px 25px;
  padding-inline: clamp(3.5rem, 2.0416666667rem + 3.0381944444vi, 5.6875rem);
}

.p-shoplistCta__img {
  opacity: 0.85;
}

.p-shoplistShop__footer {
  margin-block-start: -54px;
  position: relative;
  z-index: 2;
}

.p-product {
  padding-block: 107px 206px;
  position: relative;
}

/* .p-product::after {
  content: "";
  height: 100%;
  width: 1px;
  background-color: red;
  position: absolute;
  top: 0;
  left: 737px;
}

@media screen and (max-width: 1440px) {
  .p-product::after {
    left: 489px;
  }
} */

.p-productBase__body {
  margin-block-start: 46px;
  margin-inline: auto;
  max-inline-size: 963.5px;
  padding-inline: 20px;
}
@media screen and (max-width: 767px) {
  .p-productBase__body {
    padding-block-start: 18px;
  }
}
.p-productBase__body .p-product__item {
  gap: clamp(1rem, -0.4166666667rem + 2.9513888889vi, 3.125rem);
  justify-content: space-between;
  margin-inline-start: clamp(
    0.0625rem,
    -2.1041666667rem + 4.5138888889vi,
    3.3125rem
  );
}

.p-productBase__body .p-product__item + .p-product__item {
  margin-block-start: 45px;
}

.p-productBase__body
  .p-product__item--make-up-base
  .p-product-item__img--margin {
  /* margin-inline-start: clamp(
    11px,
    calc(11px + (26 - 11) * ((100vw - 390px) / (1440 - 390))),
    26px
  ); */
  /* outline: solid 1px red; */
}
.p-productBase__body
  .p-product__item--make-fix-mist
  .p-product-item__img--margin {
  margin-inline-start: clamp(
    0px,
    calc(0px + (10 - 0) * ((100vw - 390px) / (1440 - 390))),
    10px
  );
}

.p-productBase__body .p-product-item__img--margin {
  margin-inline-start: clamp(
    0.0625rem,
    -1.0208333333rem + 2.2569444444vi,
    1.6875rem
  );
}

.p-productBase__body .p-product-item__price {
  margin-block-start: 14px;
}

.p-product__swiper {
  margin: 0;
  position: relative;
  max-inline-size: clamp(19.6875rem, 17.8169014085rem + 7.9812206573vi, 25rem);
}

.p-product__swiper .p-product-item__img img {
  inline-size: auto;
  max-block-size: 420px;
}

/* .p-product-swiper__pagination {
  margin-block-start: 28px;
} */

.p-product-swiper__pagination .swiper-pagination-bullet {
  block-size: 20px;
  inline-size: 20px;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.p-product-swiper__pagination .swiper-pagination-bullet:nth-of-type(1) {
  background-color: #e7ddeb;
}

.p-product-swiper__pagination .swiper-pagination-bullet:nth-of-type(2) {
  background-color: #d2e3d4;
}

.p-product-swiper__pagination .swiper-pagination-bullet:nth-of-type(3) {
  background-color: #e5eafc;
}

.p-product-swiper__pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid #695a74;
  transform: scale(1.3);
}

.p-productCare {
  margin-block-start: 100px;
}

.p-productCare__body {
  margin-block-start: 33px;
  margin-inline: auto;
  max-inline-size: 896.5px;
}

.p-productCare__body .p-product__item {
  margin-inline-start: clamp(
    0.0625rem,
    -2.1041666667rem + 4.5138888889vi,
    3.3125rem
  );
}

.p-productCare__body .p-product__item + .p-product__item {
  margin-block-start: 62px;
}

.p-product__item {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, -7.9285714286rem + 18.6011904762vi, 8.8125rem);
  justify-content: center;
}

.p-productBase__body .p-product__item.p-product__item--make-up-base {
  display: grid;
  grid-template-columns: 320px 406px;
  grid-template-rows: 387px 30px;
  gap: 0;
  position: relative;
  row-gap: 20px;
}
.p-productBase__body
  .p-product__item.p-product__item--powder
  .p-product-item__img {
  max-width: 328px;
  margin-block-start: 18px;
}
@media screen and (max-width: 767px) {
  .p-productBase__body
    .p-product__item.p-product__item--powder
    .p-product-item__img {
    max-width: none;
    margin-block-start: 0;
  }
}
.p-productBase__body
  .p-product__item.p-product__item--make-up-base
  .p-product__swiper {
  grid-column: 1/2;
  grid-row: 1/2;
}

.p-productBase__body
  .p-product__item.p-product__item--make-up-base
  .p-product-item__container {
  grid-column: 2/3;
  grid-row: 1/3;
  position: relative;
}
.p-productBase__body
  .p-product__item.p-product__item--make-up-base
  .p-product-next {
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  left: 43%;
  z-index: 2;
  display: block;
  background-image: url(../assets/img/icon-arrow.svg);
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.swiper-button-next.p-product-next__btn,
.swiper-button-prev.p-product-prev__btn {
  z-index: 1;
  width: 40px;
  height: 40px;
  background-image: url(../../assets/img/icon-arrow.svg);
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .swiper-button-next.p-product-next__btn,
  .swiper-button-prev.p-product-prev__btn {
    width: 30px;
    height: 30px;
  }
}
.swiper-button-prev.p-product-prev__btn {
  transform: scale(-1, 1);
  left: -60px;
}

@media screen and (max-width: 767px) {
  .swiper-button-prev.p-product-prev__btn {
    left: 0;
    top: 33%;
  }
}
.swiper-button-next.p-product-next__btn {
  right: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .swiper-button-next.p-product-next__btn {
    right: 0;
    top: 33%;
    transform: translateX(0%);
  }
}
.swiper-button-next.p-product-next__btn:after,
.swiper-button-prev.p-product-prev__btn:after {
  content: "";
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

.p-productBase__body
  .p-product__item.p-product__item--make-up-base
  .p-product-swiper__pagination {
  grid-column: 1/2;
  grid-row: 2/3;
  text-align: center;
  padding-left: 37px;
}

.p-product-item__detail {
  margin-block-start: 40px;
  font-size: 10px;
  font-family: var(--ff-noto);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02rem;
  margin-inline-start: 44px;
}

.p-product-item__container {
  flex-grow: 1;
  inline-size: 100%;
  margin-block-start: 15px;
  max-inline-size: 396px;
}

.p-product-item__type {
  align-items: center;
  display: inline-flex;
  font-family: var(--ff-noto);
  font-size: 15px;
  font-weight: 300;
  gap: 9px;
  inline-size: 100%;
  letter-spacing: 0.12em;
  line-height: 1.6;
  margin-block-start: 20px;
}

/* .p-product-item__type::after {
  background: #9684a2;
  block-size: 0.5px;
  content: "";
  flex: 1;
} */

.p-product-item__type--sp {
  display: none;
}

.p-product-item__title {
  font-family: var(--ff-noto);
  color: var(--color-purple);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.09em;
  margin-block-start: 22px;
}

.p-product-item__title .tab-hidden {
  display: none;
}

.p-product-item__title .pc-hidden {
  display: none;
}

.p-product-item__spec {
  border: 1px solid #64bae0;
  border-radius: 5px;
  color: #64bae0;
  display: inline-block;
  font-family: var(--ff-noto);
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-block-start: 26px;
  padding-block: 4px;
  padding-inline: 19.5px 14px;
}

.p-product-item__price {
  font-family: var(--ff-mincho);
  font-size: 22px;
  letter-spacing: 0.08em;
  margin-block-start: 21px;
}

.p-product-item__price span:nth-of-type(1) {
  font-size: 16px;
  letter-spacing: 0.13em;
  line-height: 2.25;
}

.p-product-item__price span:nth-of-type(2) {
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 3;
}

.p-product-item__btn {
  background: var(--background-pink);
  border: 1px solid #db82a0;
  border-radius: 28px;
  color: var(--color-text-white);
  display: inline-block;
  font-family: var(--ff-noto);
  font-size: 15px;
  inline-size: 100%;
  letter-spacing: 0.12em;
  margin-block-start: 20px;
  max-inline-size: 200px;
  padding-block: 14px 16px;
  text-align: center;
}

.p-product__footer {
  margin-block-start: 0;
}

.p-news__inner {
  padding-block: 107px 200px;
}

.p-news__body {
  margin-block-start: 47px;
  margin-inline: auto;
  max-inline-size: 860px;
  padding-inline: 30px;
}

.p-news__pagination {
  margin-block-start: 60.5px;
  text-align: center;
}

/* .p-contact__inner {
  margin-inline: auto;
  max-inline-size: 1522px;
  padding-block: 120px;
  padding-inline: 30px;
} */

/* .p-privacyFv .c-fv__text--en {
  font-size: clamp(3.875rem, 2.2916666667rem + 3.2986111111vi, 6.25rem);
}

.p-privacyFv .c-fv__text--en .pc-hidden {
  display: none;
}

.p-privacy__inner {
  margin-inline: auto;
  max-inline-size: 1260px;
  padding-block: 107px 125px;
  padding-inline: 30px;
}

.p-privacy__head .c-section-title__en {
  white-space: nowrap;
}

.p-privacy__body {
  margin-block-start: 48px;
}

.p-privacy-body__top {
  font-family: var(--ff-noto);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.5;
  margin-block-end: 23px;
}

.p-privacy-body__item + .p-privacy-body__item {
  margin-block-start: 22.5px;
}

.p-privacy-body__about {
  font-family: var(--ff-noto);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.5;
}

.p-privacy-body__text {
  font-family: var(--ff-noto);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.5;
} */

html.is-fixed,
body.is-fixed {
  overflow-y: hidden;
  width: 100%;
}

.u-nowrap {
  white-space: nowrap;
}

.l-drawer__link {
  transition: opacity 0.4s ease;
}

.p-step__btn {
  transition: all 0.4s ease;
}

.p-shoplistShop__link {
  transition: all 0.4s ease;
}

.p-productFv__btn {
  transition: opacity 0.4s ease;
}

.p-product-item__btn {
  transition: all 0.4s ease;
}

.p-detailsBaseProduct-item__btn {
  transition: all 0.4s ease;
}

.p-detailsProduct-item__btn {
  transition: all 0.4s ease;
}

.p-shoplistCta_btn {
  transition: all 0.4s ease;
}

.c-btn {
  transition: all 0.4s ease;
}

.c-news__btn--open {
  transition: opacity 0.4s ease;
}

.c-topProduct__btn {
  transition: all 0.4s ease;
  margin-block-start: 28px;
}

.c-pagination__link {
  transition: all 0.4s ease;
}

.l-footer__link {
  transition: opacity 0.4s ease;
}

.l-footer__pagetop {
  transition: opacity 0.4s ease;
}

.l-footer__sns {
  transition: opacity 0.4s ease;
}

@media (any-hover: hover) {
  .l-drawer__link:hover {
    filter: blur(1.5px);
    opacity: 0.3;
  }
  .c-topProduct__item:hover .c-topProduct__btn {
    background: var(--background-base);
    color: #db82a0;
    filter: blur(0.4px);
  }

  .p-step__item:hover .p-step__btn {
    background: var(--background-base);
    color: #db82a0;
    filter: blur(0.4px);
  }

  .p-shoplistShop__link:hover {
    background: var(--background-base);
    color: #db82a0;
    filter: blur(0.4px);
    opacity: 0.7;
  }

  .p-product-item__btn:hover {
    background: var(--background-base);
    color: #db82a0;
    filter: blur(0.4px);
    opacity: 0.7;
  }

  .p-detailsBaseProduct-item__btn:hover {
    background: var(--background-base);
    color: #db82a0;
    filter: blur(0.4px);
    opacity: 0.7;
  }

  .p-detailsProduct-item__btn:hover {
    /* background: var(--background-base);
    color: #db82a0;
    filter: blur(0.4px); */
    opacity: 0.7;
  }

  .p-shoplistCta_btn:hover {
    background: var(--background-base);
    color: #db82a0;
    filter: blur(0.4px);
    opacity: 0.7;
  }

  .c-btn:hover {
    background: var(--background-base);
    color: #db82a0;
    filter: blur(0.4px);
    opacity: 0.7;
  }

  .c-news__btn--open:hover {
    filter: blur(0.7px);
    opacity: 0.7;
  }

  /* .c-topProduct__btn:hover {
    background-color: #db82a0;
    opacity: 0.8;
  } */

  .c-pagination__link:hover {
    opacity: 0.4;
  }

  .l-footer__link:hover {
    filter: blur(1px);
    opacity: 0.7;
  }

  .l-footer__pagetop:hover {
    filter: blur(1px);
    opacity: 0.4;
  }

  .l-footer__sns:hover {
    filter: blur(1px);
    opacity: 0.4;
  }
}

@media (min-width: 450px) and (max-width: 767px) {
  .u-hidden-mid {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .p-topMessage__text .pc-hidden {
    display: none;
  }

  .p-detailsMistFeature__body .p-feature-slide__text--purple {
    margin-block-start: 60px;
  }

  .p-detailsMistFeature__body .p-feature-slide__text .sp-hidden {
    display: block;
  }

  .p-detailsWashFeature__body .p-feature-slide__text--purple {
    margin-block-start: 60px;
  }

  .u-hidden-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-topConcept__head .c-topSection-title__en {
    inset-inline-start: 56%;
  }

  .p-product-item__title .tab-hidden {
    display: block;
  }
}

@media screen and (min-width: 768px) and (max-width: 800px) {
  .p-product__swiper {
    inline-size: 315px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .u-hidden-tab {
    display: none;
  }
}

@media screen and (max-width: 1440px) {
  .p-feature-slide__plan {
    margin-block-start: 40px;
  }

  .p-feature-swiper__btns {
    /* inline-size: clamp(
      40.8125rem,
      -0.7987084063rem + 86.6900175131vi,
      71.75rem
    ); */
    /* inline-size: 1210px; */
    inline-size: clamp(
      690px,
      calc(690px + (1210 - 690) * ((100vw - 768px) / (1440 - 768))),
      1210px
    );
  }
}

/* お問い合わせ */

.page-slug-contact,
.page-slug-privacy-policy,
.page-slug-company,
.page-slug-thanks {
  background-image: url(../img/page-bg-pc.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: var(--ff-noto);
}
.thanks__text {
  padding-block: 110px 120px;
  font-family: var(--ff-noto);
  font-weight: 500;
  color: var(--color-purple);
  text-align: center;
  font-size: clamp(
    20px,
    calc(20px + (32 - 20) * ((100vw - 375px) / (1440 - 375))),
    32px
  );
}

@media screen and (max-width: 767px) {
  .thanks__text {
    padding-block: 45px 80px;
  }
}

.p-contact__text .pc-hidden {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-contact__text .pc-hidden {
    display: block;
  }
}

.p-contact__inner {
  inline-size: min(1200px, 100%);
  margin: 0 auto;
  padding-block: 110px 80px;
}

@media screen and (max-width: 767px) {
  .p-contact__inner {
    padding-left: 30px;
    padding-right: 30px;
    padding-block: 0 80px;
  }
}

.p-contact__text {
  line-height: 1.8;
  font-weight: 500;
  font-family: var(--ff-noto);
  font-size: clamp(
    16px,
    calc(16px + (22 - 16) * ((100vw - 375px) / (1920 - 375))),
    22px
  );
  letter-spacing: 0.11rem;
}
@media screen and (max-width: 767px) {
  .p-contact__text {
    text-align: center;
  }
}
.p-contact__text .required {
  color: #ce3131;
}
.p-contact__body {
  display: flex;
  gap: 54px;
}

@media screen and (max-width: 767px) {
  .p-contact__body {
    flex-direction: column;
  }
}

.p-contact__form {
  flex-shrink: 0;
  flex-grow: 1;
  font-size: clamp(
    14px,
    calc(14px + (24 - 14) * ((100vw - 390px) / (1920 - 390))),
    24px
  );
}

@media screen and (max-width: 767px) {
  .p-contact__form .center p {
    text-align: center;
  }
  .wpcf7-spinner {
    display: none;
  }
}
.p-contact__form sup.color {
  vertical-align: super;
  color: #ce3131;
  font-size: 10px;
}

.p-contact__form .wpcf7-submit,
.smf-action .smf-button-control__control {
  margin-block-start: 24px;
  background-color: var(--background-pink) !important;
  color: var(--color-text-white);
  background-image: none;
  border-radius: 100vw;
  text-align: center;
  border: none;
  padding: 1rem 4rem;
  font-size: 20px;
  letter-spacing: 0.02rem;
  transition: 0.3s ease;
}

.smf-action .smf-button-control__control:hover {
  opacity: 0.7;
}
/* お問い合わせ */

/* プライバシーポリシー */
.page-template-page-privacy-policy {
  background-image: url(../img/page-bg-pc.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-privacy__inner {
  inline-size: min(1000px, 100%);
  margin: 0 auto;
  padding-block: 110px 80px;
}

@media screen and (max-width: 767px) {
  .p-privacy__inner {
    padding-left: 30px;
    padding-right: 30px;
    padding-block: 0 80px;
  }
}
.c-fv.mini-fv {
  min-height: 244px;
}

@media screen and (max-width: 767px) {
  .c-fv.mini-fv {
    max-height: 195px;
  }
}
.c-fv.mini-fv .c-fv__inner {
  max-height: inherit;
  mix-blend-mode: normal;
}
.c-fv.mini-fv .c-fv__text--en {
  font-family: var(--ff-noto);
  text-align: center;
  font-family: var(--ff-mincho);
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  color: var(--color-text-purple);
  transform: none;
  inset-inline-start: 0;
  inset-block-start: 0;
  letter-spacing: 0.2rem;
  font-size: clamp(
    32px,
    calc(32px + (63 - 32) * ((100vw - 375px) / (1440 - 375))),
    63px
  );
  position: static;
  padding-block-start: 166px;

  padding-block-start: clamp(
    107px,
    calc(107px + (166 - 107) * ((100vw - 375px) / (1440 - 375))),
    166px
  );
}

@media screen and (max-width: 767px) {
  .c-fv.mini-fv .c-fv__text--en {
    letter-spacing: 0.1rem;
  }
}

.p-privacy__list {
  margin-block-start: 40px;
}

@media screen and (max-width: 767px) {
  .p-privacy__list {
    margin-block-start: 24px;
  }
}
.p-privacy__list li h2 {
  font-weight: bold;
  line-height: 1.8;

  font-size: clamp(
    14px,
    calc(14px + (22 - 14) * ((100vw - 375px) / (1440 - 375))),
    22px
  );

  letter-spacing: 0.05rem;
}
.p-privacy__list li p,
.p-privacy__text {
  line-height: 1.8;
  font-size: clamp(
    14px,
    calc(14px + (22 - 14) * ((100vw - 390px) / (1440 - 375))),
    22px
  );
  letter-spacing: 0.11rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__list li p,
  .p-privacy__text {
    line-height: 1.4;
  }
}
.p-privacy__text .sp-hidden {
  display: block;
}

@media screen and (max-width: 767px) {
  .p-privacy__text .sp-hidden {
    display: none;
  }
}

.p-privacy__list li + li {
  margin: 45px 0;
}

@media screen and (max-width: 767px) {
  .p-privacy__list li + li {
    margin: 16px 0;
    font-feature-settings: "palt";
  }
}
/* プライバシーポリシー */

/* 会社概要 */
.page-id-20 {
  background-image: url(../img/page-bg-pc.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-company__inner {
  inline-size: min(800px, 100%);
  margin: 0 auto;
  padding-block: 110px 80px;
  padding-inline: 20px;
}

@media screen and (max-width: 767px) {
  .p-company__inner {
    padding-left: 30px;
    padding-right: 30px;
    padding-block: 0 80px;
  }
}
.p-company__table {
  font-weight: 400;
  width: 100%;
  text-align: left;
  letter-spacing: 0.05rem;
}

.p-company__table {
  border-collapse: collapse;
}
.p-company__table,
.p-company__table td,
.p-company__table th {
  padding-block: 20px;
}

.p-company__table tr {
  border-bottom: solid 1px var(--color-text-purple);
}
.p-company__table th {
  inline-size: 250px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .p-company__table th {
    inline-size: auto;
    padding-bottom: 0;
    border-bottom: none;
  }
}

@media screen and (max-width: 767px) {
  .p-company__table tr {
    display: flex;
    flex-direction: column;
  }
}

/* 会社概要 */

@media screen and (max-width: 1300px) {
  .p-detailsProduct__item {
    margin-inline-start: 0px;
  }
}

@media screen and (max-width: 1200px) {
  .p-topCopy::before {
    inset-block-start: -200px;
    inset-inline-start: 10%;
  }

  .p-topCopy__inner {
    padding-block: 120px 230px;
  }
}

@media screen and (max-width: 1177px) {
  .c-topProduct__text .hidden {
    display: block;
  }

  .c-scrollbar {
    display: block;
  }

  .p-product-item__img img {
    padding-inline: 20px;
  }
}

@media screen and (max-width: 1120px) {
  .p-detailsProduct__item {
    align-items: center;
  }

  .p-detailsProduct-item__titleJa .pc-hidden {
    display: block;
  }

  .p-detailsBaseProduct__item {
    align-items: center;
  }

  .p-detailsBaseProduct-item__titleJa .pc-hidden {
    display: block;
  }

  .p-product-item__title .pc-hidden {
    display: block;
  }
}

@media screen and (max-width: 1060px) {
  .p-feature-slide__list {
    grid-template-columns: repeat(3, 120px);
  }
}

@media screen and (max-width: 1029px) {
  .p-step__top .c-scrollbar {
    display: block;
    margin-block-start: 29px;
  }
}

@media screen and (max-width: 1024px) {
  .p-product__item {
    align-items: center;
  }
}

@media screen and (max-width: 1020px) {
  .p-feature-slide-plan__top,
  .p-feature-slide-plan__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9.5px;
  }
}

@media screen and (max-width: 1000px) {
  .p-feature-slide__title .pc-hidden {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .l-header {
    inset-block-start: 15px;
    /* inset-block-start: 28px; */
  }

  .l-header__inner {
    justify-content: space-between;
    padding-inline-end: 20px;
    position: relative;
    padding-inline-start: 11px;
  }

  .l-header__logo {
    flex-direction: column;
    gap: 4px;
    max-width: 132px;
    margin-inline-end: 17px;
    transition: opacity 0.3s ease-out;
  }

  .l-header__logo.is-checked {
    opacity: 0;
  }

  .l-header__logo--en img {
    block-size: 22.26px;
    inline-size: 150px;
  }

  .l-header__logo--ja {
    color: var(--color-text-black);
    font-size: 10px;
  }

  .l-header__btn {
    background: none;
    block-size: 16px;
    box-shadow: none;
    inline-size: 21.69px;
    inset-inline-end: 13px;
    margin-block-start: 7px;
    position: absolute;
    zoom: 1.3;
  }

  .l-header-btn__bar {
    background: var(--background-black);
    block-size: 2px;
    inline-size: 21.69px;
    transition:
      transform 0.3s linear,
      opacity 0.2s linear;
  }

  .l-header-btn__bar:nth-of-type(2) {
    display: block;
  }

  .l-header__btn.is-checked .l-header-btn__bar:nth-of-type(1) {
    transform: translateY(-8px) translateX(-9px) rotate(45deg);
  }

  .l-header__btn.is-checked .l-header-btn__bar:nth-of-type(3) {
    transform: translateY(9px) translateX(-9px) rotate(-45deg);
  }

  .l-drawer {
    background: var(--background-base);
    display: block;
    place-items: normal;
    transform: translateX(-100%);
  }

  .l-drawer::before {
    background-image: linear-gradient(90deg, #a0d9ff, #e5d5ff);
    block-size: calc(100svh + 10%);
    border-radius: 50%;
    inline-size: calc(100svh + 10%);
    left: -50svh;
    top: 50%;
    transform: translateY(-48%) rotate(65deg);
  }

  .l-drawer.is-checked::before {
    animation: drawerBlurSP 0.3s ease forwards;
  }

  .l-drawer.is-closing {
    animation-delay: 0s;
  }

  .l-drawer.is-closing::before {
    animation: drawerBlurBackSP 0.3s ease forwards;
  }

  .l-drawer__nav {
    align-items: center;
    gap: 16px;
    grid-template-columns: repeat(1, 1fr);
    inset-block-start: 50%;
    inset-inline-start: 40px;
    position: absolute;
    transform: translateY(-51%);
  }

  .l-drawer__list {
    gap: 18px;
  }

  .l-drawer__item--change span:nth-of-type(2) {
    color: var(--color-text-purple);
    color: var(--color-text-white);
    display: block;
    font-family: var(--ff-noto);
    font-size: 15px;
    letter-spacing: 0.1em;
  }

  .l-drawer__item--change span:nth-of-type(3) {
    display: none;
  }

  .l-drawer__link {
    flex-direction: column-reverse;
    gap: 7px;
    padding-inline-start: 23px;
  }

  .l-drawer__link::before {
    background: var(--background-base);
    block-size: 8px;
    inline-size: 8px;
    inset-block-start: 9px;
  }

  .l-drawer__link span:nth-of-type(1) {
    color: var(--color-text-white);
    font-size: 10px;
  }

  .l-drawer__link span:nth-of-type(2) {
    color: var(--color-text-white);
  }

  .l-footer__inner {
    padding-block-end: 118px;
    padding-block-start: 99px;
    text-align: left;
  }

  .l-footer__inner::before {
    clip-path: ellipse(112% 100% at 50% 100%);
  }

  .l-footer__logo {
    inline-size: min(538px, 100%);
    margin-inline: auto;
    text-align: left;
  }

  .l-footer__logo img {
    block-size: 22.26px;
    inline-size: 150px;
  }

  .l-footer__body {
    grid-template-columns: repeat(1, 2fr);
    margin-block-start: 65px;
    padding-inline: 10px;
    gap: 0;
  }

  .l-footer__nav:nth-of-type(2) {
    justify-content: flex-start;
    margin-block-start: 11px;
  }

  .l-footer__sns {
    display: none;
  }

  .l-footer__bottom {
    align-items: center;
    display: flex;
    flex-direction: row;
    inline-size: min(538px, 100%);
    justify-content: space-between;
    margin-block-start: 23px;
    margin-inline: auto;
    padding-inline: 10px;
  }

  .l-footer__copyright {
    margin-block-start: 6px;
  }

  .l-footer-bottom__snss {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 30px;
  }

  .l-footer__pagetop {
    inset-block-end: auto;
    inset-block-start: clamp(
      7.5625rem,
      7.5027104592rem + 0.2551020408vi,
      7.625rem
    );
    inset-inline-end: clamp(
      1.0625rem,
      -5.0958227041rem + 26.2755102041vi,
      7.5rem
    );
  }

  .c-fv__inner {
    border-radius: 0;
  }

  .c-fv__text--en {
    font-size: 55px;
    inset-block-start: 42%;
    letter-spacing: 0.14rem;
  }

  /* .p-productFv {
    background: url(../img/product-fv-sp.png);
    background-size: cover;
    background-position: center;
    min-height: clamp(
      476px,
      calc(476px + (891 - 476) * ((100vw - 375px) / (767 - 375))),
      891px
    );
  } */

  .p-productFv__btns {
    gap: 10.5px;
    grid-template-columns: repeat(2, 152.5px);
    inset-block-end: 45px;
  }

  .p-productFv__btn {
    align-items: center;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding-block: 17px 0px;
    padding-inline: 0px;
  }

  .p-productFv__btn span:nth-of-type(1) {
    font-size: 18px;
    inline-size: auto;
    letter-spacing: 0.12em;
  }

  .p-productFv__btn span:nth-of-type(2) {
    color: var(--color-text-white);
    display: block;
    flex-grow: 1;
    font-family: var(--ff-noto);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.17em;
    line-height: 1.25;
    text-align: center;
    text-transform: capitalize;
  }

  .p-productFv__btn span:nth-of-type(3) {
    display: none;
  }

  .p-productFv__btn span:nth-of-type(4) {
    margin-inline-start: 0;
  }
  .p-productFv__btn img {
    margin-top: -10px;
  }

  .p-shoplistFv .c-fv__inner::before {
    background: url(../img/shoplist-fv.png) no-repeat center center/200%;
  }

  /* .p-detailsBaseFv .c-fv__inner::before {
    background: url(../img/details-base-fv-sp.webp) no-repeat center
      center/cover;
    background-size: cover;
  } */

  /* .p-detailsPowderFv .c-fv__inner::before {
    background: url(../img/details-powder-fv-sp.webp);
    background-position: center;
    background-size: cover;
  }

  .p-detailsMistFv .c-fv__inner::before {
    background: url(../img/details-mist-fv-sp.webp);
    background-position: center;
    background-size: cover;
  }

  .p-detailsCleansingFv .c-fv__inner::before {
    background: url(../img/details-cleansing-fv-sp.webp);
    background-position: center;
    background-size: cover;
  }

  .p-detailsWashFv .c-fv__inner::before {
    background: url(../img/details-wash-fv-sp.webp);
    background-position: center;
    background-size: cover;
  } */

  .p-ContactFv .c-fv__inner::before {
    background-position: 40% 100%;
    transform: scale(1);
  }

  .p-privacyFv .c-fv__inner::before {
    background-position: 40% 100%;
    transform: scale(1);
  }

  .c-topSection-title__en {
    font-size: 55px;
    inset-block-start: 37%;
  }

  .c-topSection-title__ja .pc-hidden {
    display: block;
  }

  .c-topSection-title__ja--left {
    text-align: center;
  }

  .c-topSection-title__ja--left .sp-hidden {
    display: none;
  }

  .c-section-title__ja {
    line-height: 2;
    margin-block-start: 10px;
  }

  .c-topProduct__item {
    inline-size: 100%;
    max-inline-size: 146px;
  }

  .c-topProduct__category {
    max-inline-size: 85px;
    min-inline-size: 84px;
    padding-inline: 3px;
  }

  /* .c-topProduct__img::before {
	background: url(../img/product-item-bg.webp) no-repeat center center/contain;
	block-size: 130px;
	content: "";
	inline-size: 134px;
	inset-block-end: 0px;
	inset-inline-start: 50%;
	opacity: 0.8;
	position: absolute;
	transform: translateX(-50%);
	z-index: -1;
} */

  .p-topProduct__bottom .c-topProduct__text {
    margin-block-start: 10px;
  }

  .c-topProduct__btn {
    padding-block: 14px;
  }

  .c-news__list {
    gap: 32px;
  }

  .c-news__item {
    padding-block-end: 35px;
  }

  .c-news__title {
    font-size: 14px;
    line-height: 1.8571428571;
  }

  .c-news__date {
    margin-block-start: 19px;
  }

  .c-news__dialog .c-news-dialog__inner {
    padding-inline: 20px;
  }

  .c-news__dialog[open]::backdrop {
    opacity: 0.75;
  }

  .c-news__dialog .c-news__title {
    font-size: 16px;
    margin-block-start: 10px;
  }

  .c-news__dialog .c-news__date {
    font-weight: 400;
    margin-block-start: 0;
  }

  .c-news__dialog .c-news__content {
    margin-block-start: 28px;
  }

  .c-news__dialog .c-news-dialog__btn {
    margin-block-start: 43px;
    max-inline-size: 190px;
    padding-block: 14px 15px;
  }

  .p-topFv {
    margin-bottom: 0;
  }
  .p-topFv__inner {
    overflow: hidden;
  }

  /* .p-topFv__img img {
    display: none;
  } */

  /* .p-topFv__img:nth-child(1)::after {
    background: url(../img/topFv-01-sp.webp) no-repeat center center/cover;
    content: "";
    inset: 0;
    position: absolute;
    transform: scale(1.05);
  }
  .p-topFv__img:nth-child(2)::after {
    background: url(../img/topFv-02-sp.webp) no-repeat center center/cover;
    content: "";
    inset: 0;
    margin-block-end: 72px;
    position: absolute;
    transform: scale(1.05);
  }
  .p-topFv__img:nth-child(3)::after {
    background: url(../img/topFv-03-sp.webp) no-repeat center center/cover;
    content: "";
    inset: 0;
    margin-block-end: 72px;
    position: absolute;
    transform: scale(1.05);
  } */

  /* .p-topFv__img:nth-child(1)::after {
    background: url(../img/topFv-01-sp.webp) no-repeat center center/cover; */
  /* background-position: 41% 0%; */
  /* border-bottom-left-radius: 1000px 300px;
	border-bottom-right-radius: 1000px 300px; */
  /* content: "";
    inset: 0; */
  /* margin-block-end: 72px; */
  /* position: absolute;
    transform: scale(1.05);
  } */

  /* .p-topFv__img:nth-child(2)::after {
    background: url(../img/topFv-02-sp.webp) no-repeat center center/cover; */
  /* background-position: 25% 0%; */
  /* border-bottom-left-radius: 1000px 300px;
    border-bottom-right-radius: 1000px 300px; */
  /* content: "";
    inset: 0;
    margin-block-end: 72px;
    position: absolute;
    transform: scale(1.05);
  } */

  /* .p-topFv__img:nth-child(3)::after {
    background: url(../img/topFv-03-sp.webp) no-repeat center center/cover; */
  /* background-position: 21% 0%; */
  /* border-bottom-left-radius: 1000px 300px;
    border-bottom-right-radius: 1000px 300px; */
  /* content: "";
    inset: 0;
    margin-block-end: 72px;
    position: absolute;
    transform: scale(1.05);
  } */

  /* .p-topFv__img:nth-child(4)::after {
	background: url(../img/details-mist-fv.png) no-repeat center center/cover;
	background-position: 85% 0%;
	border-bottom-left-radius: 1000px 300px;
	border-bottom-right-radius: 1000px 300px;
	content: "";
	inset: 0;
	margin-block-end: 72px;
	position: absolute;
	transform: scale(1.05);
} */

  .p-topFv__scroll {
    display: none;
  }

  .p-topFv__text {
    display: none;
  }

  .p-topFv__logos {
    display: none;
  }

  .p-topCopy {
    margin-block-start: -150px;
    z-index: 1;
  }

  .p-topCopy::before {
    content: none;
  }

  .p-topCopy__inner {
    padding-block: 128px 182px;
  }

  .p-topCopy__inner::before {
    content: none;
  }

  .p-topCopy__inner::after {
    content: none;
  }

  .p-topCopy__img {
    padding-inline: 0px;
  }

  .p-topCopy__img::before {
    background: url(../img/topCopy-bubble-sp.webp) no-repeat center center/cover;
    block-size: 476px;
    content: "";
    inline-size: 476px;
    inset-block-start: 75%;
    inset-inline-start: 48%;
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .p-topMessage {
    z-index: 0;
    background-image: none;
  }

  .p-topMessage::before {
    /* box-shadow: 0px 0px 16px #C6BBCC;
	clip-path: ellipse(90% 50% at 50% 50%);
	inset-block-start: -100px; */
    display: none;
  }

  .p-topMessage::after {
    /* box-shadow: 0px 0px 16px #C6BBCC;
	clip-path: ellipse(90% 50% at 50% 50%);
	inset-block-start: -100px; */
    display: none;
  }

  .p-topMessage__inner {
    padding-block: 115px 129px;
    overflow: visible;
  }

  .p-topMessage__inner::before {
    block-size: 126px;
    inline-size: 126px;
    inset-block-start: 0;
    inset-inline-end: 78%;
  }
  .p-topMessage__inner::after {
    /* display: none; */
    left: auto;
    block-size: 120px;
    inline-size: 120px;
    right: -45px;
    bottom: 0;
  }

  .p-topMessage__head {
    order: 1;
    padding-block-start: 40px;
  }

  .p-topMessage__head .c-topSection-title__en {
    font-size: 77px;
    inset-block-start: -58px;
    z-index: -1;
    margin-inline-start: 6px;
  }

  .p-topMessage__head .c-topSection-title__ja {
    font-size: 18px;
    line-height: 2;
    padding-block-start: 20px;
  }

  .p-topMessage__texts {
    margin-block-start: 46px;
    order: 3;
    padding-inline: 30px;
  }

  .p-topMessage__text + .p-topMessage__text {
    margin-block-start: 30px;
  }

  .p-topMessage__text {
    font-size: 15px;
    line-height: 2;
  }

  .p-topMessage__logos {
    margin-block-start: 39.5px;
    order: 4;
  }

  .p-topMessage__img {
    inline-size: 100%;
    margin-block-start: 21px;
    order: 2;
  }

  .p-topMessage__img img {
    inline-size: 100%;
  }

  .p-topConcept::before {
    content: none;
  }

  .p-topConcept::after {
    block-size: 195px;
    filter: none;
    inline-size: 203px;
    inset-block-start: -150px;
    inset-inline-start: 0%;
    transform: translateX(-50%);
  }

  .p-topConcept__inner {
    padding-block: 108px 0px;
  }

  .p-topConcept__inner::before {
    block-size: 80px;
    inline-size: 80px;
    inset-block-start: 200px;
    inset-inline-start: 13%;
  }

  .p-topConcept__inner::after {
    block-size: 180px;
    inline-size: 135px;
    inset-block-end: 410px;
    inset-inline-end: -25%;
    transform: translateX(-50%);
  }

  .p-topConcept__body {
    flex-direction: column;
  }

  .p-topConcept__container {
    display: contents;
  }

  .p-topConcept__head {
    order: 1;
  }

  .p-topConcept__head .c-topSection-title__en {
    font-size: 80px;
    inset-block-start: -72px;
    text-align: center;
  }

  .p-topConcept__head .c-topSection-title__ja {
    line-height: 2;
    text-align: center;
  }

  .p-topConcept__img {
    margin-block-start: 15.3px;
    max-inline-size: 500px;
    order: 2;
  }

  .p-topConcept__img img {
    inline-size: 100%;
  }

  .p-topConcept__texts {
    margin-block-start: 5.7px;
    order: 3;
  }

  .p-topConcept__content {
    align-items: center;
    gap: 26px;
  }

  .p-topConcept__content .pc-hidden {
    display: block;
  }

  .p-topConcept__text {
    line-height: 2;
    text-align: center;
  }

  .p-topConcept__add {
    margin-block-start: 29px;
    padding-inline: 10px;
  }

  .p-topConcept__btn {
    margin-block-start: 43.7px;
  }

  .p-topConcept__btn .c-btn {
    padding-block: 15px;
    padding-inline: 64px;
  }

  .p-topProduct::before {
    background: none;
  }

  .p-topProduct__inner {
    padding-block: 81px 0;
  }

  .p-topProduct__inner::before {
    block-size: 152px;
    inline-size: 136px;
    inset-block-start: auto;
    inset-inline-start: auto;
    z-index: -1;
    bottom: 0;
    left: -16%;
  }

  .p-topProduct__head .c-topSection-title__en {
    font-size: 85px;
    margin-inline-start: 6px;
    inset-block-start: -87px;
  }

  .p-topProduct__head .c-topSection-title__ja {
    line-height: 2;
  }

  .p-topProduct__body {
    margin-block-start: 34px;
  }
  .p-topProduct__top {
    position: relative;
  }
  .p-topProduct__top .p-topProduct__list {
    gap: 20px;
    grid-template-columns: repeat(5, 146px);
    margin-block-start: 29px;
    position: relative;
    padding-inline: 31px;
  }

  .p-topProduct__arrow {
    position: absolute;
    width: 10px;
    height: 30px;
    right: 5%;
    transform: translateY(-50%);
    display: block;
    top: 58%;
  }

  .p-topProduct__top .c-topProduct__item:nth-of-type(4) .c-topProduct__img {
    margin-block-start: 29px;
  }

  .p-topProduct__bottom .c-topProduct__item:nth-of-type(2) .c-topProduct__img {
    margin-block-start: 4px;
  }

  .p-topProduct__top .c-topProduct__item:nth-of-type(5) .c-topProduct__img img {
    width: 87%;
  }

  .p-topProduct__top .c-topProduct__item:nth-of-type(4) .c-topProduct__img img {
    transform: scale(1.2) translateX(10px);
    margin-left: -20px;
  }

  .p-topProduct__bottom {
    margin-block-start: 59px;
  }

  .p-topProduct__bottom .p-topProduct__list {
    gap: 20px;
    grid-template-columns: repeat(2, 146px);
    max-inline-size: 372px;
    margin-block-start: 41px;
  }

  .p-conceptCopy__inner {
    padding-block: 148px 80px;
    padding-inline: 30px;
  }

  .p-conceptCopy__main {
    line-height: 2;
  }

  .p-conceptCopy__sub {
    line-height: 2.2666666667;
    margin-block-start: 22px;
  }

  .p-conceptCopy__title {
    /* font-size: 80px; */
    inset-block-start: 98px;
    /* left: 50%;
    transform: translateX(-50%) rotate(0deg); */
    transform-origin: center;
    z-index: -1;
    order: 1;
    transform: rotate(0);
  }

  .home .p-conceptIngredient {
    /* background-image: url(../img/topConceptIngredient-bg-sp.webp); */
    /* background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden; */
    padding-block-start: 78px;
    position: relative;
  }

  .p-conceptIngredient__inner {
    flex-direction: column;
    gap: 0;
    position: relative;
  }

  .p-conceptIngredient__inner::before {
    background: url(../img/conceptIngredient-bg-sp.webp) no-repeat center
      center/cover;
    /* background-size: 150% 100%; */
  }

  .p-conceptIngredient .c-topSection-title__en {
    order: 1;
    position: static;
    transform: translateX(0);
    font-size: 82px;
  }

  .p-conceptIngredient__sub {
    line-height: 2.1;
    order: 2;
    text-align: center;
  }

  .home .p-conceptIngredient__texts .p-topConcept__button {
    position: static;
    order: 6;
  }

  .p-conceptIngredient-slide__inner {
    block-size: 302px;
    inline-size: 302px;
  }

  /* .p-stepConcept {
	margin-block-start: -300px;
} */

  .p-detailsProduct__inner {
    padding-block: 61px 71px;
  }

  .p-detailsProduct__head .c-section-title__ja {
    margin-block-start: 24px;
  }

  .p-detailsProduct__body {
    margin-block-start: 46px;
  }

  .p-detailsProduct__item {
    flex-direction: column;
    gap: 0;
  }

  .p-detailsProduct__img {
    margin-block-start: -40px;
    order: 2;
  }

  .p-detailsProduct__content {
    display: contents;
  }

  .p-detailsProduct-item__titleJa {
    font-size: 16px;
    line-height: 1.875;
    margin-block-start: -52px;
    order: 3;
    text-align: center;
  }

  .p-detailsProduct-item__info {
    flex-direction: column;
    gap: 17px;
    margin-block-start: 6px;
    order: 4;
  }

  .p-detailsProduct-itemInfo__spec {
    font-size: 15px;
    letter-spacing: 0.2em;
    padding-block: 5px;
    padding-inline: 16px 13px;
  }

  .p-detailsProduct-item__effects {
    gap: clamp(0.5625rem, -0.0918464467rem + 2.7918781726vi, 1.25rem);
    grid-template-columns: repeat(3, 99px);
    margin-block-start: 21px;
    order: 6;
  }

  .p-detailsProduct-item__effect {
    block-size: 99px;
    font-size: 12px;
    inline-size: 99px;
    letter-spacing: 0.09em;
    line-height: 1.5;
    line-height: 1.875;
    padding-block-start: 30px;
  }

  .p-detailsProduct-item__effects--powder .p-detailsProduct-item__effect {
    padding-block-start: 38px;
  }

  .p-detailsProduct-item__effects--blue .p-detailsProduct-item__effect {
    padding-block-start: 38px;
  }

  .p-detailsProduct-item__btn {
    margin-block-start: 42px;
    max-inline-size: 206px;
    order: 5;
    padding-block: 13px 14px;
  }

  .p-detailsProduct__add {
    margin-block-start: 20px;
    margin-inline: auto;
    max-inline-size: 315px;
    position: static;
  }

  .p-detailsProductFixer__body
    .p-detailsProduct-item__effects--powder
    .p-detailsProduct-item__effect {
    padding-block-start: 32px;
  }

  .p-detailsProductFixer__body .p-detailsProduct__img {
    padding-inline: 20px;
  }

  .p-detailsProductFixer__body .p-detailsProduct__add {
    margin-block-start: 20px;
    margin-inline: auto;
    max-inline-size: 315px;
    position: static;
  }

  .p-detailsProductWash__body .p-detailsProduct-item__info {
    margin-block-start: 18px;
  }

  .p-detailsProductWash__body
    .p-detailsProduct-item__effects--powder
    .p-detailsProduct-item__effect {
    padding-block-start: 32px;
  }

  .p-detailsProductWash__body .p-detailsProduct__img {
    padding-inline: 20px;
  }

  .p-detailsProductWash__body .p-detailsProduct-item__effects {
    margin-block-start: 21px;
  }

  .p-detailsProductWash__body
    .p-detailsProduct-item__effects
    .p-detailsProduct-item__effect:nth-of-type(3) {
    padding-block-start: 28px;
  }

  .p-detailsProductWash__body .p-detailsProduct__add {
    margin-block-start: 20px;
    margin-inline: auto;
    max-inline-size: 315px;
    position: static;
  }

  .p-detailsProductCleansing__body {
    padding-block-end: 40px;
  }

  .p-detailsProductCleansing__body .p-detailsProduct-item__titleJa {
    margin-block-start: -5px;
  }

  .p-detailsProductCleansing__body .p-detailsProduct-item__info {
    margin-block-start: 18px;
  }

  .p-detailsProductCleansing__body
    .p-detailsProduct-item__effects--powder
    .p-detailsProduct-item__effect {
    padding-block-start: 32px;
  }

  .p-detailsProductCleansing__body .p-detailsProduct__img {
    padding-inline: 27px;
  }

  .p-detailsProductCleansing__body .p-detailsProduct-item__effects {
    margin-block-start: 21px;
  }

  .p-detailsProductCleansing__body
    .p-detailsProduct-item__effects
    .p-detailsProduct-item__effect:nth-of-type(1) {
    padding-block-start: 28px;
  }

  .p-detailsProductCleansing__body .p-detailsProduct__add {
    margin-block-start: 20px;
    margin-inline: auto;
    max-inline-size: 315px;
    position: static;
  }

  .p-detailsBaseProduct__inner {
    padding-block: 66px 61px;
  }

  .p-detailsBaseProduct__head .c-section-title__ja {
    margin-block-start: 24px;
  }

  .p-detailsBaseProduct__body {
    margin-block-start: 42px;
  }

  .p-detailsBaseProduct__item {
    flex-direction: column;
    gap: 0;
  }
  .p-detailsBaseProduct__item:nth-of-type(2) {
    margin-block-start: 61px;
  }
  .p-detailsBaseProduct__item:nth-of-type(3) {
    margin-block-start: 61px;
  }

  .p-detailsBaseProduct__img {
    order: 2;
  }

  .p-detailsBaseProduct__item--lavender .p-detailsBaseProduct__img {
    margin-block-start: -24px;

    width: 96%;
  }
  .p-detailsBaseProduct__item--mint-green .p-detailsBaseProduct__img {
    margin-block-start: -8px;
    width: 91%;
  }
  .p-detailsBaseProduct__item--clear .p-detailsBaseProduct__img {
    margin-block-start: -8px;
    width: 90%;
  }

  .p-detailsBaseProduct__content {
    display: contents;
  }

  .p-detailsBaseProduct-item__titleEn {
    inline-size: 100%;
    max-inline-size: 500px;
    order: 1;
  }

  .p-detailsBaseProduct-item__titleJa {
    font-size: 16px;
    line-height: 1.875;
    margin-block-start: -8px;
    order: 3;
    text-align: center;
  }

  .p-detailsBaseProduct-item__info {
    flex-direction: column;
    gap: 22px;
    margin-block-start: 8px;
    order: 4;
  }

  .p-detailsBaseProduct-itemInfo__spec {
    font-size: 15px;
    letter-spacing: 0.2em;
    padding-inline: 16px 13px;
  }

  .p-detailsBaseProduct-item__effects {
    gap: clamp(0.5625rem, -0.0918464467rem + 2.7918781726vi, 1.25rem);
    grid-template-columns: repeat(3, 99px);
    margin-block-start: 15px;
    padding-inline: 10px;
    order: 5;
  }

  .p-detailsBaseProduct-item__effect {
    block-size: 99px;
    font-size: 12px;
    inline-size: 99px;
    letter-spacing: 0.09em;
    line-height: 1.5;
    line-height: 1.875;
    padding-block-start: 30px;
  }

  .p-detailsBaseProduct-item__effect--clear:nth-of-type(2) {
    padding-block-start: 39px;
  }

  .p-detailsBaseProduct-item__btn {
    margin-block-start: 30px;
    max-inline-size: 206px;
    order: 6;
    padding-block: 13px 14px;
  }

  .p-detailsBaseProduct__add {
    margin-block-start: 20px;
    padding-inline-start: 10px;
  }

  .p-feature__inner {
    background: url(../img/feature-bg-sp.webp) no-repeat top center/cover;
    padding-block: 127px 125px;
  }
  .powder .p-feature__inner {
    background: url(../img/powder-feature-bg-sp.webp) no-repeat top center/cover;
  }

  .p-feature__body {
    padding-inline: 20px;
    padding-block-start: 29px;
  }

  .p-feature-swiper .swiper-wrapper {
    flex-direction: column;
    row-gap: 50px;
  }

  .p-feature__slide::before {
    content: none;
  }

  .p-feature__slide {
    min-block-size: auto;
    padding-block: 33px 40px;
  }

  .p-feature-slide__title {
    font-size: 18px;
    letter-spacing: 0.08em;
    line-height: 2;
  }

  .p-feature-slide__imgs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 15px;
    margin-block-start: 15px;
    justify-content: center;
  }

  .p-feature-slide__imgs > .p-feature-slide-img {
    inline-size: 140px;
  }

  .p-feature-slide__img--grid {
    gap: 20px;
    grid-template-columns: repeat(1, 2fr);
    margin-block-start: 0;
    margin-inline: auto;
  }

  .p-feature-slide__text {
    font-size: 12px;
    /* letter-spacing: 0.12em; */
    margin-block-start: 12px;
    line-height: 2;
  }

  .p-feature-slide__text sup {
    font-size: 8px;
  }

  .p-feature-slide__text .pc-hidden {
    display: block;
  }

  .p-feature-slide__text--purple {
    font-size: 12px;
    letter-spacing: 0.12em;
    line-height: 2;
    text-align: left;
  }

  .p-feature-slide__text--purple p:nth-of-type(1) {
    font-size: 17px;
  }

  .p-feature-slide__text--purple p:nth-of-type(1)::before {
    inline-size: calc(100% + 32px);
  }

  .p-feature-slide__text--purple .pc-hidden {
    display: block;
  }

  .p-feature-slide__plan {
    margin-block-start: 20px;
    padding-block: 13px 16px;
  }

  .p-feature-slide-plan__title {
    font-size: 17px;
    padding-block-end: 18px;
    position: relative;
  }

  .p-feature-slide-plan__title::after {
    background: #ddc7ec;
    block-size: 1px;
    content: "";
    inline-size: calc(100% + 34px);
    inset-block-end: 0px;
    inset-inline-start: 50%;
    position: absolute;
    transform: translateX(-50%);
  }

  .p-feature-slide-plan__top {
    padding-block: 15.4px 15px;
  }

  .p-feature-slide-plan__bottom {
    border: none;
    padding-block-start: 15px;
    position: relative;
  }

  .p-feature-slide-plan__bottom::after {
    background: #ddc7ec;
    block-size: 1px;
    content: "";
    inline-size: calc(100% + 34px);
    inset-block-start: 0px;
    inset-inline-start: 50%;
    position: absolute;
    transform: translateX(-50%);
  }

  .p-feature-slide-plan__top,
  .p-feature-slide-plan__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .p-feature-swiper__btns {
    display: none;
  }

  .p-feature-useMethod {
    padding-inline: 0px;
  }

  .p-feature-useMethod___inner--grid {
    grid-template-columns: repeat(1, 2fr);
  }

  /* .p-feature-useMethod___item {
    padding-inline: 20px;
  } */

  .p-feature-useMethod__title {
    font-size: 17px;
  }

  .p-feature-useMethod__text {
    text-align: left;
    padding-inline: 30px;
  }
  .p-feature-useMethod__text .sp-hidden {
    display: none;
  }
  .p-feature-useMethod__text::before {
    inline-size: calc(100% + 40px);
  }

  .p-feature__add {
    margin-block-start: 20px;
    padding-inline: 0px;
  }

  .p-step__inner {
    padding-block: 60px 70px;
  }

  .p-step__body {
    margin-block-start: 29px;
  }

  .p-step__top .p-step__list {
    gap: 30px;
    grid-template-columns: repeat(4, 175px);
    margin-block-start: -34px;
  }

  .p-step__bottom {
    margin-block-start: 53px;
  }

  .p-step__bottom .p-step__list {
    gap: 30px;
    margin-block-start: -18px;
    max-inline-size: 618px;
  }

  .p-step-body__title {
    font-size: 22px;
  }

  .p-step-body-title__en {
    font-size: 90px;
  }

  .p-step__item + .p-step__item::before {
    inset-inline-start: -17.5px;
  }

  .p-step__top .p-step__item.p-step__item--base .p-step__img img,
  .p-step__top .p-step__item.p-step__item--powder .p-step__img img {
    transform: scale(1.2);
  }

  .p-step__top .p-step__item.p-step__item--powder .p-step__img img {
    margin-block-start: 42px;
    width: 90%;
  }
  .p-step__top .p-step__item.p-step__item--mist .p-step__img img {
    margin-block-start: -3px;
  }
  .p-step__bottom .p-step__item.p-step__item--base .p-step__img img {
    margin-block-start: 6px;
  }
  .p-step__bottom .p-step__item.p-step__item--face-wash .p-step__img img {
    margin-block-start: 6px;
  }
  .p-step__method {
    letter-spacing: 0;
    margin-block-start: 2px;
  }

  .p-step__text {
    margin-block-start: 13px;
  }

  .p-step__btn {
    margin-block-start: 20px;
    padding-block: 14px;
    max-width: 144px;
  }

  .p-step__attention {
    margin-block-start: 20px;
    padding-inline: 93px;
  }

  .p-shoplistFv__btns {
    display: grid;
    gap: 10.5px;
    grid-template-columns: repeat(2, 152.5px);
    inset-block-end: 50px;
    inset-inline-start: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 1;
  }

  .p-shoplistShop__inner {
    padding-block: 60.4px 120px;
    padding-inline: 30px;
    position: relative;
  }

  .p-shoplistShop__inner::before {
    background: url(../img/shoplist-bg.webp) no-repeat center center;
    background-size: 100% 100%;
    content: "";
    inset: -200px -100px 0px -100px;
    position: absolute;
    z-index: -1;
  }

  .p-shoplistShop__body {
    margin-block-start: 30px;
  }

  .p-shoplistShop__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 9.5px;
    justify-content: center;
  }

  .p-shoplistShop__item {
    inline-size: clamp(9.5rem, 6.6301020408rem + 12.2448979592vi, 12.5rem);
  }

  .p-shoplistShop__link {
    background: var(--background-base);
    color: var(--color-text-purple);
    padding-block: 14px 14px;
  }

  .p-shoplistCta {
    background: none;
    block-size: 277px;
  }

  .p-shoplistCta::before {
    content: none;
  }

  .p-shoplistCta__head {
    margin-block-start: 80px;
  }

  .p-shoplistCta_btn {
    font-size: 15px;
    margin-block-start: 20px;
    padding-block: 15px 12px;
    padding-inline: 50px;
  }

  .p-shoplistCta__img {
    display: none;
  }

  .p-shoplistShop__footer {
    margin-block-start: 0;
  }

  .p-product {
    padding-block: 100px 83px;
  }

  .p-productFv .c-fv__text--en {
    font-size: clamp(
      55px,
      calc(55px + (98 - 55) * ((100vw - 390px) / (767 - 375))),
      98px
    );
    /* font-size: clamp(
      48px,
      calc(48px + (60 - 48) * ((100vw - 390px) / (767 - 375))),
      60px
    ); */
    inset-block-start: 39%;
  }
  .p-productBase__body {
    margin-block-start: 0;
  }
  .p-productBase__body .p-product__item + .p-product__item {
    margin-block-start: 56px;
  }

  .p-productBase__body .p-product__item.p-product__item--make-up-base {
    grid-template-columns: auto;
    grid-template-rows: 376px auto auto;
    justify-content: center;
    row-gap: 0;
  }

  .p-productBase__body
    .p-product__item.p-product__item--make-up-base
    .p-product__swiper {
    grid-column: 1/2;
    grid-row: 1/2;
  }

  .p-productBase__body
    .p-product__item.p-product__item--make-up-base
    .p-product-item__container {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .p-productBase__body
    .p-product__item.p-product__item--make-up-base
    .p-product-next {
    left: auto;
    right: 0;
    top: 29%;
  }
  .p-productBase__body
    .p-product__item.p-product__item--make-up-base
    .p-product-swiper__pagination {
    padding-left: 0;
    grid-column: 1/2;
    grid-row: 2/3;
    padding-block-start: 15px;
    margin-block-start: 0;
  }

  .p-product-item__img {
    text-align: center;
  }
  .p-product-item__img img {
    padding-inline: 0;
  }

  .p-productBase__body
    .p-product__item--make-up-base
    .p-product-item__img--margin {
    margin-inline-start: 0;
  }
  .p-product__swiper {
    max-inline-size: none;
  }

  .p-product__swiper .p-product-item__img img {
    /* max-block-size: 376px; */
    padding-inline: 0px;
    padding-right: 20px;
  }

  .p-productCare {
    margin-block-start: 57px;
  }
  .p-product-swiper__pagination {
    margin-block-start: -60px;
    position: relative;
    z-index: 2;
  }

  .p-productCare__body .p-product__item + .p-product__item {
    margin-block-start: 35px;
  }
  .p-productCare__body {
    margin-block-start: 27px;
  }

  .p-product__item {
    flex-direction: column;
    gap: 0;
  }
  .p-product-item__detail {
    margin-block-start: 28px;
    margin-inline-start: 29px;
  }

  .p-product-item__img--moveX img {
    padding-inline: 0px 0px;
    transform: translateX(-20px);
  }

  .p-product-item__container {
    margin-block-start: 20px;
    text-align: center;
    max-inline-size: none;
  }

  .p-product-item__container--column {
    display: flex;
    flex-direction: column;
  }

  .p-product-item__container--column .order-1 {
    order: 1;
  }

  .p-product-item__container--column .order-2 {
    order: 2;
  }

  .p-product-item__container--column .order-3 {
    order: 3;
  }

  .p-product-item__container--column .order-4 {
    order: 4;
  }

  .p-product-item__container--column .order-5 {
    order: 5;
  }

  .p-product-item__container--column .order-6 {
    order: 6;
  }

  .p-product-item__container--column .p-product-item__title {
    margin-block-start: 0;
  }

  .p-product-item__type {
    display: none;
  }

  .p-product-item__type--sp {
    display: inline-block;
    font-family: var(--ff-noto);
    color: var(--color-purple);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.9166666667;
    margin-block-start: 3px;
  }

  .p-product-item__title {
    font-size: 16px;
    line-height: 1.875;
    margin-block-start: -26px;
    order: 3;
    text-align: center;
  }

  .p-product-item__spec {
    display: block;
    font-size: 15px;
    inline-size: 100%;
    letter-spacing: 0.2em;
    margin-block-start: 17px;
    margin-inline: auto;
    max-inline-size: 176px;
    padding-block: 4px;
    padding-inline: 0px 0px;
  }

  .p-product-item__price {
    margin-block-start: 14px;
  }

  .p-product-item__btn {
    margin-block-start: 16px;
    margin-inline: auto;
    max-inline-size: 182px;
    padding-block: 14px 15px;
  }

  .p-news__inner {
    padding-block: 61.4px 200px;
  }

  .p-news__body {
    margin-block-start: 32px;
  }

  .p-news__pagination {
    margin-block-start: 22.5px;
  }

  /* .p-contact__inner {
    padding-block: 69px 79px;
  }

  .p-privacyFv .c-fv__text--en {
    inset-block-start: 45%;
    line-height: 1.1;
    text-align: center;
  }

  .p-privacyFv .c-fv__text--en .pc-hidden {
    display: block;
  }

  .p-privacy__inner {
    padding-block: 62px 80px;
  }

  .p-privacy__body {
    margin-block-start: 34px;
  }

  .p-privacy-body__top {
    font-size: 14px;
    line-height: 1.6071428571;
  }

  .p-privacy-body__about {
    font-size: 14px;
    line-height: 1.6071428571;
  }

  .p-privacy-body__text {
    font-size: 14px;
    line-height: 1.6071428571;
  } */

  .u-hidden-sp {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .p-feature-slide__list {
    grid-template-columns: repeat(2, 142px);
    margin-block-start: 13px;
  }
}

@media screen and (max-width: 600px) {
  .p-detailsProduct__head .c-section-title__ja .pc-hidden {
    display: block;
  }

  .p-detailsBaseProduct__head .c-section-title__ja .pc-hidden {
    display: block;
  }

  .p-feature-slide__text .sp-hidden {
    display: none;
  }

  .p-feature-slide__text--purple .sp-hidden {
    display: none;
  }

  .p-step__bottom .c-scrollbar {
    display: block;
    margin-block-start: 29.3px;
  }

  .p-step__attention {
    padding-inline: 30px;
  }
}

@media screen and (max-width: 500px) {
  .p-topConcept__head .c-topSection-title__ja .sp-hidden-little {
    display: none;
  }

  .p-conceptCopy__sub .pc-hidden {
    display: block;
  }

  .p-conceptCopy__sub .sp-hidden {
    display: none;
  }

  .p-detailsCleansingFeature__body .p-feature-slide__text--purple {
    text-align: left;
  }

  .p-detailsMistFeature__body .p-feature-slide__text--purple {
    text-align: left;
  }

  .p-detailsWashFeature__body .p-feature-slide__text--purple {
    text-align: left;
  }
}

@media screen and (max-width: 450px) {
  .p-topConcept__head .c-topSection-title__ja .pc-hidden {
    display: block;
  }
}

@keyframes drawerMove {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes drawerMoveBack {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes drawerBlur {
  0% {
    transform: scale(0.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes drawerBlurBack {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.1);
  }
}

@keyframes drawerBlurSP {
  0% {
    transform: scale(0.1) translateY(0%);
  }

  100% {
    transform: scale(1) translateY(-48%) rotate(65deg);
  }
}

@keyframes drawerBlurBackSP {
  0% {
    transform: scale(1) translateY(-48%) rotate(65deg);
  }

  100% {
    transform: scale(0.1) translateY(0%);
  }
}

@keyframes drawerOpacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes drawerOpacityBack {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fvSlide {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  20% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@media screen and (max-width: 375px) {
  .l-drawer::before {
    left: -44svh;
  }
  .l-drawer__link span:nth-of-type(1) {
    font-size: 10px;
  }
  .l-drawer__link span:nth-of-type(2) {
    font-size: 15px;
  }
  .l-drawer__list {
    gap: 5px;
  }
  .l-drawer__sub-list {
    gap: 6px;
    margin-block-start: 8px;
    padding-inline-start: 30px;
  }
  .l-drawer__link {
    gap: 3px;
  }
  .l-drawer__nav {
    gap: 8px;
    inset-inline-start: 27px;
    transform: translateY(-55%);
  }
}
