@charset "UTF-8";
html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

@media screen and (max-width: 1920px) {
  html {
    font-size: 0.5208333333vw;
  }
}
@media screen and (max-width: 992px) {
  html {
    font-size: 1.2820512821vw;
  }
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Zen Kaku Gothic New","Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
  font-weight: 400;
  line-height: 1.45;
  font-size: 1.4rem;
  color: #000;
}

a {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  color: #000;
}

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

/* ------- animation ------- */
.c-fixed {
  position: sticky;
  top: 0;
}

.c-ttl-bg {
  font-size: 6rem;
  position: relative;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.33;
}
.c-ttl-bg .bg {
  position: relative;
  display: inline-block;
  padding-right: 1.4rem;
}
.c-ttl-bg .bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 2rem;
  background: linear-gradient(90deg, rgb(255, 220, 156) 0%, rgb(248, 199, 206) 100%);
  position: absolute;
  z-index: 0;
  bottom: 0.6rem;
  left: 0;
}
.c-ttl-bg .text {
  position: relative;
}

@media (max-width: 992px) {
  .c-ttl-bg .bg {
    padding-right: 0.2rem;
  }
}
.js-ttl-bg .bg:before {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: 0.6s ease;
}

.js-ttl-bg.is-active .bg:before {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.c-ttl-scroll {
  display: inline-block;
  padding-bottom: 20px;
  position: absolute;
  z-index: 1;
  max-width: 2.3rem;
}
.c-ttl-scroll.right {
  right: 2rem;
}
.c-ttl-scroll.left {
  left: 5rem;
}

.c-ttl-scroll::after {
  content: "▶︎▶︎▶︎";
  display: inline-block;
  margin: auto;
  font-size: 2.2rem;
  position: absolute;
  -ms-transform: rotate(90deg);
      transform: rotate(90deg);
  bottom: -1.2rem;
  right: -0.2rem;
  letter-spacing: 0.1em;
  left: 0;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    transform: rotate(90deg) translateX(0);
  }
  80% {
    transform: rotate(90deg) translateX(20px);
  }
  0%, 80%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
.c-lead {
  font-size: 3rem;
  line-height: 2;
  letter-spacing: -0.1em;
}

/* ------- utility ------- */
sup,
sub {
  font-size: 1rem;
}

section {
  position: relative;
}

.u-center {
  text-align: center;
}

.u-right {
  text-align: right;
}

.u-note {
  font-size: 1.4rem;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.04em;
}

@media (max-width: 992px) {
  .l-main {
    overflow: hidden;
  }
  sup,
  sub {
    font-size: 0.8rem;
  }
  .u-note {
    font-size: 0.7rem;
  }
}
.btn,
a {
  transition: 0.3s ease;
}
@media (hover: hover) {
  .btn:hover,
  a:hover {
    opacity: 0.8;
  }
}

/* ------- layout ------- */
.l-container {
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  position: relative;
  background: url("../img/bg.jpg") no-repeat center/cover;
  background-attachment: fixed;
  padding-right: 10rem;
}

.l-main__contents {
  width: 43.5%;
  max-width: 78rem;
  background-color: #fff;
}

.l-side__left {
  width: 57%;
  padding: 0 3rem;
}
.l-side__left .c-fixed {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 100vh;
  padding-top: 8rem;
}
.l-side__left .c-fBox {
  display: -ms-flexbox;
  display: flex;
  gap: 9rem;
}
.l-side__left .page-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 3.6rem;
  margin-top: 7rem;
}
.l-side__left .page-nav a {
  font-size: 1.8rem;
  font-size: max(1.8rem, 15px);
  color: #666;
  letter-spacing: 0.2em;
  position: relative;
}
.l-side__left .page-nav a.is-active .active_line {
  display: block;
}
.l-side__left .page-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #666;
  bottom: -4px;
  -ms-transform: scale(0, 1);
      transform: scale(0, 1);
  -ms-transform-origin: right top;
      transform-origin: right top;
  transition: transform 0.3s;
}
.l-side__left .page-nav a.is-active::after {
  -ms-transform: scale(1, 1);
      transform: scale(1, 1);
  -ms-transform-origin: left top;
      transform-origin: left top;
}
@media (hover: hover) {
  .l-side__left .page-nav a:hover::after {
    -ms-transform: scale(1, 1);
        transform: scale(1, 1);
    -ms-transform-origin: left top;
        transform-origin: left top;
  }
}

.l-side__products {
  display: -ms-flexbox;
  display: flex;
  gap: 8rem;
  margin-top: 8rem;
}
.l-side__products .item {
  width: 50%;
  max-width: 212px;
  text-align: center;
}
.l-side__products .item > a:hover {
  opacity: 1;
}
.l-side__products .en {
  font-size: 1.6rem;
  font-family: "Montserrat", serif;
  letter-spacing: 0.2em;
  margin-top: 2rem;
  font-size: max(1.6rem, 14px);
}
.l-side__products .name {
  font-size: 1.8rem;
  font-size: max(1.8rem, 15px);
}
.l-side__products .p-buy-btn {
  border: 1px solid #231815;
  border-radius: 24px;
  padding: 2rem 1rem 1rem;
  text-align: center;
  margin-top: 1rem;
}
.l-side__products .p-buy-btn .text {
  font-size: 1.7rem;
  font-size: max(1.7rem, 15px);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.l-side__products .p-buy-btn a {
  display: inline-block;
  transition: 0.3s ease;
  width: 94%;
  margin: 0 auto;
}
@media (hover: hover) {
  .l-side__products .p-buy-btn a:hover {
    opacity: 0.7;
  }
}
.l-side__products .item.keratin .en {
  color: #ffba38;
}
.l-side__products .item.collagen .en {
  color: #f18f9e;
}

@media (max-width: 992px) {
  .l-container {
    padding-right: 0;
  }
  .l-side__left {
    display: none;
  }
  .l-main__contents {
    width: 100%;
  }
}
/* ------- mv ------- */
.p-mv {
  position: relative;
  z-index: 100;
  position: relative;
  padding-bottom: 2rem;
}
.p-mv .u-sp {
  display: none;
}

.p-mv__text {
  position: absolute;
  top: 15%;
  left: 6.8%;
  font-weight: 500;
}
.p-mv__text .text {
  font-size: 3.6rem;
  line-height: 1.3;
}
.p-mv__text .p-mv__ttl {
  font-size: 6rem;
  margin-top: 1rem;
}
.p-mv__text .text_2 {
  font-size: 5.6rem;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 1rem;
}
.p-mv__text .text_2 sup {
  display: inline-block;
  font-size: 1.8rem;
  position: relative;
  top: -3rem;
}
.p-mv__text .block {
  position: relative;
  padding-right: 12rem;
}
.p-mv__text .block .per {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  font-weight: 300;
  font-family: "Montserrat", serif;
}
.p-mv__text .block .per .num {
  font-size: 20rem;
  line-height: 0.8;
}
.p-mv__text .block .per .unit {
  font-size: 8rem;
  line-height: 0.8;
  vertical-align: top;
  padding-top: 1rem;
  display: inline-block;
}
.p-mv__text .block .text_3 {
  font-size: 7.8rem;
  position: absolute;
  bottom: 0;
  left: 38%;
  font-weight: 400;
  width: 110%;
  line-height: 1;
}
.p-mv__text .block .text_3 sup {
  font-size: 1.8rem;
  display: inline-block;
  position: relative;
  top: -5rem;
  left: -1.6rem;
}

.p-mv__note {
  font-size: 1.3rem;
  position: absolute;
  top: 71.5%;
  right: 2%;
  letter-spacing: -0.05em;
}
.p-mv__note p {
  text-indent: -2rem;
  padding-left: 2rem;
}

.p-mv-b .text {
  font-size: 3.3rem;
  line-height: 1.3;
}
.p-mv-b .p-mv__note {
  top: 42.4%;
  right: initial;
  left: 6.8%;
}

.js-mask-bg {
  color: transparent;
  display: inline-block;
  overflow: hidden;
  position: relative;
  transition: color 0s;
  transition-delay: 0.4s;
  line-height: 1.2;
}

.js-mask-bg::after {
  background: #FFC532;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -ms-transform: translate(0, 101%);
      transform: translate(0, 101%);
}

.js-mask-bg.is-active {
  color: #000;
}

.js-mask-bg.is-active::after {
  animation: mask-bg 1s ease forwards;
}

@keyframes mask-bg {
  0% {
    transform: translate(0, 101%);
  }
  40%, 60% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, -101%);
  }
}
/* ------------ booster-ingredients ------------ */
.p-booster-ingredients {
  position: relative;
  margin-top: 5rem;
}
.p-booster-ingredients .c-ttl-scroll {
  position: absolute;
  top: 1.6rem;
}
.p-booster-ingredients .c-ttl-bg {
  margin-left: 5rem;
}
.p-booster-ingredients .c-ttl-bg sup {
  position: absolute;
  top: 1.6rem;
  left: 68.4%;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.p-booster-ingredients__block {
  position: relative;
}
.p-booster-ingredients__block .products-img {
  display: inline-block;
  position: absolute;
}
.p-booster-ingredients__block .products-img img {
  position: relative;
  max-width: 8.7rem;
}
.p-booster-ingredients__block .products-img::before {
  content: "";
  display: inline-block;
  width: 130%;
  height: 1.8rem;
  border-radius: 50%;
  filter: blur(6px);
  background-color: #e2e2e2;
  position: absolute;
  bottom: -0.2rem;
  left: -0.8rem;
}
.p-booster-ingredients__block.keratin .products-img {
  bottom: 5%;
  left: 68%;
}
.p-booster-ingredients__block.collagen {
  margin-top: -1.6rem;
}
.p-booster-ingredients__block.collagen .products-img {
  bottom: 12.4%;
  left: 18%;
}

/* ------------ ingredients ------------ */
.p-ingredients {
  background: url("../img/ingredients_bg.png") no-repeat top left/100%;
  padding: 10rem 0 4rem;
  margin-top: -4rem;
}
.p-ingredients .c-ttl-bg {
  padding-left: 5rem;
  margin-bottom: 2rem;
}
.p-ingredients .lead {
  padding-left: 5rem;
  font-size: 3rem;
  line-height: 2;
  letter-spacing: -0.1em;
}
.p-ingredients .c-ttl-scroll {
  position: absolute;
  top: 13rem;
}

.p-ingradients__graf {
  width: 85%;
  margin-top: 10rem;
  margin-left: 3.5rem;
  position: relative;
}
.p-ingradients__graf .item {
  display: inline-block;
  position: absolute;
  left: 44.7%;
  height: 5rem;
  width: 100%;
  background-color: #8a8a8a;
  border-radius: 0 4px 4px 0;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: 0.6s ease;
}
.p-ingradients__graf .item_1 {
  top: 62%;
  width: 2%;
}
.p-ingradients__graf .item_2 {
  top: 52.5%;
  width: 32%;
  transition-delay: 0.1s;
}
.p-ingradients__graf .item_3 {
  top: 43%;
  width: 34%;
  transition-delay: 0.2s;
}
.p-ingradients__graf .item_4 {
  top: 33.4%;
  width: 37%;
  transition-delay: 0.3s;
}
.p-ingradients__graf .item_5 {
  top: 23.5%;
  width: 40.2%;
  background: linear-gradient(90deg, rgb(255, 185, 58) 0%, rgb(242, 145, 153) 100%);
  transition-delay: 0.4s;
}

.js-graf.is-active .item {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

/* ------------ particulars ------------ */
.p-particulars {
  background: url("../img/products_bg.png") no-repeat top center/cover;
  width: 100%;
  margin-left: 0%;
  padding: 3rem 0 6rem;
  position: relative;
  z-index: 2;
}

.p-particulars__text {
  padding: 0 0 0 12rem;
}
.p-particulars__text .c-ttl-bg {
  margin-bottom: 2rem;
}
.p-particulars__text .c-lead {
  padding-right: 6.4rem;
  letter-spacing: -0.075em;
}
.p-particulars__text .c-lead sup {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  display: inline-block;
  -ms-transform: translateY(-1rem);
      transform: translateY(-1rem);
}
.p-particulars__text .u-note {
  text-align: right;
  font-size: 1.2rem;
  padding-right: 8rem;
  margin-top: 1rem;
}

.p-particulars__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}
.p-particulars__block figure {
  width: 15%;
}
.p-particulars__block .block__text {
  width: 76%;
  padding-top: 2rem;
}
.p-particulars__block .en {
  font-size: 2.4rem;
  font-family: "Montserrat", serif;
  letter-spacing: 0.2em;
  margin-top: 2rem;
}
.p-particulars__block .name {
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.p-particulars__block .price {
  font-size: 3.6rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.p-particulars__block .tax {
  font-size: 1.4rem;
  font-weight: 400;
}
.p-particulars__block .wrap {
  padding-left: 2.4rem;
}
.p-particulars__block .btn-area {
  width: 90%;
  max-width: 50rem;
  background-color: #f2f2f2;
  text-align: center;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  margin-top: 4rem;
}
.p-particulars__block .btn-area .text {
  margin-bottom: 2rem;
}
.p-particulars__block.keratin {
  padding-left: 6rem;
}
.p-particulars__block.keratin .en {
  color: #ffba38;
}
.p-particulars__block.collagen {
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: start;
      justify-content: flex-start;
  padding-right: 3rem;
  gap: 6rem;
  margin-bottom: 3rem;
}
.p-particulars__block.collagen .en {
  color: #f18f9e;
}
.p-particulars__block.collagen .block__text {
  width: 72%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: end;
      align-items: flex-end;
}

/* ------------ particulars ------------ */
.p-two-layers {
  position: relative;
  z-index: 0;
  margin-top: -5rem;
  width: 102.8%;
  margin-left: -1.4%;
}
.p-two-layers .c-ttl-bg {
  position: absolute;
  left: 5rem;
  top: 9rem;
}
.p-two-layers .c-ttl-scroll {
  top: 10rem;
}
.p-two-layers__block {
  position: relative;
}
.p-two-layers__block img {
  width: 100%;
}
.p-two-layers__block .item {
  position: absolute;
  z-index: 1;
}
.p-two-layers__block .item .layers {
  width: 20rem;
  position: relative;
  z-index: 1;
  transition: 0.3s ease;
  opacity: 0;
  transition-delay: 0.2s;
}
.p-two-layers__block .item:first-of-type {
  width: 45%;
  max-width: 37.2rem;
  top: 53%;
  left: 48%;
  text-align: right;
}
.p-two-layers__block .item:first-of-type .layers {
  margin: 0 0 0 auto;
}
.p-two-layers__block .item:first-of-type::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background-color: #000;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 44%;
  left: 0;
  opacity: 0;
  transition: 0.3s ease;
}
.p-two-layers__block .item:first-of-type::after {
  content: "";
  height: 2px;
  width: 60%;
  display: block;
  background-color: #000;
  position: absolute;
  top: 46.8%;
  left: 1%;
  z-index: 0;
  transition: 0.5s ease;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
.p-two-layers__block .item:nth-of-type(2) {
  width: 34%;
  max-width: 25.2rem;
  top: 81%;
  left: 7.5%;
}
.p-two-layers__block .item:nth-of-type(2) .layers {
  margin: 0 auto 0 0;
  transition-delay: 0.6s;
}
.p-two-layers__block .item:nth-of-type(2)::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background-color: #000;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: -10%;
  left: 94%;
  opacity: 0;
  transition: 0.3s ease;
  transition-delay: 0.3s;
}
.p-two-layers__block .item:nth-of-type(2) .border_1 {
  display: inline-block;
  width: 60%;
  height: 2px;
  background-color: #000;
  width: 20%;
  position: absolute;
  top: 48%;
  left: 77.5%;
  transition: 0.3s ease;
  transition-delay: 0.4s;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.p-two-layers__block .item:nth-of-type(2) .border_2 {
  display: inline-block;
  width: 2px;
  height: 59%;
  background-color: #000;
  position: absolute;
  top: -10%;
  left: 97%;
  transition: 0.3s ease;
  transition-delay: 0.2s;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 0, 100% 0);
          clip-path: polygon(100% 0, 0 0, 0 0, 100% 0);
}

.js-layers:first-of-type.is-active .layers {
  opacity: 1;
}
.js-layers:first-of-type.is-active::before {
  opacity: 1;
}
.js-layers:first-of-type.is-active::after {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
.js-layers:nth-of-type(2).is-active .layers {
  opacity: 1;
}
.js-layers:nth-of-type(2).is-active::before {
  opacity: 1;
}
.js-layers:nth-of-type(2).is-active .border_1 {
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}
.js-layers:nth-of-type(2).is-active .border_2 {
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}

/* ------------ series ------------ */
.p-series {
  padding-top: 8rem;
  margin-top: -4rem;
}
.p-series .c-ttl-bg {
  text-align: center;
  margin-bottom: 2rem;
}

.p-series__block {
  position: relative;
}
.p-series__block .p-buy-btn {
  width: 100%;
  max-width: 58rem;
  position: relative;
  padding: 2.4rem 2rem;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  bottom: 8rem;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}
.p-series__block .p-buy-btn .text {
  margin-bottom: 3rem;
  text-align: center;
}
.p-series__block .p-buy-btn a {
  transition: 0.3s ease;
}
@media (hover: hover) {
  .p-series__block .p-buy-btn a:hover {
    opacity: 0.8;
  }
}
.p-series__block.keratin .p-buy-btn {
  background-color: #ffba38;
}
.p-series__block.collagen .p-buy-btn {
  background-color: #f18f9e;
}

@media (max-width: 992px) {
  .p-series__block > img {
    width: 100%;
  }
}
/* ------------ step ------------ */
.p-steps {
  padding-top: 6rem;
}
.p-steps .c-ttl-scroll {
  top: 8rem;
  z-index: 2;
}
.p-steps .c-ttl-bg {
  margin-bottom: 2rem;
  margin-left: 7rem;
}

.p-steps__block {
  position: relative;
}
.p-steps__block .item {
  position: relative;
}
.p-steps__block .bg-circle {
  position: absolute;
  top: 3.5rem;
  right: 0;
  width: 80%;
  aspect-ratio: 305/569;
}

@media (max-width: 992px) {
  .p-steps__block .item > img {
    width: 100%;
  }
}
.js-circle .svg-elem-1 {
  stroke-dashoffset: 922.3402099609px;
  stroke-dasharray: 922.3402099609px;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  transition-delay: 0.1s;
}

.js-circle.is-active .svg-elem-1 {
  stroke-dashoffset: 0;
}

.p-steps__movie {
  margin-bottom: 6rem;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
  z-index: 1;
}
.p-steps__movie .c-modal__wrap {
  width: 100%;
  padding-left: 2.4rem;
}
@media (hover: hover) {
  .p-steps__movie .c-modal__wrap:hover {
    opacity: 0.9;
  }
}
.p-steps__movie video {
  aspect-ratio: 471/837;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.p-steps__movie .modal-content {
  position: relative;
}
.p-steps__movie .modal-content .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
  height: 100%;
}
.p-steps__movie .modal-content .play-btn img {
  width: 12rem;
}
.p-steps__movie .modal-content .play-btn.playActive {
  display: none;
}

/* ------------ voice ------------ */
.p-voice {
  width: 102.6%;
  margin-left: -1.3%;
  margin-top: -6rem;
}

@media (max-width: 992px) {
  .p-voice > img {
    width: 100%;
  }
}
/* ------------ set ------------ */
.p-set {
  background: url("../img/set_bg.png") no-repeat top center/cover;
  margin-top: -6rem;
  padding: 8rem 0 16rem;
}
.p-set .text {
  width: 80%;
  padding-left: 4rem;
}

.p-set__block {
  width: 79%;
  margin: 12rem auto 0;
}
.p-set__block .p-buy-btn {
  position: relative;
  padding: 2.6rem 2rem;
  border-radius: 20px;
  width: 94%;
  margin: 5rem auto 0;
}
.p-set__block .p-buy-btn .text {
  width: 100%;
  margin-bottom: 3rem;
  text-align: center;
  padding-right: 4rem;
}
.p-set__block .p-buy-btn .text a {
  transition: 0.3s ease;
}
@media (hover: hover) {
  .p-set__block .p-buy-btn .text a:hover {
    opacity: 0.7;
  }
}
.p-set__block.keratin .p-buy-btn {
  background-color: #ffba38;
}
.p-set__block.collagen {
  margin-top: 10rem;
}
.p-set__block.collagen .p-buy-btn {
  background-color: #f18f9e;
}

/* ------------ line-up ------------ */
.p-line-up {
  padding: 6rem 4rem 10rem;
}
.p-line-up .line-up-ttl {
  font-family: "Montserrat", serif;
  font-size: 10rem;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 4rem;
}
.p-line-up .ttl-bg {
  background-color: #000;
  color: #fff;
  font-size: 3.2rem;
  text-align: center;
  letter-spacing: 0.2em;
  padding: 0.6rem;
  margin-bottom: 7rem;
}
.p-line-up .ttl-bg.collagen {
  margin-top: 10rem;
}

.p-line-up__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 1rem;
}
.p-line-up__list .item {
  width: 33.3333333333%;
  max-width: 23rem;
  text-align: center;
}
.p-line-up__list .item-img {
  padding: 0 1.6rem;
  margin: 0 auto;
}
.p-line-up__list .item-img.shampoo {
  max-width: 15.8rem;
}
.p-line-up__list .item-img.mist {
  max-width: 9rem;
}
.p-line-up__list .item-img.treatment {
  max-width: 15.8rem;
}
.p-line-up__list .item-text {
  margin-top: 2.4rem;
}
.p-line-up__list .name {
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.p-line-up__list .price {
  font-size: 3.6rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.p-line-up__list .tax {
  font-size: 1.4rem;
  font-weight: 400;
}
.p-line-up__list .item-btn {
  background: linear-gradient(90deg, rgb(255, 185, 58) 0%, rgb(242, 145, 153) 100%);
  border-radius: 10px;
  text-align: center;
  padding: 2rem 1.6rem;
  max-width: 214px;
  margin: 0 auto;
  margin-top: 3.6rem;
}
.p-line-up__list .item-btn .icon {
  max-width: 5rem;
  display: inline-block;
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .p-line-up__list .name {
    font-size: 2.5rem;
  }
}
/* ------- foot ------- */
.p-foot {
  padding: 8rem 0;
}

.p-foot ul {
  margin-bottom: 3rem;
}

.p-foot ul li {
  line-height: 1;
  text-align: center;
}
.p-foot ul li:not(:last-child) {
  margin-bottom: 3.6rem;
}

.p-foot ul li a {
  font-size: max(2.4rem, 16px);
  color: #333333;
  font-weight: 500;
}

.p-copyright {
  font-size: 2.4rem;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 500;
}

@media (max-width: 992px) {
  .p-foot {
    padding-bottom: 34%;
  }
  .p-foot ul {
    padding-top: 4rem;
  }
}
/* ------- floating btn ------- */
@media (min-width: 992px) {
  .c-floating {
    display: none !important;
  }
}
@media (max-width: 992px) {
  .c-floating {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 999999;
    width: 100%;
  }
  .c-floating.back {
    z-index: 0;
  }
  .c-floating .c-fBox {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    position: relative;
  }
  .c-floating .c-fBox figure {
    max-width: 8rem;
    position: absolute;
    top: -8.8rem;
    left: 1.4rem;
    width: 3.8rem;
  }
  .c-floating .c-fBox .float__text {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.2;
    padding-left: 7.2rem;
    letter-spacing: 0.1em;
  }
  .c-floating .c-fBox .float__text strong {
    display: block;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0;
  }
  .c-floating .p-buy-btn {
    background: none;
    position: static;
    padding: 0;
    margin: 0;
    margin-top: 5px;
    border-radius: 0;
    max-width: 100%;
  }
  .c-floating .p-buy-btn .text {
    max-width: 7.5rem;
    position: absolute;
    top: -5.5rem;
    right: 1rem;
  }
  .c-floating .p-buy-btn .list {
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    gap: 1rem;
    width: 100%;
    margin-top: 1.5rem;
  }
  .c-floating .p-buy-btn .list li:not(:last-child) {
    margin: 0;
  }
}
/* ------- popup btn ------- */
.p-movie__popup {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  aspect-ratio: 471/837;
  width: 12%;
  max-width: 20rem;
  z-index: 9999;
  display: none;
}
.p-movie__popup .p-popup__wrap {
  width: 100%;
  height: 100%;
}
.p-movie__popup iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: 2rem;
}
.p-movie__popup .popup-close {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background-color: #fff;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  color: #666;
  font-size: 1.8rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  line-height: 1;
  padding-bottom: 2px;
  cursor: pointer;
}
.p-movie__popup .c-modal__wrap {
  width: 100%;
  height: 100%;
}
.p-movie__popup.close {
  display: none !important;
}
.p-movie__popup.back {
  z-index: 0;
}

@media (max-width: 992px) {
  .p-movie__popup {
    width: 30%;
    max-width: 19rem;
    bottom: 22rem;
  }
  .p-movie__popup .popup-close {
    top: -2rem;
    width: 4rem;
    height: 4rem;
    font-size: 2.4rem;
  }
}
/* --- modal --*/
.c-modal .modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 60px 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 9999999;
}
.c-modal .modal-container.active {
  opacity: 1;
  visibility: visible;
}
.c-modal .modal-body {
  position: relative;
  display: inline-block;
  width: auto;
  max-width: 680px;
  height: 100%;
  margin: 0 auto;
}
.c-modal .modal-close {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  top: -40px;
  right: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
}
.c-modal .modal-close::before, .c-modal .modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 2px;
  background: #f18f9e;
}
.c-modal .modal-close::before {
  -ms-transform: translate(-50%, -50%) rotate(30deg);
      transform: translate(-50%, -50%) rotate(30deg);
}
.c-modal .modal-close::after {
  -ms-transform: translate(-50%, -50%) rotate(-30deg);
      transform: translate(-50%, -50%) rotate(-30deg);
}
.c-modal .modal-content {
  overflow: hidden;
  height: 100%;
}

.c-modal .modal-container.p-popup-modal .modal-body {
  aspect-ratio: 471/837;
}
.c-modal .modal-container.p-popup-modal .modal-conten {
  position: relative;
  border-radius: 2rem;
}
.c-modal .modal-container.p-popup-modal .float__link {
  position: absolute;
  bottom: 0;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  border-radius: 0 0 2rem 2rem;
  overflow: hidden;
}
.c-modal .modal-container.p-popup-modal .float__link a {
  display: block;
  width: 50%;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .c-modal .modal-container.p-popup-modal .float__link a:hover {
    opacity: 0.8;
  }
}
.c-modal .modal-container.p-popup-modal iframe {
  pointer-events: initial;
}

@media (max-width: 992px) {
  .c-modal .modal-close {
    position: absolute;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    top: -40px;
    right: 0rem;
    cursor: pointer;
  }
  .c-modal .modal-container.p-popup-modal {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    padding-bottom: 4rem;
  }
  .c-modal .modal-container.p-popup-modal .modal-body {
    width: 96%;
    max-width: 375px;
    height: auto;
    aspect-ratio: 471/837;
  }
  .c-modal .modal-container.p-popup-modal .modal-conten {
    position: relative;
  }
}


/* ------- ldk ------- */
.p-mv {
  padding-bottom: 0;
}

.p-ldk {
  background: url("../img/ldk_bg.jpg") no-repeat center/cover;
  padding: 7.5rem 0;
}

.p-ldk figure {
  width: 84%;
  max-width: 640px;
  margin: 1.2rem auto 0;
}

.p-ldk-text {
  text-align: center;
  width: 78%;
  max-width: 598px;
  margin: 0 auto;
  position: relative;
}

.p-ldk-text .text_1 {
  font-size: 4.8rem;
  font-weight: 700;
}

.p-ldk-text p {
  position: relative;
  z-index: 1;
}

.p-ldk-text .bg {
  display: block;
  width: 100%;
  height: 3.4rem;
}

.p-ldk-text .bg::before {
  content: "";
  display: block;
  width: 87%;
  max-width: 510px;
  height: 3.4rem;
  background: linear-gradient(90deg, rgb(255, 185, 58) 0%, rgb(241, 144, 156) 100%);
  position: absolute;
  z-index: 0;
  bottom: 8%;
  left: 6%;
}