@charset "UTF-8";

/*-----------------------------------
  fv
-----------------------------------*/
.p-fv {
  width: 100%;
  min-height: max(calc(var(--vh, 1vh) * 100), 760px);
  min-height: max(100svh, 760px);
  padding: 0;
  background: url('../../img/top/fv-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.p-topFv__inner {
  width: 35%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.p-toplFv__title {
  width: 90%;
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
  font-weight: normal;
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  text-align: right;
}

.p-topFv__lead {
  width: 90%;
  margin-bottom: var(--space-m);
  position: relative;
}

.p-topFv__lead-nyancos {
  width: 15%;
  position: absolute;
  top: 10%;
  left: 70%;
}

.p-topFv__concept {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.2vw;
  line-height: 1.8;
}

.p-topFv__concept>span {
  background: #5A5154;
  color: var(--color-primary);
  padding: 0 3.5%;
  border-radius: 4px;
}

.p-topFv__concept>span:first-of-type {
  margin-bottom: 5px;
}

.p-topFV__laurel {
  position: absolute;
  top: 11.5%;
  left: 75%;
  width: 13.5%;
  aspect-ratio: 1/1;
  background: url('../../img/common/blur--white.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-fv__object {
  width: 90%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.p-fv__comment {
  width: 17.5%;
  position: absolute;
  top: 40%;
  left: 6.5%;
  z-index: 2;
}

.p-fv__cta {
  width: 50%;
  max-width: 480px;
  height: auto;
  position: absolute;
  left: 50%;
  bottom: 2.5%;
  transform: translate(-50%, 0);
  filter: drop-shadow(0 0 8px #FFDBEC);
  z-index: 2;
}


.p-fv__cta>a {
  display: block;
  background: #fff;
  border-radius: 50vh;
}

.p-fv__cta>a>img {
  width: 100%;
}

.c-bgSep__fv {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  z-index: 1;
}

.area-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.area-shapes__heart {
  position: absolute;
  bottom: 20%;
  display: block;
  aspect-ratio: 1 / 1;
  background-image: url("../../img/icon/heart--w.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  animation: heartFloat 8s linear infinite;
  will-change: transform, opacity;
}

@keyframes heartFloat {
  0% {
    transform: translateY(10vh) rotate(0) scale(1.5);
    opacity: 0;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    transform: translateY(-120vh) rotate(720deg) scale(0.5);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .area-shapes__heart {
    animation: none;
    opacity: 0;
  }
}


/*-----------------------------------
  p-problem
-----------------------------------*/
.p-problem {
  padding: 80px 0 150px 0;
}

.p-problem {
  background: var(--color-bg-sub);
}

.p-problem .c-heading__title {
  color: #6f4357;
  margin-bottom: var(--space-xs);
}

.p-problem .c-heading__title>span {
  color: #DA57A5;
}

.c-heading__desc-problem {
  color: #DA57A5;
  order: 1;
  font-size: 2rem;
  margin-bottom: var(--space-xs);
}

.p-problem__body {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.p-problem__body::before {
  display: block;
  content: '';
  width: 100%;
  aspect-ratio: 192/10;
  z-index: -1;
  background: url('../../img/common/sep--pink-top.svg') no-repeat top center / 100% auto;
}

.p-problem__body::after {
  display: block;
  content: '';
  width: 100%;
  aspect-ratio: 192/10;
  z-index: -1;
  background: url('../../img/common/sep--pink-bottom.svg') no-repeat bottom center / 100% auto;
}

.p-problem__cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 var(--space-l);
  box-sizing: border-box;
  background: var(--color-primary-light);
  position: relative;
  z-index: 1;
}

.p-problem__card {
  width: 49%;
  padding: var(--space-m);
  box-sizing: border-box;
  background: #fff;
  border-radius: 20px;
}

.p-problem__card:nth-of-type(n+3) {
  margin-top: var(--space-s);
}


.p-problem__card-title {
  width: 95%;
  background: var(--color-primary-soft);
  border-radius: 50vh;
  text-align: center;
  color: #fff;
  font-size: 2.2rem;
  padding: 5px 0;
  margin: 0 auto var(--space-xs) auto;
  position: relative;
  z-index: 1;
}

.p-problem__list {
  width: 92.5%;
  margin: 0 auto;
}

.p-problem__item {
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  font-weight: 700;
}

.p-problem__item::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 10px;
}

/*-----------------------------------
 p-reason
-----------------------------------*/

.p-reason__list {
  list-style: none;
}

.p-reason__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: var(--color-bg-sub);
  padding: var(--space-l) var(--space-m);
  border-radius: 20px;
}

.p-reason__item:not(:last-of-type) {
  margin-bottom: var(--space-l);
}

.p-reason__num {
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  padding-right: var(--space-s);
  border-right: 1px solid var(--color-border);
}

.p-reason__num::before {
  display: block;
  content: '';
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50vh;
  margin-bottom: var(--space-xs);
}

.p-reason__body {
  width: 55%;
}

.p-reason__title {
  font-size: 2.4rem;
  margin-bottom: var(--space-xs);
}

.p-reason__text {
  margin-bottom: var(--space-s);
}

.p-reason__comment {
  display: flex;
  align-items: center;
}

.p-reason__comment-icon {
  width: 70px;
  background: #fff;
  border-radius: 50vh;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  margin-right: var(--space-s);
}

.p-reason__comment-text {
  font-size: 1.4rem;
  background: var(--color-primary-soft);
  padding: var(--space-xs) var(--space-s);
  border-radius: 10px;
  color: #fff;
  position: relative;
}

.p-reason__comment-text:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-right: 14px solid var(--color-primary-soft);
}

.p-reason__img {
  width: 35%;
  aspect-ratio: 16/9;
  clip-path: inset(0 0 0 round 10px);
}

.p-reason__img>img {
  width: 100%;
  aspect-ratio: 16/9;
}

/*-----------------------------------
 p-compare
-----------------------------------*/
.p-compare {
  background: linear-gradient(220deg, #FAEFF3 0%, #FCF7F9 22%, #ffffff 100%);
}

.p-compare__list {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.p-compare__item {
  width: 49%;
  padding-bottom: var(--space-xs);
  border-radius: 34px;
  position: relative;
}

.p-compare__item::before {
  display: block;
  content: '';
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 34px;
  z-index: -1;
}

.p-compare__item--nyanpresso::after {
  display: block;
  content: '';
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: var(--gradient-cta);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 34px;
  z-index: -2;
}

.p-compare__item-icon {
  width: 12%;
  position: absolute;
  top: -55px;
  right: 5%;
  z-index: 1;
}

.p-compare__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 160px;
  margin-bottom: var(--space-m);
  font-size: 2.4rem;
  line-height: 1.6;
  padding: 0 var(--space-s);
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
  border-bottom-left-radius: 415px 65px;
  border-bottom-right-radius: 415px 65px;
}

.p-compare__item--other .p-compare__title {
  color: var(--color-text-sub);
  background: #f0eeee;
}

.p-compare__item--nyanpresso .p-compare__title {
  font-size: 3.4rem;
  color: #fff;
  background: var(--gradient-cta);
  box-shadow: var(--shadow-cta);
}

.p-compare__title-label {
  font-size: 1.4rem;
  font-weight: normal;
  background: #fff;
  padding: 2.5px 20px;
  border-radius: 4px;
}

.p-compare__item--nyanpresso .p-compare__title-label {
  color: #ff8fd2;
}

.p-compare__detail {
  width: 95%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0 var(--space-s);
  box-sizing: border-box;
}

.p-compare__item--nyanpresso .p-compare__desc {
  color: #DA57A5;
  font-weight: 700;

}

.p-compare__detail:nth-of-type(odd) {
  background: var(--color-bg-sub);
}

.p-compare__term {
  width: 32.5%;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 10px 0;
  box-sizing: border-box;
}

.p-compare__desc {
  width: 67.5%;
  font-size: 1.6rem;
  padding: 10px 0;
  box-sizing: border-box;
}

.p-bg {
  width: 100%;
  height: 150%;
  position: absolute;
  top: 0;
  right: 0;
  mix-blend-mode: multiply;
  overflow: hidden;
}

.p-bg--left {
  width: 40%;
  position: absolute;
  top: 30%;
  left: -10%;
  opacity: .05;

}

.p-bg--right {
  width: 50%;
  position: absolute;
  top: 2.5%;
  right: -10%;
  opacity: .075;

}

/*-----------------------------------
 p-ba
-----------------------------------*/


/*-----------------------------------
 p-plan
-----------------------------------*/
.p-plan__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: var(--space-xxl);
}

.p-plan__item {
  width: 32%;
  display: flex;
  flex-direction: column;
  position: relative;
  outline-offset: 8px;
  outline: 1px solid var(--color-border-light);
  border-radius: 10px;
  background: #fff;
}

.p-plan__item--starter {
  color: #6782AF;
}

.p-plan__item--standard {
  color: #6f4357;
}

.p-plan__item--pro {
  color: #764E89;
}

.p-plan__badge {
  height: 30px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EDE7D3;
  color: #8A7350;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50vh;
}

.p-plan__head {
  width: 100%;
  height: 160px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  line-height: 1.6;
  margin-bottom: var(--space-s);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 415px 65px;
  border-bottom-right-radius: 415px 65px;
}

.p-plan__item--starter .p-plan__head {
  color: #6782AF;
  background: #ECF0F9;
}

.p-plan__item--standard .p-plan__head {
  color: #6f4357;
  background: #e9b8cc;
}

.p-plan__item--pro .p-plan__head {
  color: #764E89;
  background: #E8D7F0;
}

.p-plan__heading {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
}

.p-plan__title {
  font-size: 2.4rem;
}

.p-plan__target {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  background: #fff;
  padding: 2.5px var(--space-s);
  border-radius: 4px;
  margin-bottom: 5px;
}

.p-plan__details {
  margin-bottom: var(--space-s);
}

.p-plan__detail {
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-size: 1.8rem;
  line-height: 1.4;
}

.p-plan__term {
  width: 80px;
  background: var(--color-primary-light);
  display: flex;
  justify-content: center;
  padding: 2.5px 0;
  border-radius: 4px;
  margin-right: 2.5%;
  box-sizing: border-box;
}

.p-plan__item--starter .p-plan__term {
  background: #ECF0F9;
}

.p-plan__item--standard .p-plan__term {
  background: #F5E1E9;
}

.p-plan__item--pro .p-plan__term {
  background: #EEE2F4;
}

.p-plan__desc {
  width: auto;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-plan__num {
  font-size: 3rem;
  margin: 0 3px;
  font-weight: 700;
}

.p-plan__notice {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-left: 5px;
}

.p-plan__features {
  width: 92.5%;
  margin: 0 auto;
  list-style: none;
}

.p-plan__feature {
  padding: var(--space-xs) var(--space-s);
  text-align: center;
  border: 2px solid #eee;
  border-radius: 4px;
}

.p-plan__feature:not(:last-of-type) {
  margin-bottom: 5px;
}

/*-----------------------------------
 p-faq
-----------------------------------*/
.p-faq__inner {
  max-width: 1200px;
}

.p-faq__item {
  background: var(--color-bg-sub);
  padding: var(--space-m) var(--space-l);
  border-radius: 20px;
}

.p-faq__item:not(:last-of-type) {
  margin-bottom: var(--space-s);
}

.p-faq__question {
  display: flex;
  gap: 16px;
  box-sizing: border-box;
  cursor: pointer;
}

.p-faq__question-text {
  font-size: 1.8rem;
  font-weight: 700;
  padding-top: 3px;
}

.p-faq__toggle {
  position: relative;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  background: var(--color-bg-sub);
  border: 0;
  border-radius: 50%;
  pointer-events: none;
  margin-left: auto;
  flex-shrink: 0;
}

.p-faq__toggle::before,
.p-faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--color-text-main);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.p-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-faq__item.is-open .p-faq__toggle::after {
  opacity: 0;
}

.p-faq__answer[hidden] {
  display: none;
}

.p-faq__answer {
  display: flex;
  gap: 16px;
  margin: 0;
  border-top: 1px solid var(--color-border-light);
  padding-top: var(--space-xs);
  margin-top: var(--space-xs);
}

.p-faq__label {
  width: 38px;
  height: 38px;
  border-radius: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}

.p-faq__label--question {
  color: var(--color-primary);
  background: #fff;
  border: 2px solid var(--color-primary);
}

.p-faq__label--answer {
  color: #fff;
  background: var(--color-primary);
}

.p-faq__answer-body {
  flex: 1;
  padding-top: 3px;

}

.p-faq__answer-lead {
  font-size: 1.8rem;
  color: #6f4357;
  font-weight: 700;
}

.p-faq__answer-text {
  margin-top: 8px;
}

.p-renewalFaq__answer {
  padding: var(--space-xs) 0;
}

@media screen and (max-width:1280px) {}

@media screen and (max-width:1024px) {

  /*---fv---*/
  .p-fv {
    min-height: calc(var(--vh, 1vh) * 100);
    min-height: 100svh;
    max-height: 760px;
    margin-top: 0;
  }
}

@media screen and (max-width:896px) {}

@media screen and (max-width:787px) {}

@media screen and (max-width:680px) {}

@media screen and (max-width:480px) {

  /*---fv---*/
  .p-fv {
    width: 100%;
    min-height: calc(var(--vh, 1vh) * 95);
    min-height: 95svh;
  }
}