@charset "UTF-8";

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden; 
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #313131;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

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

a:hover {
  opacity: 0.7;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.3s ease;
}

button:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

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

span.pc-only {
  display: inline;
}

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

.l-header {
  position: relative;
  z-index: 200; 
  width: 100%;
  padding: 15px 20px 15px;
  background-color: #FFFFFF;
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 430px;
  margin: 0 auto;
}

.l-main {
  width: 100%;
}

.c-brand {
  display: block;
}

.c-brand__image {
  height: 38px;
  width: auto;
}

.c-logo-box {
  border: 1px solid #A3859B;
  margin-bottom: 15px;
}

.c-logo-box__ribbon {
  background-color: #A3859B;
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 20px;
  color: #FFFFFF;
  text-align: center;
  padding: 0px 15px 1px;
}

.c-logo-box__subtitle {
  background-color: #FFFFFF;
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 15px;
  color: #5A4F3C;
  text-align: center;
  line-height: 1.47;
  padding: 7px 15px 8px;
}

.c-menu-button {
  position: relative;
  margin-top: 8px;
  width: 32px;
  height: 14px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.c-menu-button__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #0058AA;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

.c-menu-button__bar:nth-child(1) {
  top: 0;
}

.c-menu-button__bar:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}

.c-menu-button__bar:nth-child(3) {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  width: 22px;
}

.c-menu-button.is-active .c-menu-button__bar:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  transform: rotate(45deg);
}

.c-menu-button.is-active .c-menu-button__bar:nth-child(2) {
  opacity: 0;
}

.c-menu-button.is-active .c-menu-button__bar:nth-child(3) {
  top: 50%;
  bottom: auto;
  left: 0;
  right: auto;
  margin-top: -1px;
  width: 100%;
  transform: rotate(-45deg);
}

.p-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  transition: visibility 0.3s ease;
  overflow: hidden; 
}

.p-drawer.is-open {
  visibility: visible;
}

.p-drawer__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.p-drawer.is-open .p-drawer__overlay {
  opacity: 1;
}

.p-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(280px, 80%);
  height: 100%;
  padding: 60px 24px 32px;
  background-color: #FFFFFF;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

@media screen and (min-width: 768px) {
  .p-drawer__panel {
    width: min(500px, 80%);
  }
}

.p-drawer.is-open .p-drawer__panel {
  transform: translateX(0);
}

.p-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-drawer__item {
  border-bottom: 1px solid #E9C9D6;
}

.p-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 18px 4px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: #1B1B1B;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .p-drawer__link {
    font-size: 20px;
  }
}

.p-drawer__link::after {
  content: '▶';
  flex-shrink: 0;
  font-size: 10px;
  color: #CD7E9A;
}

.p-drawer__link:hover {
  color: #CD7E9A;
}

body.is-drawer-open {
  overflow: hidden;
}

.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 345px;
  height: 70px;
  border-radius: 35px;
  border: 1px solid #FFFFFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.c-button:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.3);
}

.c-button--gradient {
  background: linear-gradient(90deg, rgba(237, 134, 183, 1) 0%, rgba(87, 194, 226, 1) 100%);
}

.c-button__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #FFFFFF;
  text-shadow: 0px 7px 7px rgba(0, 0, 0, 0);
}

.c-button__icon {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 14px;
  color: #FFFFFF;
  margin-left: 8px;
}

.c-section-title {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.c-section-title__label {
  position: relative;
  display: inline-block;
  padding: 1px 42px;
  font-family: 'Shippori Mincho', serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #FFFFFF;
  background-color: #CD7E9A;
  text-align: center;
  clip-path: polygon(9px 0, 100% 0, calc(100% - 9px) 100%, 0 100%);
}

@media (min-width: 750px) {
  .c-section-title {
    margin-bottom: clamp(12px, calc(7px + 0.67vw), 15px);
  }
  .c-section-title__label {
    font-size: clamp(12px, calc(7px + 0.67vw), 15px);
    padding: clamp(1px, calc(0.58px + 0.06vw), 1.25px) clamp(42px, calc(24.5px + 2.33vw), 52.5px);
    clip-path: polygon(clamp(9px, calc(5.25px + 0.5vw), 11.25px) 0, 100% 0, calc(100% - clamp(9px, calc(5.25px + 0.5vw), 11.25px)) 100%, 0 100%);
  }
  .c-section-title__label--narrow {
    padding: clamp(3px, calc(1.75px + 0.17vw), 3.75px) clamp(44px, calc(25.67px + 2.44vw), 55px);
  }
}

.c-card {
  width: 100%;
  max-width: 325px;
  margin: 0 auto 30px;
}

.c-card__top {
  display: flex;
  align-items: flex-start;
}

.c-card__image {
  position: relative;
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  margin-top: -65px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
}

.c-card__image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #FFFFFF;
}

.c-card__content {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 145px;
  margin-top: 18px;
  margin-left: -24px;
  padding: 14px 12px 14px 28px;
  background: rgba(132, 83, 119, 0.6);
  border-radius: 20px;
  z-index: 1;
}

.c-card__text {
  width: 100%;
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  text-align: center;
}

.c-card__description {
  margin-top: 16px;
  padding: 0 6px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #3D2F12;
  text-align: center;
}

.p-eyelashTab__buttons {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 0 0 15px;
}

.p-eyelashTab__buttons:not(.p-eyelashTab__buttons--repeat)::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  height: 1px;
  background-color: #DCD4D4;
}

.p-eyelashTab__buttons--repeat {
  align-items: center;
  padding-top: 20px;
}

.p-eyelashTab__button {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 178px; 
  height: 74px;
  background: none;
  border: none;
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 16px;
  color: #313131;
  line-height: 1.4;
  letter-spacing: -0.06em;
  text-align: center;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .p-eyelashTab__button {
    width: 470px
  }
}

.p-eyelashTab__marker {
  display: none;
}

.p-eyelashTab__button:hover {
  opacity: 1;
  color: rgba(49, 49, 49, 0.5);
}
.p-eyelashTab__button--active:hover {
  color: rgba(205, 126, 154, 0.5);
}

.p-eyelashTab__button--active:hover::before,
.p-eyelashTab__button--active:hover .p-eyelashTab__marker {
  opacity: 0.5;
}

.p-eyelashTab__button--active {
  height: 74px;
  background-color: #FFFFFF;
  border: 1px solid #DCD4D4;
  border-radius: 10px 10px 0 0;
  border-bottom: none;
  font-weight: 800;
  font-size: 15px;
  color: #CD7E9A;
  text-align: center;
  letter-spacing: normal;
}

.p-eyelashTab__button--active::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 10px;
  right: 10px;
  height: 2px;
  background-color: #CD7E9A;
}

.p-eyelashTab__button--active::after {
  content: none;
}

.p-eyelashTab__button--active .p-eyelashTab__marker {
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 7px;
  margin-bottom: 4px;
  background-color: #CD7E9A;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.p-eyelashTab__buttons:not(.p-eyelashTab__buttons--repeat) .p-eyelashTab__button--active .p-eyelashTab__marker {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

.p-eyelashTab__buttons--repeat .p-eyelashTab__button {
  height: 70px;
}

.p-eyelashTab__buttons--repeat .p-eyelashTab__button--active {
  height: 70px;
  border: 1px solid #DCD4D4;
  border-radius: 0 0 10px 10px;
}

.p-eyelashTab__buttons--repeat .p-eyelashTab__button--active[data-target="1"],
.p-eyelashTab__buttons--repeat .p-eyelashTab__button--active[data-target="2"] {
  border-top-color: #FFFFFF;
}

.p-eyelashTab__buttons--repeat::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  height: 1px;
  background-color: #DCD4D4;
}

.p-eyelashTab__buttons--repeat::after {
  content: none;
}

.p-eyelashTab__buttons--repeat .p-eyelashTab__button--active::before {
  top: auto;
  bottom: 3px;
  left: 10px;
  right: 10px;
  height: 2px;
}

.p-eyelashTab__buttons--repeat .p-eyelashTab__button--active::after {
  content: none;
}

.p-eyelashTab__buttons--repeat .p-eyelashTab__button--active .p-eyelashTab__marker {
  position: absolute;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
  order: 0;
  width: 14px;
  height: 6px;
  margin: 0;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.p-eyelashTab__panel:not(.p-eyelashTab__panel--active) {
  display: none;
}

.c-feature {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto 15px;
  padding: 34px 20px 20px;
  background-color: #F7F7F7;
  border-radius: 10px;
}

.c-feature:nth-child(odd) {
  background-color: #F6F4F1;
}

.c-feature__number {
  position: absolute;
  top: 15px;
  left: 10px;
  transform: translateY(-50%);
}

.c-feature__number-circle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  padding-bottom: 4px; 
  background-color: #CD7E9A;
  border-radius: 50%;
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 28px;
  color: #FFFFFF;
}

.c-feature__number-circle::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
}

.c-feature__title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 20px;
  color: #9E809A;
  text-align: center;
  line-height: 1.45;
  margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
  .c-feature__title {
    font-size: 34px;
  }
}

.c-feature__description {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #2C2C2C;
  text-align: center;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .c-feature__description {
    font-size: 16px;
    line-height: 1.6;
  }
}

.c-feature__badge {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 305px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 6px;
}

@media screen and (min-width: 768px) {
  .c-feature__badge {
    max-width: 540px;
  }
}

.c-feature__badge--primary {
  background-color: #9E809A;
}

.c-feature__badge--secondary {
  background-color: #9E809A;
  margin-top: 5px;
}

.c-feature__badge-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #FFFFFF;
}

@media screen and (min-width: 768px) {
  .c-feature__badge-text {
    font-size: 22px;
  }
}

.c-feature__plants {
  display: grid;
  grid-template-columns: repeat(3, 77px);
  gap: 7px;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .c-feature__plants {
    grid-template-columns: repeat(3, 130px);
  }
}

.c-feature__plants-image {
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.c-feature__note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #2C2C2C;
  text-align: center;
  margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
  .c-feature__note {
    font-size: 14px;
  }

  #eyelashTabPanel2 .c-feature__note--tight {
    margin-bottom: 0;
  }
}

.c-feature__note:last-child {
  margin-bottom: 0;
}

.c-feature__plus {
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 34px;
  color: #9E809A;
  text-align: center;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .c-feature__plus {
    font-size: 60px;
  }
}

.c-feature__subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #CD7E9A;
  text-align: center;
  margin-bottom: 16px;
}

.c-feature__badge--tertiary {
  background-color: #CD7E9A;
}

.c-feature--brush {
  position: relative;
}

.c-feature--brush .c-feature__text {
  width: 100%;
}

.c-feature--brush .c-feature__title {
  text-align: center;
  margin-bottom: 8px;
}

.c-feature--brush .c-feature__description {
  text-align: center;
}

.c-feature__accent-circle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 84px;
  height: 84px;
}

.p-hero {
  position: relative;
  width: 100%;
  padding: 10px 20px 8px;
}

.p-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(250, 245, 250, 1) 0%, rgba(252, 249, 237, 1) 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0px, #000 100px);
  mask-image: linear-gradient(to bottom, transparent 0px, #000 100px);
  pointer-events: none;
}

.p-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0 auto;
}

.p-hero__title {
  position: relative;
  left: 14px; 
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 30px;
  color: #5A4F3C;
  text-align: center;
  line-height: 1.45;
  margin-bottom: 50px;
}

.p-hero__title-particle {
  font-size: 24px;
}

.p-hero__title-underline {
  position: relative;
  display: inline-block;
}

.p-hero__title-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 4px;
  background-image: url('../img/title-underline.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.p-hero__products {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  margin-top: 30px;
}

.p-hero__product {
  flex-shrink: 0;
}

.p-hero__product-image {
  width: auto;
  height: auto;
  max-height: 370px;
}

.p-hero__sales {
  margin-top: 16px;
}

.p-hero__sales-image {
  width: 100%;
  max-width: 365px;
  height: auto;
  display: block;
  margin: 0 auto 16px;
}

.p-hero__sales-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #333333;
  text-align: center;
  line-height: 1.8;
}

.p-sales {
  position: relative;
  width: 100%;
  padding: 40px 16px 50px;
}

.p-sales::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(250, 245, 250, 1) 0%, rgba(252, 249, 237, 1) 100%);
  -webkit-mask-image: linear-gradient(to top, transparent 0px, #000 100px);
  mask-image: linear-gradient(to top, transparent 0px, #000 100px);
  pointer-events: none;
}

.p-sales__inner {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0 auto;
}

.p-sales__feature {
  margin-bottom: 16px;
}

.p-sales__feature-image {
  width: 100%;
  max-width: 334px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.p-sales__description {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 22px;
  color: #845377;
  text-align: center;
  line-height: 1.45;
  margin-bottom: 16px;
  padding: 0 10px;
}

.p-sales__description sup {
  font-size: 10px;
}

.p-sales__disclaimer {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #343434;
  text-align: left;
  line-height: 1.6;
}

.p-cta {
  width: 100%;
  padding: 40px 14px 70px;
}

.p-cta__inner {
  max-width: 430px;
  margin: 0 auto;
}

.p-cta .c-button {
  margin: 0 auto;
}

.p-for-you {
  position: relative;
  width: 100%;
  padding: 44px 15px 40px;
}

.p-for-you::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(244, 232, 223, 1) 0%, rgba(242, 209, 233, 1) 100%);
  -webkit-mask-image: linear-gradient(to top, transparent 0px, #000 100px);
  mask-image: linear-gradient(to top, transparent 0px, #000 100px);
  pointer-events: none;
}

.p-for-you__inner {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0 auto;
}

.p-for-you__title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 32px;
  color: #22211F;
  text-align: center;
  line-height: 1;
  margin-bottom: 65px;
}

.p-for-you__title-accent {
  font-size: 25px;
}

.p-for-you__cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.p-for-you__cards .c-card {
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #D7C849;
  border-radius: 20px;
  padding: 20px 14px;
}

.p-for-you__cards .c-card:first-child {
  margin-bottom: 50px;
}

.p-for-you__cards .c-card:first-child .c-card__content {
  background: rgba(132, 83, 119, 0.6);
  margin-top: 0px;
  margin-left: -70px;
  
  margin-right: calc(50% - 50vw);
  border-radius: 0 0 0 20px;
}

.p-for-you__cards .c-card:first-child .c-card__image {
  margin-left: -25px;
}

.p-for-you__cards .c-card:last-child .c-card__image {
  margin-right: -25px;
}

.p-for-you__cards .c-card:last-child .c-card__top {
  flex-direction: row-reverse;
}

.p-for-you__cards .c-card:last-child .c-card__content {
  background: rgba(205, 126, 154, 0.8);
  margin-top: 0px;
  
  margin-left: calc(50% - 50vw);
  margin-right: -65px;
  padding: 14px 28px 14px 12px;
  border-radius: 0 0 20px 0;
}

.p-for-you__cards .c-card:last-child .c-card__description {
  text-align: left;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 750px) {
  .u-sp-br {
    display: none;
  }
}

@media (min-width: 750px) {
  
  .p-for-you {
    padding: clamp(64px, calc(37.33px + 3.56vw), 80px) 20px clamp(80px, calc(46.67px + 4.44vw), 100px);
  }
  .p-for-you__inner {
    max-width: clamp(960px, calc(560px + 53.33vw), 1200px);
  }
  .p-for-you__title {
    font-size: clamp(40px, calc(23.33px + 2.22vw), 50px);
    margin-bottom: clamp(64px, calc(37.33px + 3.56vw), 80px);
  }
  .p-for-you__title-accent {
    font-size: clamp(32px, calc(18.67px + 1.78vw), 40px);
  }

  .p-for-you__cards {
    gap: clamp(56px, calc(32.67px + 3.11vw), 70px);
  }
  .p-for-you__cards .c-card {
    max-width: clamp(520px, calc(303.33px + 28.89vw), 650px);
    padding: clamp(28px, calc(16.33px + 1.56vw), 35px) clamp(30px, calc(17.5px + 1.67vw), 37.5px) clamp(32px, calc(18.67px + 1.78vw), 40px);
  }
  .c-card__image {
    width: clamp(160px, calc(93.33px + 8.89vw), 200px);
    height: clamp(160px, calc(93.33px + 8.89vw), 200px);
    margin-top: clamp(-81.25px, calc(-37.92px - 3.61vw), -65px);
  }
  .p-for-you__cards .c-card:first-child .c-card__image {
    margin-left: clamp(-75px, calc(-35px - 3.33vw), -60px);
  }
  .p-for-you__cards .c-card:last-child .c-card__image {
    margin-right: clamp(-75px, calc(-35px - 3.33vw), -60px);
  }
  .c-card__content {
    min-height: clamp(150px, calc(87.5px + 8.33vw), 187.5px);
    margin-left: clamp(-37.5px, calc(-17.5px - 1.67vw), -30px);
    padding: clamp(18px, calc(10.5px + 1vw), 22.5px) clamp(18px, calc(10.5px + 1vw), 22.5px) clamp(18px, calc(10.5px + 1vw), 22.5px) clamp(95px, calc(25.67px + 2.44vw), 100px);
  }
  .p-for-you__cards .c-card:last-child .c-card__content {
    
    margin-left: clamp(-63.75px, calc(-29.75px - 2.83vw), -51px);
    margin-right: clamp(-112.5px, calc(-52.5px - 5vw), -90px);
    padding: clamp(18px, calc(10.5px + 1vw), 22.5px) clamp(75px, calc(20px + 2.44vw), 85px) clamp(18px, calc(10.5px + 1vw), 22.5px) clamp(18px, calc(10.5px + 1vw), 22.5px);
    border-radius: 20px;
  }
  
  .p-for-you__cards .c-card:first-child .c-card__content {
    margin-left: clamp(-112.5px, calc(-52.5px - 5vw), -90px);
    margin-right: clamp(-63.75px, calc(-29.75px - 2.83vw), -51px);
    border-radius: 20px;
  }
  .c-card__text {
    font-size: clamp(22px, calc(12.83px + 1.22vw), 27.5px);
    line-height: clamp(34px, calc(19.83px + 1.89vw), 42.5px);
    letter-spacing: 0.1em;
  }
  .c-card__description {
    margin-top: clamp(20px, calc(11.67px + 1.11vw), 25px);
    font-size: clamp(16px, calc(9.33px + 0.89vw), 20px);
    line-height: clamp(26px, calc(15.17px + 1.44vw), 32.5px);
  }
  
  .p-for-you__cards .c-card:last-child .c-card__description {
    text-align: center;
    width: auto;
  }
}

@media (min-width: 960px) {
  .p-for-you__cards {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    
    gap: clamp(80px, calc(46.67px + 4.44vw), 100px);
  }
  .p-for-you__cards .c-card {
    flex: 1 1 0;
    max-width: clamp(440px, calc(256.67px + 24.44vw), 550px);
    margin: 0;
  }
  .p-for-you__cards .c-card:first-child {
    margin-bottom: 0;
  }
  
  .p-for-you__cards .c-card:last-child {
    margin-top: clamp(40px, calc(23.33px + 2.22vw), 50px);
  }
}

.p-products {
  width: 100%;
  padding: 44px 0 40px;
}

.p-products__inner {
  max-width: 430px;
  margin: 0 auto;
}

.p-products__title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 32px;
  color: #22211F;
  text-align: center;
  line-height: 1;
  margin-bottom: 34px;
  padding: 0 54px;
}

.p-products__title-accent {
  font-size: 25px;
}

.p-product-detail {
  display: flex;
  gap: 14px;
  padding: 40px 20px;
  background-color: #FFFFFF;
}

.p-product-detail__image {
  flex-shrink: 0;
}

.p-product-detail__image-main {
  width: 108px;
  height: auto;
}

.p-product-detail__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 40px;
}

.p-product-detail__catch {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 18px;
  color: #9E809A;
  text-align: center;
  line-height: 1.44;
  border-bottom: 1px solid #A3859B;
  padding-bottom: 6px;
}

@media screen and (min-width: 768px) {
  .p-product-detail__catch {
    font-size: 30px;
  }
}

.p-product-detail__title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 22px;
  color: #2C2C2C;
  text-align: center;
  line-height: 1.45;
  padding-bottom: 8px;
}

.p-product-detail__title-main {
  display: inline-block;
  font-size: 19px;
  letter-spacing: -0.08em;
}

.p-product-detail__price {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #2C2C2C;
  text-align: center;
  line-height: 1.42;
  padding-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .p-product-detail__price {
    font-size: 16px;
  }
}

.p-product-detail__description {
  position: relative;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #3D3D3D;
  text-align: left;
  letter-spacing: -0.06em;
  z-index: 0;
}

.p-product-detail__description::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 228px;
  height: 223px;
  background-image: url('../img/ellipse-bg.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

.p-product-detail__note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #84765F;
  text-align: left;
}

.p-features {
  padding: 40px 14px;
  background-color: #FFFFFF;
}

.p-hair-cycle {
  position: relative;
  width: 100%;
  padding: 44px 0 40px;
}

.p-hair-cycle::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(244, 232, 223, 1) 0%, rgba(242, 209, 233, 1) 100%);
  -webkit-mask-image: linear-gradient(to top, transparent 0px, #000 400px);
  mask-image: linear-gradient(to top, transparent 0px, #000 400px);
  pointer-events: none;
}

.p-hair-cycle__inner {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-hair-cycle__title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 46px;
  color: #22211F;
  text-align: center;
  margin-bottom: 25px;
}

.p-hair-cycle__title-accent {
  font-size: 25px;
}

.p-hair-cycle__content {
  background-color: #FFFFFF;
  border-radius: 10px 10px 0 0;
  padding: 20px;
}

@media screen and (min-width: 768px) {
  
  .p-hair-cycle__content {
    padding: clamp(30px, calc(-130px + 20.83vw), 120px);
  }
}

.p-hair-cycle__diagram {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}

.p-hair-cycle__message {
  position: relative;
  background-color: #A3859B;
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.6;
  margin-top: 20px;
}

.p-hair-cycle__message::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 14px 6px;
  border-color: transparent transparent #A3859B transparent;
}

.p-care-24h {
  width: 100%;
  padding: 44px 20px 40px;
  background-color: #FFFFFF;
}

.p-care-24h__inner {
  max-width: 430px;
  margin: 0 auto;
}

.p-care-24h__title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 46px;
  color: #22211F;
  text-align: center;
  margin-bottom: 50px;
}

.p-care-24h__title-accent {
  font-size: 25px;
}

.p-care-24h__points {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.c-care-point {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 345px;
  margin: 0 auto;
}

.c-care-point__image {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
}

.c-care-point__image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-care-point__content {
  flex: 1;
  min-width: 0;
}

.c-care-point__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #CD7E9A;
  text-align: center;
  margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
  .c-care-point__label  {
    font-size: 18px;
  }
}

.c-care-point__icon {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin: 0 auto 8px;
}

.c-care-point__icon[src$="care-icon-2.png"] {
  width: clamp(50px, calc(23.33px + 2.22vw), 56px);
}

.c-care-point__usage {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #3D2F12;
  text-align: center;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #CD7E9A;
}

@media screen and (min-width: 768px) {
  .c-care-point__usage  {
    font-size: 20px;
  }
}

.c-care-point__usage-suffix {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .c-care-point__usage-suffix  {
    font-size: 14px;
  }
}

.c-care-point__description {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #3D2F12;
  text-align: center;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .c-care-point__description  {
    font-size: 16px;
  }
}

.c-section-title__label--narrow {
  letter-spacing: 0.14em;
  padding: 3px 44px;
}

.p-how-to-use {
  position: relative;
  width: 100%;
  padding: 44px 0 20px;
}

.p-how-to-use::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, #f4e8df 0%, #f2d1e9 100%);
  -webkit-mask-image: linear-gradient(to top, transparent 0px, #000 400px);
  mask-image: linear-gradient(to top, transparent 0px, #000 400px);
  pointer-events: none;
}

.p-how-to-use__inner {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 15px;
}

.p-how-to-use__title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 32px;
  color: #22211F;
  text-align: center;
  margin-bottom: 40px;
}

.p-how-to-use__content {
  margin-bottom: 30px;
  border-radius: 10px;
}

.p-how-to-use__row {
  display: flex;
  gap: 15px;
  margin-bottom: 16px;
}

.p-how-to-use__illustration {
  flex-shrink: 0;
  width: 140px;
}

.p-how-to-use__illustration-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.p-how-to-use__instructions {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-how-to-use__step {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-how-to-use__step-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #CD7E9A;
  line-height: 1.44;
}

.p-how-to-use__step-highlight {
  color: #3D2F12;
}

.p-how-to-use__step-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #3D2F12;
  line-height: 1.43;
}

.p-how-to-use__description {
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #110D03;
  line-height: 1.43;
}

.p-how-to-use__notice {
  background-color: #FFFFFF;
  border-radius: 10px 10px 0 0;
  padding: 20px;
}

.p-how-to-use__notice-title {
  font-family: 'Arial', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #110D03;
  line-height: 19px;
  margin-bottom: 8px;
}

.p-how-to-use__notice-text {
  font-family: 'Arial', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #110D03;
  line-height: 19px;
}

.p-how-to-use__notice-bullet {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 3px;
  vertical-align: middle;
  border-radius: 50%;
  background-color: currentColor;
  font-size: 0; 
  line-height: 0;
}

.p-gentle-design {
  width: 100%;
  padding: 100px 10px 75px;
  background-color: #FFFFFF;
}

.p-gentle-design__inner {
  max-width: 430px;
  margin: 0 auto;
  position: relative;
}

.p-gentle-design__title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.5;
  color: #22211F;
  text-align: center;
  margin-bottom: 20px;
  padding: 0 10px;
}

.p-gentle-design__description {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #3D2F12;
  text-align: left;
  line-height: 1.6;
  margin-bottom: 24px;
  padding: 0 6px;
}

.p-gentle-design__note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: #A3859B;
  text-align: right;
  padding-right: 10px;
  margin-top: 8px;
}

.c-gentle-badge {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.p-gentle-design__inner::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 5px;
  width: 345px;
  height: 173px;
  background-color: #F6EDF4;
  border-radius: 10px 10px 0 10px;
  z-index: -1;
}

.p-gentle-design__inner::after {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  width: 56px;
  height: 56px;
  background-color: #F6EDF4;
  border-radius: 50%;
  z-index: -1;
}

.p-campaign {
  position: relative;
  width: 100%;
  padding: 0;
}

.p-campaign::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(241, 216, 228, 1) 0%, rgba(197, 235, 243, 1) 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0px, #000 150px);
  mask-image: linear-gradient(to bottom, transparent 0px, #000 150px);
  pointer-events: none;
}

.p-campaign__inner {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 15px 30px;
}

.p-campaign__header {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 20px 20px 0 0;
  padding: 20px 30px 0px;
  margin-bottom: 0;
}

.p-campaign__header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  width: calc(100% + 2px);
  height: 207px;
  background-image: url('../img/campaign-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.4;
  border-radius: 20px 20px 0 0;
  pointer-events: none;
}

.p-campaign__subtitle {
  position: relative;
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: #6B4C16;
  text-align: center;
  line-height: 1.47;
  margin-bottom: 16px;
  z-index: 1;
}

.p-campaign__subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 5px;
  background-image: url('../img/campaign-title-line.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.p-campaign__title {
  position: relative;
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
  font-weight: 600;
  font-size: 68px;
  color: #A68C1D;
  text-align: center;
  line-height: 1.44;
  
  margin-bottom: -12px;
  z-index: 1;
}

.p-campaign__title-sub {
  position: relative;
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
  font-weight: 600;
  font-size: 36px;
  color: #B4931E;
  text-align: center;
  line-height: 1.44;
  z-index: 1;
}

.p-campaign__illustration {
  display: block;
  width: calc(100% + 60px);
  max-width: 300px;
  height: auto;
}

.p-campaign__trial {
  position: relative;
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
  font-weight: 800;
  font-size: 50px;
  color: #CD7E9A;
  text-align: center;
  line-height: 1;
  margin-bottom: 16px;
  z-index: 1;
}

.p-campaign__trial::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 304px;
  height: 1px;
  background-color: #D9D9D9;
}

.p-campaign__trial-small {
  font-size: 18px;
  color: #694F10;
}

.p-campaign__trial-large {
  font-size: 24px;
  color: #694F10;
}

.p-campaign__total {
  position: relative;
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: #694F10;
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
  z-index: 1;
}

.p-campaign__total::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 304px;
  height: 1px;
  background-color: #D9D9D9;
}

.p-campaign__total-number {
  font-size: 50px;
  color: #CD7E9A;
}

.p-campaign__total-text {
  font-size: 18px;
}

.p-campaign__products {
  background-color: #FFFFFF;
  padding: 20px 34px 10px;
}

.p-campaign__product-images {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.p-campaign__product-image {
  width: auto;
  height: auto;
  max-height: 290px;
}

.p-campaign__period {
  background-color: #FFFFFF;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.p-campaign__period-item {
  position: relative;
  border-radius: 10px;
  padding: 8px 0 3px;
}

.p-campaign__period-item--receipt {
  background-color: #A3859B;
}

.p-campaign__period-item--receipt::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7px 0px 7px;
  border-color: #A3859B transparent transparent transparent;
}

.p-campaign__period-item--apply {
  background-color: #CD7E9A;
}

.p-campaign__period-item--apply::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7px 0px 7px;
  border-color: #CD7E9A transparent transparent transparent;
}

.p-campaign__period-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.19;
  margin-bottom: 8px;
}

.p-campaign__period-date {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 22px;
  text-align: center;
  line-height: 1.45;
  white-space: nowrap;
}

.p-campaign__period-date--receipt {
  color: #a3859b;
}

.p-campaign__period-date--apply {
  color: #cd7e9a;
}

.p-campaign__details {
  background-color: #FFFFFF;
  padding: 24px 20px;
}

.p-campaign__details-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #1B1B1B;
  text-align: left;
}

.p-campaign__target {
  background-color: #FFFFFF;
  padding: 20px 20px 30px;
}

.p-campaign__target-title {
  background-color: #A3859B;
  border-radius: 10px;
  padding: 12px 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 16px;
}

.p-campaign__target-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #A3859B;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 24px;
}

.c-package-divider {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #84765F;
  text-align: center;
  margin: 24px 0 16px;
  padding: 3px 0;
  border-top: 1px solid #84765F;
  border-bottom: 1px solid #84765F;
}

.c-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}

.c-product-card {
  text-align: left;
}

.c-product-card__image {
  width: 100%;
  max-width: 130px;
  height: auto;
  margin: 0 auto 12px;
  display: block;
}

@media (max-width: 749px) {
  .c-product-grid:first-of-type .c-product-card:nth-child(2) .c-product-card__image {
    max-width: 136px;
  }
}

.c-product-card__name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #1B1B1B;
  line-height: 1.5;
  margin-bottom: 8px;
}

.c-product-card__price {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #1B1B1B;
  line-height: 1.5;
  margin-bottom: 8px;
}

.c-product-card__jan {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #1B1B1B;
  line-height: 1.5;
}

.c-product-card__jan-num {
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  color: #1B1B1B;
}

.p-campaign__target-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #1B1B1B;
  line-height: 1.7;
  margin-top: 20px;
}

.p-campaign__product-link {
  background-color: #FFFFFF;
}

.p-campaign__product-link-inner {
  max-width: 313px;
  margin: 0 auto;
  padding: 22px 0 32px;
  border-top: 1px solid #CD7E9A;
  border-bottom: 1px solid #CD7E9A;
}

.c-product-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 58px;
  border-radius: 29px;
  background: linear-gradient(90deg, #ED86B7 0%, #57C2E2 100%);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.c-product-link:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.3);
}

.c-product-link::after {
  content: '';
  position: absolute;
  inset: 0px;
  border: 1px solid #FFFFFF;
  border-radius: 28px;
  pointer-events: none;
}

.c-product-link__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #FFFFFF;
}

.c-product-link__icon {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  font-size: 11px;
  line-height: 1;
  color: #FFFFFF;
}

.c-inline-link {
  color: #3E7DBF;
  text-decoration: underline;
}

.p-campaign__apply {
  background-color: #FFFFFF;
  padding: 30px 20px;
  border-radius: 0 0 20px 20px;
}

.c-step-list {
  list-style: none;
  margin: 20px 0 30px;
}

.c-step {
  display: flex;
  gap: 15px;
}

.c-step__media {
  flex-shrink: 0;
  width: 150px;
}

.c-step__icon {
  width: 100%;
  height: auto;
  display: block;
}

.c-step__body {
  flex: 1;
  padding-top: 4px;
}

.c-step__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #CD7E9A;
  margin-bottom: 8px;
  white-space: nowrap;
}

.c-step__label-tag {
  font-size: 12px;
  color: #CD7E9A;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-right: 4px;
}

.c-step__label-space {
  font-size: 0.5em;
}

.c-step__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #1B1B1B;
  line-height: 1.6;
}

.c-step__arrow {
  width: 150px;
  text-align: center;
  color: #CD7E9A;
  font-size: 12px;
  margin: 8px 0;
}

.c-apply-period__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #A3859B;
  text-align: center;
  padding: 2px 0;
  border-top: 1px solid #A3859B;
  border-bottom: 1px solid #A3859B;
  margin-bottom: 16px;
}

.c-apply-period__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #1B1B1B;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 16px;
}

.c-apply-period__highlight {
  display: inline-block;
  margin-top: -4px;
  font-weight: 500;
  font-size: 18px;
  color: #CD7E9A;
}

.c-apply-period__highlight-unit {
  font-size: 14px;
}

.c-apply-period__example {
  background-color: #A3859B;
  color: #FFFFFF;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  border-radius: 20px;
  margin: 0 40px 10px;
}

.c-apply-calendar__image {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.c-button--apply {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 100%;
  max-width: 335px;
  height: 60px;
  margin: 0 auto 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, #EE6790 0%, #CE597D 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
  border: none;
}

.c-button--apply .c-button__text {
  font-size: 20px;
}

.c-button__arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  border-top-right-radius: 2px;
  transform: rotate(45deg);
}

.c-notice-list {
  margin-bottom: 24px;
}

.c-notice-list__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #1B1B1B;
  margin-bottom: 10px;
}

.c-notice-list__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-notice-list__items li {
  position: relative;
  padding-left: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #2d2d2d;
  line-height: 1.6;
}

.c-notice-list__items li::before {
  content: '・';
  position: absolute;
  left: 0;
}

.c-terms-box {
  border: 1px solid #C4BCB6;
  padding: 12px 12px;
  max-height: 165px;
  overflow-y: auto;
}

.c-terms-box__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #1B1B1B;
  text-align: center;
  margin-bottom: 12px;
}

.c-terms-box__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #2d2d2d;
  line-height: 1.8;
}

.p-campaign__contact {
  background-color: #FFFFFF;
  border-radius: 20px;
  margin-top: 20px;
  padding: 30px 24px;
  text-align: center;
}

.c-contact-box__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #CD7E9A;
  margin-bottom: 16px;
}

.c-contact-box__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #1B1B1B;
  line-height: 1.5;
  margin-bottom: 20px;
}

.c-contact-box__row {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #1B1B1B;
  line-height: 1.8;
  margin-bottom: 14px;
}

.c-contact-box__mail {
  color: #3E7DBF;
  text-decoration: underline;
  word-break: break-all;
  font-size: 18px;
}

.c-contact-box__tel {
  position: relative;
  top: -8px;
  font-size: 24px;
  font-weight: 500;
  color: #1B1B1B;
}

.c-contact-box__hours {
  position: relative;
  top: -20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #1B1B1B;
  line-height: 1.8;
  margin-bottom: 16px;
}

.c-contact-box__note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #5A5A5A;
  line-height: 1.7;
  text-align: left;
}

.p-shoplist {
  width: 100%;
  padding: 44px 15px 40px;
  background-color: #FFFFFF;
}

.p-shoplist__inner {
  max-width: 430px;
  margin: 0 auto;
}

.p-shoplist__title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 30px;
  color: #5C4C31;
  text-align: center;
  margin-bottom: 20px;
}

.p-shoplist__description {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #3D2F12;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 16px;
}

.p-shoplist__note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #84765F;
  line-height: 1.7;
  margin-bottom: 24px;
}

.p-shoplist__note-highlight {
  font-size: 14px;
  font-weight: 500;
  color: #CD7E9A;
}

.c-accordion {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 11px;
}

.c-accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 12px;
  background-color: #F8F7F7;
  border: 1px solid #E9C9D6;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #3D2F12;
  text-align: left;
  letter-spacing: -0.03em;
}

.c-accordion__icon {
  color: #3D2F12;
  font-size: 16px;
}

.c-accordion__header--static {
  cursor: default;
  color: #FFFFFF;
  background-color: #cd7e9a;
  border: none;
}

.c-accordion__item {
  display: flex;
  flex-direction: column;
}

.c-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.c-accordion__header[aria-expanded="true"] + .c-accordion__panel {
  grid-template-rows: 1fr;
}

.c-accordion__panel-inner {
  min-height: 0;
  overflow: hidden;
}

.c-shop-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #E9C9D6;
  border-top: none;
  
  border-right: none;
  border-bottom: none;
  table-layout: fixed;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #1B1B1B;
}

.c-shop-table td {
  width: 50%;
  padding: 13px 8px;
  border: 1px solid #E9C9D6;
  border-top: none;
  text-align: center;
  line-height: 1.5;
}

.c-shop-table td.c-shop-table__empty {
  border: none;
}

.c-shop-table a {
  color: #1B1B1B;
  text-decoration: none;
}

.c-shop-table a:hover {
  color: #CD7E9A;
  text-decoration: underline;
}

.c-shop-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.c-shop-logos__link {
  display: block;
  border: 1px solid #E8D0D0;
  overflow: hidden;
}

.c-shop-logos__link:hover {
  opacity: 1;
}

.c-shop-logos__item {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.c-shop-logos__link:hover .c-shop-logos__item {
  transform: scale(1.06);
}

.p-consultation {
  width: 100%;
  padding: 30px 20px;
  background: linear-gradient(90deg, #f4e8df 0%, #f2d1e9 100%);
}

.p-consultation__inner {
  max-width: 430px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
}

.p-consultation__title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 20px;
  color: #3D2F12;
  margin-bottom: 8px;
}

.p-consultation__tel {
  position: relative;
  top: -5px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 34px;
  color: #3D2F12;
  padding-bottom: 6px;
  margin-bottom: 6px;
  border-bottom: 1px solid #e8d0d0;
}

.p-consultation__hours {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #3D2F12;
  line-height: 1.7;
  margin-bottom: 10px;
}

.p-consultation__note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #84765F;
  line-height: 1.6;
}

.l-site-footer {
  width: 100%;
  padding: 35px 20px 80px;
  background-color: #fafafa;
  text-align: center;
}

.l-site-footer__inner {
  max-width: 430px;
  margin: 0 auto;
}

.l-site-footer__logo {
  width: 95px;
  height: auto;
  margin: 0 auto 16px;
}

.l-site-footer__company {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #313131;
  margin-bottom: 8px;
}

.l-site-footer__address {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #313131;
  line-height: 1.6;
  margin-bottom: 20px;
}

.l-site-footer__sns {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin-bottom: 20px;
}

.l-site-footer__sns-icon {
  display: block;
  width: 60px;
  height: 60px;
}

.l-site-footer__sns a {
  display: block;
  line-height: 0;
}

.l-site-footer__copyright {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #5A5A5A;
  letter-spacing: 0.1em;
}

@media (min-width: 750px) {
  .l-site-footer {
    padding: clamp(35px, calc(20.42px + 1.94vw), 43.75px) 20px clamp(80px, calc(46.67px + 4.44vw), 100px);
  }
  .l-site-footer__inner {
    max-width: clamp(375px, calc(218.75px + 20.83vw), 468.75px);
  }
  .l-site-footer__logo {
    width: clamp(95px, calc(55.42px + 5.28vw), 118.75px);
    margin-bottom: clamp(16px, calc(9.33px + 0.89vw), 20px);
  }
  .l-site-footer__company {
    font-size: clamp(14px, calc(8.17px + 0.78vw), 17.5px);
    margin-bottom: clamp(8px, calc(4.67px + 0.44vw), 10px);
  }
  .l-site-footer__address {
    font-size: clamp(16px, calc(9.33px + 0.89vw), 20px);
    margin-bottom: clamp(20px, calc(11.67px + 1.11vw), 25px);
  }
  .l-site-footer__sns {
    gap: clamp(30px, calc(17.5px + 1.67vw), 37.5px);
    margin-bottom: clamp(20px, calc(11.67px + 1.11vw), 25px);
  }
  .l-site-footer__sns-icon {
    width: clamp(60px, calc(35px + 3.33vw), 75px);
    height: clamp(60px, calc(35px + 3.33vw), 75px);
  }
  .l-site-footer__copyright {
    font-size: clamp(11px, calc(6.42px + 0.61vw), 13.75px);
  }
}

@media (min-width: 750px) {
  
  .l-header {
    padding: 30px 40px;
  }
  .l-header__inner {
    max-width: 1120px;
  }
  .p-drawer__panel {
    padding: 80px 24px 32px;
  }

  .p-hero {
    padding: 0 40px clamp(50px, calc(29.2px + 2.78vw), 62px);
  }
  .p-hero__inner {
    max-width: 1120px;
  }

  .c-logo-box {
    max-width: 1010px;
    margin: 0 auto clamp(48px, calc(28px + 2.67vw), 60px);
  }
  .c-logo-box__ribbon {
    font-size: clamp(24px, calc(14px + 1.33vw), 30px);
  }
  .c-logo-box__subtitle {
    font-size: clamp(18px, calc(10.5px + 1vw), 22.5px);
  }

  .p-hero__main {
    display: grid;
    grid-template-columns: auto minmax(clamp(300px, calc(175px + 16.67vw), 375px), clamp(400px, calc(233px + 22.22vw), 500px));
    grid-template-areas:
      "products title"
      "products sales";
    justify-content: center;
    align-content: center;
    column-gap: clamp(60px, calc(35px + 3.33vw), 75px);
    row-gap: clamp(28px, calc(16.33px + 1.56vw), 35px);
  }
  .p-hero__title {
    grid-area: title;
    left: 0;
    text-align: center;
    font-size: clamp(40px, calc(23.33px + 2.22vw), 50px);
    line-height: 1.5;
    margin-top: clamp(15px, calc(8.75px + 0.83vw), 19px);
    margin-bottom: 0;
  }
  .p-hero__title-particle {
    font-size: clamp(32px, calc(18.67px + 1.78vw), 40px);
  }
  .p-hero__title-underline::after {
    height: clamp(3px, calc(1.75px + 0.17vw), 4px);
    bottom: 2px;
  }
  .p-hero__products {
    grid-area: products;
    align-self: center;
    margin-top: 0;
    gap: clamp(16px, calc(9.33px + 0.89vw), 20px);
  }
  .p-hero__product-image {
    max-height: clamp(360px, calc(210px + 20vw), 450px);
  }
  .p-hero__sales {
    grid-area: sales;
    align-self: start;
    margin-top: clamp(-25px, calc(-11.67px - 1.11vw), -20px);
  }
  .p-hero__sales-image {
    max-width: clamp(340px, calc(198.33px + 18.89vw), 425px);
    margin: 0 0 clamp(12px, calc(7px + 0.67vw), 15px) clamp(15px, calc(8.75px + 0.83vw), 19px);
  }
  .p-hero__sales-note {
    text-align: left;
    font-size: clamp(11px, calc(6.42px + 0.61vw), 14px);
  }

  .p-sales {
    padding: clamp(8px, calc(4.67px + 0.44vw), 10px) 40px clamp(48px, calc(28px + 2.67vw), 60px);
  }
  .p-sales__inner {
    max-width: 1000px;
  }
  .p-sales__feature {
    margin-bottom: clamp(24px, calc(14px + 1.33vw), 30px);
  }
  .p-sales__feature-image {
    max-width: clamp(440px, calc(256.67px + 24.44vw), 550px);
  }
  .p-sales__description {
    font-size: clamp(30px, calc(17.5px + 1.67vw), 37.5px);
    margin-bottom: clamp(24px, calc(14px + 1.33vw), 30px);
  }
  .p-sales__description sup {
    font-size: clamp(16px, calc(9.33px + 0.89vw), 20px);
  }
  
  .p-sales__description br {
    display: none;
  }
  .p-sales__disclaimer {
    margin: 0 auto;
    font-size: clamp(11px, calc(6.42px + 0.61vw), 13.75px);
  }

  .p-cta {
    padding: 8px 40px 64px;
  }
  .p-cta__inner {
    max-width: 1120px;
  }
  .p-cta .c-button {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (min-width: 750px) {
  .p-products {
    background-color: #FFFFFF;
    padding: 64px 20px 80px;
  }

  .p-products__inner {
    max-width: clamp(960px, calc(560px + 53.33vw), 1200px);
  }
  .p-products__title {
    font-size: clamp(40px, calc(23.33px + 2.22vw), 50px);
    margin-bottom: clamp(44px, calc(25.67px + 2.44vw), 55px);
    padding: 0;
  }
  
  .p-eyelashTab__buttons {
    justify-content: center;
    padding-left: 0;
  }
  
  .p-eyelashTab__button {
    width: min(clamp(470px, calc(274.2px + 26.11vw), 587.5px), 46vw);
    height: clamp(74px, calc(43.17px + 4.11vw), 92.5px);
    font-size: clamp(16px, calc(9.33px + 0.89vw), 20px);
    padding: clamp(10px, calc(5.83px + 0.56vw), 12.5px) clamp(12px, calc(7px + 0.67vw), 15px);
  }
  .p-eyelashTab__buttons--repeat .p-eyelashTab__button,
  .p-eyelashTab__buttons--repeat .p-eyelashTab__button--active {
    height: clamp(70px, calc(40.83px + 3.89vw), 87.5px);
  }

  .p-product-detail {
    gap: clamp(40px, calc(23.33px + 2.22vw), 50px);
    padding: clamp(50px, calc(29.17px + 2.78vw), 62.5px) 0;
    align-items: flex-start;
    justify-content: center;
    max-width: clamp(690px, calc(402.5px + 38.33vw), 862.5px);
    margin-left: auto;
    margin-right: auto;
  }
  .p-product-detail__image-main {
    width: clamp(138px, calc(80.5px + 7.67vw), 172.5px);
  }
  .p-product-detail__content {
    flex: 0 1 clamp(440px, calc(256.67px + 24.44vw), 550px);
    max-width: clamp(440px, calc(256.67px + 24.44vw), 550px);
    padding-top: clamp(24px, calc(14px + 1.33vw), 30px);
  }
  .p-product-detail__title {
    font-size: clamp(36px, calc(21px + 2vw), 45px);
  }
  .p-product-detail__title-main {
    font-size: clamp(32px, calc(18.67px + 1.78vw), 40px);
  }
  .p-product-detail__description {
    font-size: clamp(18px, calc(10.5px + 1vw), 22.5px);
    letter-spacing: normal;
    line-height: clamp(32px, calc(18.67px + 1.78vw), 40px);
  }
  .p-product-detail__note {
    font-size: clamp(11px, calc(6.42px + 0.61vw), 13.75px);
  }

  .c-feature {
    max-width: clamp(960px, calc(560px + 53.33vw), 1200px);
    padding: clamp(40px, calc(23.33px + 2.22vw), 50px) clamp(20px, calc(11.67px + 1.11vw), 25px) clamp(28px, calc(16.33px + 1.56vw), 35px);
  }
  
  .c-feature-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: clamp(20px, calc(11.67px + 1.11vw), 25px);
    align-items: stretch;
  }
  .c-feature-row .c-feature {
    max-width: none;
    margin: 0;
    height: 100%;
  }
  
  .c-feature-row .c-feature--brush .c-feature__accent-circle {
    position: static;
    display: block;
    margin: clamp(12px, calc(7px + 0.67vw), 15px) auto 0;
    transform: none;
  }

  .c-feature__number-circle {
    width: clamp(46px, calc(26.83px + 2.56vw), 57.5px);
    height: clamp(46px, calc(26.83px + 2.56vw), 57.5px);
    padding-bottom: clamp(4px, calc(2.33px + 0.22vw), 5px);
    font-size: clamp(28px, calc(16.33px + 1.56vw), 35px);
  }
  .c-feature__number-circle::before {
    inset: clamp(3px, calc(1.75px + 0.17vw), 3.75px);
  }
  .c-feature__title {
    font-size: clamp(34px, calc(19.83px + 1.89vw), 42.5px);
    margin-bottom: clamp(16px, calc(9.33px + 0.89vw), 20px);
  }
  .c-feature__description {
    font-size: clamp(16px, calc(9.33px + 0.89vw), 20px);
  }
  .c-feature__badge {
    height: clamp(54px, calc(31.5px + 3vw), 67.5px);
    max-width: clamp(540px, calc(315px + 30vw), 675px);
    margin-bottom: clamp(16px, calc(9.33px + 0.89vw), 20px);
  }
  .c-feature__badge--secondary {
    margin-top: clamp(5px, calc(2.92px + 0.28vw), 6.25px);
  }
  .c-feature__badge-text {
    font-size: clamp(22px, calc(12.83px + 1.22vw), 27.5px);
  }
  .c-feature__plants {
    grid-template-columns: repeat(3, clamp(130px, calc(75.83px + 7.22vw), 162.5px));
    gap: clamp(7px, calc(4.08px + 0.39vw), 8.75px);
  }
  .c-feature__plants-image {
    margin-bottom: clamp(10px, calc(5.83px + 0.56vw), 12.5px);
  }
  .c-feature__note {
    font-size: clamp(14px, calc(8.17px + 0.78vw), 17.5px);
    margin-bottom: clamp(16px, calc(9.33px + 0.89vw), 20px);
  }
  .c-feature__plus {
    font-size: clamp(60px, calc(35px + 3.33vw), 75px);
  }
  .c-feature__subtitle {
    font-size: clamp(16px, calc(9.33px + 0.89vw), 20px);
    margin-bottom: clamp(16px, calc(9.33px + 0.89vw), 20px);
  }
  .c-feature__accent-circle {
    width: clamp(84px, calc(49px + 4.67vw), 105px);
    height: clamp(84px, calc(49px + 4.67vw), 105px);
  }
}

@media (min-width: 750px) {
  
  .p-hair-cycle {
    padding: clamp(64px, calc(37.33px + 3.56vw), 80px) 20px clamp(88px, calc(51.33px + 4.89vw), 110px);
  }
  .p-hair-cycle__inner {
    max-width: clamp(900px, calc(525px + 50vw), 1125px);
  }
  .p-hair-cycle__diagram {
    margin-bottom: clamp(24px, calc(14px + 1.33vw), 30px);
  }
  .p-hair-cycle__title {
    font-size: clamp(40px, calc(23.33px + 2.22vw), 50px);
    line-height: clamp(56px, calc(32.67px + 3.11vw), 70px);
    margin-bottom: clamp(44px, calc(25.67px + 2.44vw), 55px);
  }
  .p-hair-cycle__title-accent {
    font-size: clamp(31px, calc(18.08px + 1.72vw), 38.75px);
  }
  .p-hair-cycle__message {
    font-size: clamp(20px, calc(11.67px + 1.11vw), 25px);
    padding: clamp(14px, calc(8.17px + 0.78vw), 17.5px) clamp(16px, calc(9.33px + 0.89vw), 20px);
  }
}

@media (min-width: 750px) {
  
  .p-care-24h {
    padding: clamp(64px, calc(37.33px + 3.56vw), 80px) 20px clamp(80px, calc(46.67px + 4.44vw), 100px);
  }
  .p-care-24h__inner {
    max-width: clamp(1120px, calc(653.33px + 62.22vw), 1400px);
  }
  .p-care-24h__title {
    font-size: clamp(40px, calc(23.33px + 2.22vw), 50px);
    line-height: 1.4;
    margin-bottom: clamp(56px, calc(32.67px + 3.11vw), 70px);
  }
  .p-care-24h__title-accent {
    font-size: clamp(31px, calc(18.08px + 1.72vw), 38.75px);
  }
  .p-care-24h__points {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(40px, calc(23.33px + 2.22vw), 50px);
  }
  .c-care-point {
    flex: 1 1 0;
    max-width: clamp(346px, calc(201.83px + 19.22vw), 432.5px);
    margin: 0;
    gap: clamp(8px, calc(4.67px + 0.44vw), 10px);
  }
  .c-care-point__image {
    width: clamp(130px, calc(75.83px + 7.22vw), 162.5px);
    height: clamp(130px, calc(75.83px + 7.22vw), 162.5px);
  }
  .c-care-point__label {
    font-size: clamp(18px, calc(10.5px + 1vw), 22.5px);
  }
  .c-care-point__icon {
    width: clamp(40px, calc(23.33px + 2.22vw), 50px);
    height: clamp(40px, calc(23.33px + 2.22vw), 50px);
  }
  .c-care-point__usage {
    font-size: clamp(20px, calc(11.67px + 1.11vw), 25px);
  }
  .c-care-point__usage-suffix {
    font-size: clamp(14px, calc(8.17px + 0.78vw), 17.5px);
  }
  .c-care-point__description {
    font-size: clamp(16px, calc(9.33px + 0.89vw), 20px);
  }
}

@media (min-width: 750px) {
  
  .p-how-to-use {
    padding: clamp(64px, calc(37.33px + 3.56vw), 80px) 20px clamp(10px, calc(5.83px + 0.56vw), 12.5px);
  }
  .p-how-to-use__inner {
    max-width: clamp(960px, calc(560px + 53.33vw), 1200px);
  }
  .p-how-to-use__title {
    font-size: clamp(40px, calc(23.33px + 2.22vw), 50px);
    letter-spacing: 0.1em;
    margin-bottom: clamp(44px, calc(25.67px + 2.44vw), 55px);
  }
  .p-how-to-use__row {
    gap: clamp(70px, calc(40.83px + 3.89vw), 87.5px);
    margin-bottom: clamp(28px, calc(16.33px + 1.56vw), 35px);
    
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
  }
  .p-how-to-use__illustration {
    width: clamp(230px, calc(134.17px + 12.78vw), 287.5px);
  }
  .p-how-to-use__instructions {
    gap: clamp(22px, calc(12.83px + 1.22vw), 27.5px);
    padding-top: clamp(8px, calc(4.67px + 0.44vw), 10px);
  }
  .p-how-to-use__step-title {
    font-size: clamp(24px, calc(14px + 1.33vw), 30px);
  }
  .p-how-to-use__step-text {
    font-size: clamp(18px, calc(10.5px + 1vw), 22.5px);
  }
  .p-how-to-use__description {
    font-size: clamp(18px, calc(10.5px + 1vw), 22.5px);
    line-height: 1.9;
    margin-top: clamp(8px, calc(4.67px + 0.44vw), 10px);
  }
  .p-how-to-use::before {
    -webkit-mask-image: linear-gradient(to top, transparent 0px, #000 800px);
    mask-image: linear-gradient(to top, transparent 0px, #000 800px);
  }
  .p-how-to-use__notice-title {
    font-size: clamp(14px, calc(8.17px + 0.78vw), 17.5px);
  }
  .p-how-to-use__notice-text {
    font-size: clamp(14px, calc(8.17px + 0.78vw), 17.5px);
    line-height: clamp(19px, calc(11.08px + 1.06vw), 23.75px);
  }
  .p-how-to-use__notice-bullet {
    width: clamp(10px, calc(5.83px + 0.56vw), 12.5px);
    height: clamp(10px, calc(5.83px + 0.56vw), 12.5px);
  }
}

@media (min-width: 750px) {
  
  .p-gentle-design {
    padding: clamp(64px, calc(37.33px + 3.56vw), 80px) 20px clamp(88px, calc(51.33px + 4.89vw), 110px);
  }
  .p-gentle-design__inner {
    max-width: clamp(700px, calc(408.33px + 38.89vw), 875px);
  }
  
  .p-gentle-design__inner::before,
  .p-gentle-design__inner::after {
    content: none;
  }
  .p-gentle-design__title {
    font-size: clamp(40px, calc(23.33px + 2.22vw), 50px);
    margin-bottom: clamp(24px, calc(14px + 1.33vw), 30px);
  }
  .p-gentle-design__description {
    text-align: center;
    font-size: clamp(15px, calc(8.75px + 0.83vw), 18.75px);
    margin-bottom: clamp(36px, calc(21px + 2vw), 45px);
  }
  .c-gentle-badge {
    max-width: clamp(600px, calc(350px + 33.33vw), 750px);
    margin: 0 auto;
  }
  .p-gentle-design__note {
    max-width: clamp(600px, calc(350px + 33.33vw), 750px);
    margin: clamp(8px, calc(4.67px + 0.44vw), 10px) auto 0;
    padding-right: 0;
    font-size: clamp(12px, calc(7px + 0.67vw), 15px);
  }
}

@media (min-width: 750px) {
  .p-campaign__inner {
    max-width: 960px;
    padding: 0 15px 64px;
  }
  
  .p-campaign__inner > div {
    padding-left: 20px;
    padding-right: 20px;
  }

  .p-campaign__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "subtitle subtitle"
      "title    title"
      "titlesub titlesub"
      "illust   trial"
      "illust   total";
    justify-items: center;
    align-items: center;
    column-gap: 24px;
    padding: 40px 50px 0;
  }
  .p-campaign__header::before {
    height: 300px;
    
    -webkit-mask-image: linear-gradient(to top, transparent 0px, #000 100px);
    mask-image: linear-gradient(to top, transparent 0px, #000 100px);
  }
  .p-campaign__subtitle {
    grid-area: subtitle;
    font-size: 20px;
    margin-bottom: 24px;
  }
  .p-campaign__subtitle::after {
    width: 500px;
    bottom: -12px;
  }
  .p-campaign__title {
    grid-area: title;
    font-size: 82px;
    
  }
  .p-campaign__title-sub {
    grid-area: titlesub;
    font-size: 40px;
    margin-bottom: 36px;
  }
  .p-campaign__illustration {
    grid-area: illust;
    width: 100%;
    max-width: 300px;
    margin: 0;
    align-self: center;
  }
  .p-campaign__trial {
    grid-area: trial;
    align-self: end;
    justify-self: stretch;
    margin-bottom: 0;
  }
  .p-campaign__trial::after {
    width: 100%;
  }
  .p-campaign__total {
    grid-area: total;
    align-self: start;
    justify-self: stretch;
    margin-top: 16px;
  }
  .p-campaign__total::after {
    width: 100%;
  }

  .p-campaign__products {
    padding: 40px 50px 5px;
  }
  .p-campaign__product-images {
    gap: 16px;
    margin-bottom: 0;
  }
  .p-campaign__product-image {
    max-height: 392px;
  }

  .p-campaign__period {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    align-items: start;
    column-gap: 40px;
    row-gap: 0;
    padding: 40px 50px;
  }
  .p-campaign__period-item {
    padding: 8px 0 3px;
    margin-bottom: 12px;
  }
  .p-campaign__period-title {
    font-size: 18px;
  }
  .p-campaign__period-date {
    font-size: 20px;
  }

  .p-campaign__product-link-inner {
    max-width: 890px;
    padding: 30px 0 34px;
  }
  .c-product-link__text {
    font-size: 20px;
  }
  .p-campaign__product-link-inner .c-product-link {
    max-width: 345px;
    height: 70px;
    margin: 0 auto;
    border-radius: 35px;
  }
  .p-campaign__product-link-inner .c-product-link::after {
    border-radius: 34px;
  }

  .p-campaign__details {
    padding: 40px 50px;
  }
  .p-campaign__details-text {
    font-size: 14px;
    line-height: 28px;
  }

  .p-campaign__target {
    padding: 40px 50px 40px;
  }
  .p-campaign__target-title {
    font-size: 16px;
    padding: 12px 0;
    margin-bottom: 20px;
  }
  .p-campaign__target-text {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .c-package-divider {
    font-size: 16px;
    margin: 32px 0 24px;
  }
  .c-product-grid {
    max-width: 760px;
    margin: 0 auto 8px;
    gap: 40px;
  }
  
  .c-product-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  .c-product-card__info {
    display: flex;
    flex-direction: column;
  }
  .c-product-card__image {
    max-width: 150px;
    margin: 0;
    flex-shrink: 0;
  }
  .c-product-grid:first-of-type .c-product-card:nth-child(1) .c-product-card__image {
    max-width: 120px;
  }
  .c-product-grid:first-of-type .c-product-card:nth-child(2) .c-product-card__image {
    max-width: 125px;
  }
  .c-product-card__name {
    font-size: 15px;
  }
  .c-product-card__price {
    font-size: 14px;
  }
  .c-product-card__jan {
    font-size: 12px;
  }
  .p-campaign__target-note {
    font-size: 14px;
    text-align: center;
    margin-top: 55px;
  }

  .p-campaign__contact {
    padding: 44px 60px;
    margin-top: 24px;
  }
  .c-contact-box__label {
    font-size: 16px;
  }
  .c-contact-box__title {
    font-size: 24px;
  }
  .c-contact-box__row {
    font-size: 15px;
  }
  .c-contact-box__mail {
    font-size: 22px;
  }
  .c-contact-box__tel {
    font-size: 34px;
    top: -15px;
  }
  .c-contact-box__hours {
    font-size: 15px;
    top: -30px;
  }
  .c-contact-box__note {
    font-size: 13px;
  }

  .p-campaign__apply {
    padding: 40px 50px 50px;
  }
  .c-step-list {
    margin: 24px 0 40px;
  }
  .c-step {
    gap: 30px;
    align-items: flex-start;
  }
  .c-step__body {
    padding-top: 0;
  }
  .c-step__media {
    width: 165px;
  }
  .c-step__arrow {
    width: 165px;
    font-size: 14px;
    margin: 10px 0;
  }
  .c-step__label {
    font-size: 22px;
  }
  .c-step__label-tag {
    font-size: 13px;
  }
  .c-step__text {
    font-size: 15px;
  }
  .c-apply-period__title {
    font-size: 19px;
  }
  .c-apply-period__text {
    font-size: 16px;
  }
  .c-apply-period__highlight {
    font-size: 20px;
  }
  .c-apply-period__highlight-unit {
    font-size: 16px;
  }
  .c-apply-period__example {
    max-width: 300px;
    margin: 0 auto 20px;
    font-size: 16px;
    padding: 8px;
  }
  .c-apply-calendar__image {
    margin-bottom: 40px;
  }
  .c-button--apply {
    max-width: 420px;
    height: 78px;
    margin-bottom: 40px;
    gap: 26px;
    border-radius: 39px;
  }
  .c-button--apply .c-button__text {
    font-size: 24px;
  }
  .c-button--apply .c-button__arrow {
    width: 15px;
    height: 15px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
  .c-notice-list__title {
    font-size: 15px;
  }
  .c-notice-list__items li {
    font-size: 14px;
  }
  .c-terms-box__text {
    font-size: 14px;
  }
}

@media (min-width: 750px) {

  .p-shoplist {
    padding: clamp(56px, calc(32.67px + 3.11vw), 70px) 20px clamp(80px, calc(46.67px + 4.44vw), 100px);
  }
  .p-shoplist__inner {
    max-width: clamp(960px, calc(560px + 53.33vw), 1200px);
  }
  .p-shoplist__title {
    font-size: clamp(42px, calc(24.5px + 2.33vw), 52.5px);
    margin-bottom: clamp(28px, calc(16.33px + 1.56vw), 35px);
  }
  .p-shoplist__description {
    font-size: clamp(20px, calc(11.67px + 1.11vw), 25px);
    margin-bottom: clamp(24px, calc(14px + 1.33vw), 30px);
  }
  .p-shoplist__note {
    font-size: clamp(15px, calc(8.75px + 0.83vw), 18.75px);
    margin-bottom: clamp(40px, calc(23.33px + 2.22vw), 50px);
  }
  .p-shoplist__note-highlight {
    font-size: clamp(15px, calc(8.75px + 0.83vw), 18.75px);
  }
  .c-accordion {
    gap: clamp(30px, calc(17.5px + 1.67vw), 37.5px);
    margin-bottom: clamp(15px, calc(8.75px + 0.83vw), 18.75px);
  }
  .c-accordion__header {
    position: relative;
    justify-content: center;
    padding: clamp(10px, calc(5.83px + 0.56vw), 12.5px) clamp(12px, calc(7px + 0.67vw), 15px);
    font-size: clamp(16px, calc(9.33px + 0.89vw), 20px);
    letter-spacing: normal;
  }
  .c-accordion__icon {
    position: absolute;
    top: 50%;
    right: clamp(12px, calc(7px + 0.67vw), 15px);
    transform: translateY(-50%);
    font-size: clamp(16px, calc(9.33px + 0.89vw), 20px);
  }
  .c-shop-table {
    font-size: clamp(15px, calc(8.75px + 0.83vw), 18.75px);
  }
  
  .c-shop-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, calc(11.67px + 1.11vw), 25px);
  }
  
  .c-shop-logos__link {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 400 / 130;
  }
}

@media (min-width: 750px) {

  .p-consultation {
    padding: clamp(50px, calc(29.17px + 2.78vw), 62.5px) 20px;
  }
  .p-consultation__inner {
    max-width: clamp(960px, calc(560px + 53.33vw), 1200px);
    border-radius: clamp(24px, calc(14px + 1.33vw), 30px);
    padding: clamp(24px, calc(14px + 1.33vw), 30px) clamp(40px, calc(23.33px + 2.22vw), 50px);
  }
  .p-consultation__title {
    font-size: clamp(20px, calc(11.67px + 1.11vw), 25px);
    margin-bottom: clamp(12px, calc(7px + 0.67vw), 15px);
  }
  .p-consultation__tel {
    max-width: clamp(315px, calc(183.75px + 17.5vw), 393.75px);
    margin: 0 auto clamp(4px, calc(2.33px + 0.22vw), 5px);
    padding-bottom: clamp(5px, calc(2.92px + 0.28vw), 6.25px);
    font-size: clamp(34px, calc(19.83px + 1.89vw), 42.5px);
    top: clamp(-18.75px, calc(-8.75px - 0.83vw), -15px);
  }
  .p-consultation__hours {
    position: relative;
    top: clamp(-12.5px, calc(-5.83px - 0.56vw), -10px);
    font-size: clamp(16px, calc(9.33px + 0.89vw), 20px);
    margin-bottom: clamp(8px, calc(4.67px + 0.44vw), 10px);
  }
  .p-consultation__note {
    position: relative;
    top: clamp(-6.25px, calc(-2.92px - 0.28vw), -5px);
    font-size: clamp(12px, calc(7px + 0.67vw), 15px);
  }
}

.js-reveal {
  opacity: 0;
  transition: opacity 0.75s ease-in-out, transform 0.75s ease-in-out;
}
.js-reveal--y { transform: translateY(30px); }   
.js-reveal--yt { transform: translateY(-30px); }  
.js-reveal--x { transform: translateX(-30px); }   
.js-reveal--xr { transform: translateX(30px); }    
.js-reveal.is-inview {
  opacity: 1;
  transform: none;
}

.js-reveal--d1 { transition-delay: 0.15s; }
.js-reveal--d2 { transition-delay: 0.3s; }
.js-reveal--d3 { transition-delay: 0.45s; }

.c-product-card.js-reveal {
  transition-duration: 1.2s;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
