@charset "UTF-8";

/*-----------------------------------
  fv
-----------------------------------*/
.p-fv {
  width: 100%;
  min-height: auto;
  padding: 0;
  background: url('../../img/top/fv-bg.jpg?ver=1.0.2');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.p-fv::after {
  display: block;
  content: '';
  width: 100%;
  height: 0;
  padding-top: 52.7%;
}

.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__catch {
  width: 20%;
  position: absolute;
  top: 14%;
  left: 37.5%;
  transform: rotate(-5deg);
  filter: drop-shadow(rgba(255, 143, 210, 0.8) 0px -2px 10px);
}

.p-topFv__inner {
  width: 35%;
  position: absolute;
  top: 50%;
  left: 47.5%;
  transform: translateY(-50%);
  z-index: 1;
}

.p-topFv__lead {
  width: 100%;
  margin-bottom: var(--space-s);
  position: relative;
}

.p-topFv__logo {
  width: 85%;
  margin: 0 auto;
}

.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;
  perspective: 900px;
  transform: translate3d(var(--mouse-x, 0), var(--mouse-y, 0), 0);
  transition: transform 0.45s ease-out;
}

.area-shapes__item {
  position: absolute;
  bottom: 16%;
  display: block;
  width: var(--shape-width);
  opacity: 0;
  will-change: transform, opacity;
  animation: shapeFloatAdvanced 10s cubic-bezier(0.45, 0, 0.25, 1) infinite;
}

.area-shapes__item--oval {
  aspect-ratio: 5 / 4.5;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.38),
      rgba(245, 218, 227, 0.18));
  border: 1px solid rgba(198, 154, 175, 0.22);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(228, 181, 199, 0.18);
}

.area-shapes__item--square {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.34),
      rgba(203, 178, 255, 0.16));
  border: 1px solid rgba(203, 178, 255, 0.24);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(203, 178, 255, 0.16);
}

@keyframes shapeFloatAdvanced {
  0% {
    transform: translate3d(0, 10vh, 0) rotate(0deg) scale(0.92);
    opacity: 0;
  }

  18% {
    opacity: 0.55;
  }

  50% {
    transform: translate3d(18px, -45vh, 40px) rotate(18deg) scale(1.04);
    opacity: 0.62;
  }

  82% {
    opacity: 0.4;
  }

  100% {
    transform: translate3d(-14px, -115vh, -20px) rotate(34deg) scale(0.74);
    opacity: 0;
  }
}

@media screen and (max-width: 768px) {
  .area-shapes {
    transform: none;
  }

  .area-shapes__item {
    bottom: 12%;
    animation-duration: 11s;
  }

  .area-shapes__item--square {
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .area-shapes {
    transform: none;
    transition: none;
  }

  .area-shapes__item {
    animation: none;
    opacity: 0;
  }
}

.bg-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.p-robo {
  width: 25%;
  height: auto;
  position: absolute;
  top: 40%;
  right: 2.3%;
  transform-origin: left center;
  transform: rotate(-30deg) translate(0, -50%);
  filter: drop-shadow(0 0 15px rgba(141, 252, 255, .4));
}

.p-robo__open {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.p-robo__close {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  animation: eyes_blink_anime 2s infinite;
  opacity: 0;
}

@keyframes eyes_blink_anime {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 0;
  }

  11% {
    opacity: 1;
  }

  20% {
    opacity: 1;
  }

  21% {
    opacity: 0;
  }

  79% {
    opacity: 0;
  }

  80% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  91% {
    opacity: 0;
  }
}

/*-----------------------------------
  p-campaign
-----------------------------------*/
.p-campaign {
  padding: 100px 0 0 0;
  background: var(--color-bg-sub);
}

.p-campaign__inner {
  width: 70%;
  margin: 0 auto;
}

.p-campaign__lead {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: var(--space-s);
  color: var(--color-primary-dark);
}

/*-----------------------------------
 p-features
-----------------------------------*/

.p-features {
  padding: 100px 0 120px 0;
  background: var(--color-bg-sub);
}

.p-features__head {
  text-align: center;
}

.p-features__head .c-heading__title {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.p-features__title-sub {
  font-size: 2.8rem;
  color: var(--color-primary);
}

.p-features__title-main {
  font-size: 3.6rem;
  font-weight: 500;
}

.p-features__head .c-heading__title>img {
  display: none;
  width: 45%;
}

.p-features__list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
}

.p-features__item {
  width: 32%;
  color: #fff;
  position: relative;
  aspect-ratio: 400 / 460;
  border-radius: 20px;
}

.p-features__item:nth-child(1) {
  background:
    linear-gradient(135deg, #DE98BB 0%, #eba8c1 55%, #f4c1d2 100%);

}

.p-features__item:nth-child(2) {
  background:
    linear-gradient(135deg, #c69aaf 0%, #e4b5c7 56%, #f5dae3 100%);
}

.p-features__item:nth-child(3) {
  background:
    linear-gradient(135deg, #e0a0ba 0%, #eab8ca 55%, #f7d8e3 100%);
}

.p-features__num {
  position: absolute;
  top: 0;
  left: 5%;
  z-index: 1;
  font-size: clamp(1.8rem, 2vw, 3.2rem);
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
}


.p-features__visual {
  position: absolute;
  top: -10px;
  right: 0;
  width: 70%;
  height: auto;
  pointer-events: none;
}

.p-features__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.p-features__body {
  width: 85%;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.p-features__lead {
  font-size: 2.6rem;
  line-height: 1.5;
  margin-bottom: 5px;
}

.p-features__lead>span {
  color: #ffeef6;
  border-bottom: 2px dashed #ffeef6;
}

.p-features__text {
  font-size: 1.8rem;
  line-height: 1.6;
  margin: 0;
}



/*-----------------------------------
  p-support
-----------------------------------*/
.p-support {
  padding: 80px 0 150px 0;
}

.p-support__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.p-support__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-xs);
}

.p-support__title-lead {
  font-size: 2.8rem;
  color: var(--color-primary);
}

.p-support__title-main {
  font-size: 3.6rem;
  border-bottom: 4px solid var(--color-primary-soft);
  padding-bottom: var(--space-xs);
  font-weight: 500;

}

.p-support__lead {
  font-size: 1.8rem;
}

.p-support__lead>span {
  padding: 2.5px 20px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50vh;
  margin: 0 3px;
  font-weight: 700;
}

.p-support__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-support__diagram {
  width: 45%;
}

.p-support__diagram>img {
  width: 87.5%;
  margin: 0 auto;
}

.p-support__diagram-box {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-sub);
  padding: var(--space-xs) var(--space-s);
  margin-top: var(--space-xs);
  border-radius: 10px;
}

.p-support__diagram-box-icon {
  width: 60px;
  height: auto;
  margin-right: 5px;
}

.p-support__diagram-contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.8;
}

.p-support__diagram-box-desc {
  font-size: 2rem;
  font-weight: 500;
}

.p-support__detail {
  width: 50%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.p-support__box {
  width: 49%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: var(--space-l) var(--space-s);
  box-sizing: border-box;
  border: 2px solid var(--support-border);
  border-radius: 20px;
  box-shadow:
    0 12px 28px rgba(63, 52, 56, 0.05),
    0 10px 24px var(--support-shadow);
}

.p-support__box:nth-of-type(n+3) {
  margin-top: var(--space-s);
}

.p-support__box-head {
  width: 100%;
  padding-bottom: var(--space-xs);
  margin-bottom: var(--space-xs);
  border-bottom: 1px dashed rgba(212, 212, 212, 0.8);
}

.p-support__box-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.p-support__box-icon {
  width: 4rem;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--support-icon-bg);
}

.p-support__box-icon>img {
  width: 70%;
  height: auto;
  display: block;
}

.p-support__box-title {
  color: var(--support-color);
  font-size: 2.2rem;
  line-height: 1.35;
  font-weight: 700;
}

.p-support__box-lead {
  margin-top: 0.8rem;
  color: var(--support-color);
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
  font-weight: 600;
}

.p-support__list {
  width: 95%;
  margin: 0 auto;
}

.p-support__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  color: var(--color-text-sub);
  font-size: 1.6rem;
  line-height: 1.75;
}

.p-support__item::before {
  content: "";
  width: 1rem;
  height: 1rem;
  margin-top: .6rem;
  margin-right: 0.9rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--support-dot);
}

/* environment */
.p-support__box--environment {
  --support-color: #4f9ccc;
  --support-soft: #8fd1ff;
  --support-border: rgba(143, 209, 255, 0.42);
  --support-icon-bg: rgba(143, 209, 255, 0.38);
  --support-dot: #dff1ff;
  --support-shadow: rgba(143, 209, 255, 0.2);
}

/* guidance */
.p-support__box--guidance {
  --support-color: #4faeb8;
  --support-soft: #77cfd7;
  --support-border: rgba(137, 209, 215, 0.42);
  --support-icon-bg: rgba(137, 209, 215, 0.36);
  --support-dot: #ddf1f3;
  --support-shadow: rgba(137, 209, 215, 0.18);
}

/* care */
.p-support__box--care {
  --support-color: #d96ba8;
  --support-soft: #ff9fd8;
  --support-border: rgba(255, 159, 216, 0.42);
  --support-icon-bg: rgba(255, 159, 216, 0.36);
  --support-dot: #ffebf6;
  --support-shadow: rgba(255, 159, 216, 0.2);
}

/* ability */
.p-support__box--ability {
  --support-color: #8f6bd1;
  --support-soft: #cbb2ff;
  --support-border: rgba(203, 178, 255, 0.44);
  --support-icon-bg: rgba(203, 178, 255, 0.36);
  --support-dot: #e8deff;
  --support-shadow: rgba(203, 178, 255, 0.22);
}

/*-----------------------------------
  p-problem
-----------------------------------*/
.p-problem {
  padding: 80px 0 150px 0;
  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__cards-wrapper {
  width: 100%;
  position: relative;
}

.p-problem__bg {
  width: auto;
  height: 220px;
  position: absolute;
  top: -200px;
  left: 10%;
  filter: brightness(110%) contrast(0.9);
}

.p-problem__bg picture,
.p-problem__bg img {
  width: auto;
  height: 100%;
}

.p-problem__body::before {
  display: block;
  content: '';
  width: 100%;
  aspect-ratio: 192/10;
  position: relative;
  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;
  margin-top: -1px;
}

.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-s) auto;
  position: relative;
  z-index: 1;
}

.p-problem__list {
  width: 92.5%;
  margin: 0 auto;
}

.p-problem__item {
  display: flex;
  align-items: center;
  line-height: 1.6;
  font-size: 1.7rem;
  font-weight: 700;
}

.p-problem__item:not(:last-of-type) {
  margin-bottom: 5px;
}

.p-problem__item::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 10px;
  margin-top: .7vh;
  margin-bottom: auto;
}


/*-----------------------------------
 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);
  position: relative;
  clip-path: inset(0 0 0 round 50vh);
}

.p-reason__comment-icon>img {
  width: 80%;
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translate(-50%, 0) rotate(15deg);
}

.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-xs);
  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: 27.5%;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 10px 0;
  box-sizing: border-box;
}

.p-compare__desc {
  width: 72.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__campaign {
  width: 85%;
  margin: 0 auto var(--space-xxl) auto;
}

.p-plan__campaign-link {
  display: block;
}

.p-plan__campaign-notice {
  font-size: 1rem;
  text-align: right;
}

.p-plan__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: var(--space-s);
}

.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;
  white-space: nowrap;
  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__detail-col {
  width: 92.5%;
  flex-direction: column;
  align-items: center;
  padding: var(--space-s);
  margin: 0 auto var(--space-xs) auto;
  background: #F7F7F7;
  border-radius: 6px;
}

.p-plan__term {
  width: 90px;
  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__detail-col .p-plan__term {
  margin-bottom: var(--space-xs);
}

.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: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-plan__price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  position: relative;
}

.p-plan__item--starter .p-plan__price,
.p-plan__item--starter .p-plan__installment-title {
  margin-top: 20px;
}

.p-plan__price-regular {
  width: 100%;
  height: 20px;
  font-size: 1.4rem;
  text-align: center;
}

.p-plan__count-desc {
  font-size: 1.4rem;
}

.p-plan__detail-col .p-plan__price {
  flex-direction: row;
  align-items: baseline;
}

.p-plan__st {
  background: #5A5154;
  color: #fff;
  padding: 2.5px 5px;
  border-radius: 4px;
  font-size: 1.4rem;
}

.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__installment {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.1;
  margin-top: 10px;
}

.p-plan__installment-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
}

.p-plan__installment-title::before,
.p-plan__installment-title::after {
  display: block;
  content: '';
  border-top: 1px solid var(--color-border-light);
  flex: 1;
}

.p-plan__installment-body {
  font-size: 1.4rem;
}

.p-plan__asta {
  font-size: 1rem;
}

.p-plan__asta2 {
  font-size: 1rem;
  text-align: right;
  margin-bottom: var(--space-xxl);
}

.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-plan__summary {
  width: 95%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.p-plan__summary-icon {
  width: 120px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

.p-plan__summary-desc {
  padding: var(--space-s) var(--space-m);
  box-sizing: border-box;
  background: var(--color-bg-sub);
  margin-left: 30px;
  border-radius: 20px;
  position: relative;
}

.p-plan__summary-desc::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  border-width: 14px 14px 14px;
  border-style: solid solid solid;
  border-color: transparent transparent transparent;
  border-image: initial;
  border-right: 20px solid var(--color-bg-sub);
}

/*-----------------------------------
 p-flow
-----------------------------------*/
.p-flow__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
}

.p-flow__item {
  width: 25%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.p-flow__item--sep {
  display: flex;
  align-items: center;
}

.p-flow__item--sep::before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  font-size: 0;
  border-radius: 50vh;
  background: var(--color-primary-light);
}

.p-flow__item--sep::after {
  display: block;
  content: "";
  flex: 1;
  border-top: 4px solid var(--color-border-light);
  margin-left: 5px;
}

.p-flow__item-img {
  width: 97.5%;
  aspect-ratio: 16/9;
  background: #f2f2f2;
  border-radius: 10px;
  margin: var(--space-xs) auto var(--space-s) auto;
  clip-path: inset(0 0 0 round 10px);
  position: relative;
}

.p-flow__item-step {
  position: absolute;
  top: 0;
  left: 5%;
  font-size: 1.2rem;
  color: #6f4357;
  background: #fff;
  padding: 10px 0 2.5px 0;
  z-index: 1;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.p-flow__item-step>span {
  border-top: 1px solid var(--color-border);
  -webkit-writing-mode: initial;
  writing-mode: initial;
  margin-top: 10px;
}

.p-flow__item-title {
  font-size: 1.8rem;
  margin: 0 auto var(--space-xs) auto;
  text-align: center;
}

.p-flow__item-desc {
  width: 95%;
  font-size: 1.4rem;
  margin-left: auto;
  line-height: 1.8;
}

/*-----------------------------------
 p-voice
-----------------------------------*/
.p-voice {
  background: var(--color-bg-sub);

}

.p-voice__list {
  list-style: none;
}

.p-voice__item {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.p-voice__item:not(:last-of-type) {
  margin-bottom: var(--space-l);
}

.p-voice__card {
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #fff;
  padding: var(--space-l);
  border-radius: 20px;
  box-sizing: border-box;
  position: relative;
}

.p-voice__case {
  position: absolute;
  top: 0;
  right: 2.5%;
  font-size: 1.6rem;
  color: #fff;
  background: var(--color-primary);
  padding: 10px 0 5px 0;
  z-index: 1;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
}

.p-voice__item--blue .p-voice__case {
  background: #4faeb8;

}

.p-voice__case>span {
  border-top: 1px solid #fff;
  -webkit-writing-mode: initial;
  writing-mode: initial;
  margin-top: 10px;
}

.p-voice__card-head {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-xs);
  margin-bottom: var(--space-s);
}

.p-voice__icon {
  width: 90px;
  aspect-ratio: 1/1;
  margin-right: var(--space-xs);
  flex-shrink: 0;
}

.p-voice__card-title {
  font-size: 2rem;
}

.p-voice__meta {
  display: flex;
  flex-wrap: wrap;
}

.p-voice__past {
  margin-left: var(--space-s);
}

.p-voice__past>span {
  background: var(--color-primary-light);
  color: #d96ba8;
  padding: 2.5px var(--space-xs);
  border-radius: 4px;
  margin-right: var(--space-xs);
}

.p-voice__item--blue .p-voice__past>span {
  background: #dff1ff;
  color: #4f9ccc;
}


.p-voice__content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.p-voice__block {
  width: 49%;
  display: flex;
  flex-direction: column;
}

.p-voice__block:nth-of-type(n+3) {
  margin-top: var(--space-xs);
}

.p-voice__question {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.p-voice__question::before {
  content: "";
  width: 1rem;
  height: 1rem;
  margin-right: var(--space-xs);
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-primary);
}

.p-voice__item--blue .p-voice__question::before {
  background: #dff1ff;
}

.p-voice__answer {
  padding: var(--space-xs) var(--space-s);
  background: var(--color-bg-sub);
  border-radius: 10px;
  color: var(--color-text-muted);
  flex: 1;
}

/*-----------------------------------
 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-blog
-----------------------------------*/
.p-blog__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: var(--space-l);
}

.p-blog__item {
  width: 24%;
  display: flex;
  flex-direction: column;
}

.p-blog__item-link {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.p-blog__item-img {
  position: relative;
  margin-bottom: var(--space-xs);
}

.p-blog__item-img::after {
  display: block;
  content: '';
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.p-blog__item-img>img {
  height: 100%;
  opacity: .8;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  border-radius: 10px;
}

.p-blog__item:not(:nth-of-type(4n)) {
  margin-right: calc(4%/3);
}

.p-blog__item-inner {
  width: 95%;
  margin: 0 auto;
  flex: 1;
}

.p-blog__item-title>h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

.p-blog__item-taxonomy {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.p-blog__date {
  margin-right: 10px;
}

.p-blog__cat {
  background: var(--color-primary-light);
  padding: 2.5px 10px;
  border-radius: 4px;
}

@media screen and (max-width:1440px) {
  .p-fv__object {
    width: 90%;
    bottom: 0;
  }
}

@media screen and (max-width:1360px) {

  /*---p-support---*/
  .p-support__box {
    padding: var(--space-s);
  }

  .p-support__box-lead {
    font-size: 1.6rem;
  }

  /*--- p-problem---*/
  .p-problem__list {
    width: 95%;
  }
}

@media screen and (max-width:1280px) {
  .p-fv::after {
    padding-top: 65%;
  }

  .p-fv__object {
    width: 110%;
    left: -5%;
  }

  .p-topFv__inner {
    width: 40%;
    top: 50%;
  }

  .p-topFv__catch {
    left: 40%;
  }

  /*---p-robo---*/
  .p-robo {
    width: 20%;
    top: 30%;
    right: 3.3%;
  }

  /*---p-support---*/
  .p-support__box {
    padding: var(--space-s);
  }

  .p-support__box-lead {
    font-size: 1.6rem;
  }

  .p-support__body {
    flex-direction: column;
  }

  .p-support__diagram {
    width: 65%;
    margin-bottom: var(--space-l);
  }

  .p-support__detail {
    width: 75%;
  }

  .p-support__box-lead {
    font-size: 1.8rem;
  }

  .p-compare__desc .u-pc-only {
    display: none;
  }

  /*---p-plan---*/
  .p-plan__item {
    width: 48%;
  }

  .p-plan__item:nth-of-type(3) {
    margin: var(--space-l) auto 0 auto;
  }
}

@media screen and (max-width:1100px) {
  .p-fv__object {
    width: 120%;
    left: -5%;
  }

  .p-topFv__inner {
    width: 45%;
    top: 55%;
  }
}

@media screen and (max-width:1024px) {

  /*---fv---*/
  .p-fv::after {
    padding-top: 72%;
  }

  .p-fv__object {
    width: 120%;
    left: -10%;
  }

  .p-topFv__inner {
    width: 50%;
    top: 55%;
    left: 45%;
  }

  .p-campaign__inner {
    width: 90%;
  }

  /*---p-robo---*/
  .p-robo {
    width: 25%;
    top: 35%;
    right: 3.3%;
  }

  /*--- p-feature ---*/
  .p-features__list {
    flex-wrap: wrap;
  }

  .p-features__item {
    width: 49%;
  }

  .p-features__item:nth-of-type(3) {
    margin-left: auto;
    margin-right: auto;
  }

  .p-features__item:nth-of-type(n+3) {
    margin-top: var(--space-m);
  }

  /*--- p-support---*/
  .p-support__diagram {
    width: 100%;
  }

  .p-support__diagram>img {
    width: 70%;
  }

  .p-support__detail {
    width: 100%;
  }

  .p-problem__bg {
    height: 160px;
    top: -140px;
    left: 5%;
  }

  .p-problem__card {
    width: 49%;
    padding: var(--space-m) var(--space-s);
  }

  .p-problem__item {
    line-height: 1.5;
    font-size: 1.6rem;
  }

  .p-problem__item:nth-of-type(n+2) {
    margin-top: 10px;
  }

  .p-problem__item::before {
    margin-top: .5vh;
    margin-bottom: auto;
  }

  /*---p-plan---*/
  .p-plan__item {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }

  .p-plan__item--starter .p-plan__price,
  .p-plan__item--starter .p-plan__installment-title {
    margin-top: 0;
  }

  .p-plan__item:nth-of-type(n+2) {
    margin-top: var(--space-xl);
  }

  .p-plan__features {
    display: flex;
    flex-wrap: wrap;
  }

  .p-plan__feature {
    width: 49%;
  }

  /*---p-reason---*/

  .p-reason__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .p-reason__item {
    width: 49%;
  }

  .p-reason__item:not(:last-of-type) {
    margin-bottom: 0;
  }

  .p-reason__item:nth-of-type(n+3) {
    margin-top: var(--space-l);
  }

  .p-reason__num {
    width: 7.5%;
  }

  .p-reason__body {
    width: 87.5%;
    display: flex;
    flex-direction: column;
  }

  .p-reason__title {
    text-align: center;
  }

  .p-reason__img.u-pc-only {
    display: none;
  }

  .p-reason__img.u-sp-only {
    display: block;
    width: 100%;
    margin-bottom: var(--space-xs);
  }

  .p-reason__comment {
    margin-top: auto;
  }

  /*---p-compare---*/
  .p-compare__item-icon {
    width: 22%;
    top: -70px;
    right: 0;
  }

  /*---p-flow---*/
  .p-flow__item {
    width: 50%;
  }

  .p-flow__item:nth-of-type(n+3) {
    margin-top: var(--space-l);
  }

  /*---p-faq---*/
  .p-faq__item {
    padding: var(--space-m) var(--space-s);
  }

  /*---p-blog---*/
  .p-blog__item {
    width: 48%;
  }

  .p-blog__item:not(:nth-of-type(4n)) {
    margin-right: initial;
  }

  .p-blog__item:nth-of-type(odd) {
    margin-right: 4%;
  }

  .p-blog__item:nth-of-type(n+3) {
    margin-top: var(--space-m);
  }
}

@media screen and (max-width:896px) {
  .p-fv {
    background: url('../../img/top/fv-bg--tab.jpg?ver=1.0.2');
    background-size: cover;
    background-position: center;
  }

  .p-fv::after {
    padding-top: 82%;
  }

  .p-topFv__catch {
    width: 24%;
    top: 20%;
  }

  .p-fv__object {
    width: 140%;
    left: -17.5%;
  }

  .p-topFv__inner {
    width: 45%;
    top: 55%;
    left: 50%;
  }

  .p-fv__comment {
    width: 22.5%;
    top: 50%;
    left: 2.5%;
  }

  /*---p-support---*/
  .p-support__diagram>img {
    width: 75%;
  }

  /*---p-problem---*/
  .p-problem__bg {
    height: 140px;
    top: -120px;
  }

  /*---p-reason---*/

  .p-reason__comment {
    align-items: flex-start;
  }

  .p-reason__comment-icon {
    width: 46px;
    margin-top: 5px;
  }

  .p-reason__comment-text:before {
    content: "";
    position: absolute;
    top: 23px;
    left: -22.5px;
    transform: translateY(0);
  }

  /*---p-compare---*/
  .p-compare {
    background: linear-gradient(45deg, #FAEFF3 0%, #FCF7F9 22%, #FAEFF3 100%);
  }

  .p-compare__list {
    flex-direction: column;
  }

  .p-compare__detail {
    width: 92.5%;
  }

  .p-compare__item {
    width: 100%;
    padding-bottom: var(--space-m);
  }

  .p-compare__item-icon {
    width: 100px;
    top: -70px;
    right: 0;
  }

  .p-compare__item--nyanpresso {
    order: 1;
  }

  .p-compare__item--other {
    order: 2;
    margin-top: var(--space-l);
  }

  /*--- p-plan ---*/
  .p-plan__item {
    width: 85%;
  }

}

@media screen and (max-width:787px) {
  .p-fv::after {
    padding-top: 150%;
  }

  .p-fv__object {
    width: 85%;
    left: 0;
    top: 80px;
  }

  .p-topFv__inner {
    width: 70%;
    top: 67.5%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .p-fv__comment {
    width: 25%;
    top: 27.5%;
    left: 7.5%;
  }

  .p-topFv__catch {
    width: 35%;
    top: 42%;
    filter: initial;
    z-index: 1;
  }

  .p-fv__cta {
    width: 65%;
  }

  /*--- p-robo ---*/
  .p-robo {
    width: 22%;
    top: 52%;
    right: 3.3%;
  }

  /*--- p-feature ---*/
  .p-features__text {
    font-size: 1.6rem;
  }

  /*---p-support---*/
  .p-problem .c-heading__title .u-sp-only {
    display: block;
  }

  .p-support__diagram>img {
    width: 80%;
  }

  /*---p-problem---*/
  .p-problem .c-heading__title {
    font-size: 3.6rem;
    text-align: center;
  }

  .p-problem__card-title {
    font-size: 2rem;
  }

  .p-problem__bg {
    height: 140px;
    top: -140px;
    left: 8%;
  }

  /*--p-reason---*/
  .p-reason__item {
    width: 100%;
  }

  .p-reason__item:nth-of-type(n+2) {
    margin-top: var(--space-l);
  }

  .p-reason__title {
    text-align: left;
  }

  /*--- p-plan ---*/
  .p-plan__campaign {
    width: 100%;
    margin: 0 auto var(--space-l) auto;
  }

  .p-plan__item {
    width: 100%;
  }

  /*--p-voice---*/
  .p-voice__block {
    width: 100%;
  }

  .p-voice__block:nth-of-type(n+2) {
    margin-top: var(--space-xs);
  }
}

@media screen and (max-width:680px) {

  .p-fv::after {
    padding-top: 170%;
  }

  .p-topFv__inner {
    width: 75%;
    top: 67.5%;
  }

  .p-fv__object {
    width: 85.5%;
  }

  .p-robo {
    width: 18%;
    top: 49%;
    right: 3.3%;
  }

  .p-features__title-sub {
    font-size: 1.8rem;
  }

  .p-features__title-main {
    font-size: 3rem;
  }

  .p-features__title-main .u-sp-only {
    display: block;
  }

  /*---p-features---*/
  .p-features__item {
    width: 100%;
    padding: var(--space-l) var(--space-m);
    box-sizing: border-box;
    aspect-ratio: initial;
  }

  .p-features__item:nth-of-type(n+2) {
    margin-top: var(--space-s);
  }

  .p-features__num {
    font-size: 6rem;
  }

  .p-features__visual {
    top: -10px;
    right: 0;
    width: 45%;
  }

  .p-features__body {
    width: 100%;
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    margin-top: 80px;
  }


  /*---p-support---*/
  .p-support__diagram>img {
    width: 90%;
  }

  /*---p-problem---*/
  .p-problem__body::before {
    aspect-ratio: 68 / 9;
    background: url('../../img/common/sep--pink-top--sp.svg') no-repeat top center / 100% auto;
  }

  .p-problem__body::after {
    aspect-ratio: 68 / 9;
    background: url('../../img/common/sep--pink-bottom--sp.svg') no-repeat top center / 100% auto;
  }

  .p-problem__cards {
    margin-top: -1px;
  }

  .p-problem__card {
    width: 100%;
  }

  .p-problem__card:nth-of-type(n+2) {
    margin-top: var(--space-s);
  }

  /*---p-plan---*/
  .p-plan__list {
    margin-bottom: var(--space-s);
  }

  .p-plan__item:nth-of-type(n+2) {
    margin-top: var(--space-xl);
  }

  .p-plan__feature {
    width: 100%;
  }

  .p-plan__asta2 {
    line-height: 1.4;
    margin-bottom: 0;
    opacity: .7;
  }

  .p-plan__asta2 .u-sp-only {
    display: block;
  }

  .p-plan__summary {
    width: 100%;
    flex-direction: column;
  }

  .p-plan__summary-icon {
    width: 90px;
    margin-right: auto;
    margin-left: 10px;
    margin-bottom: 20px;
  }

  .p-plan__summary-desc {
    margin-left: 0;
  }

  .p-plan__summary-desc::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 40px;
    border: 15px solid transparent;
    border-bottom: 15px solid var(--color-bg-sub);
  }
}

@media screen and (max-width:480px) {

  /*---fv---*/

  .p-fv::after {
    display: none;
  }

  .p-fv {
    min-height: max(calc(var(--vh, 1vh) * 95), 780px);
  }

  .p-toplFv__title {
    top: 70px
  }

  .p-topFv__inner {
    width: 80%;
    top: 70%;
  }

  .p-topFv__lead {
    margin-bottom: var(--space-xs);
  }

  .p-topFv__logo {
    width: 80%;
  }

  .p-fv__comment {
    width: 45%;
    top: 31.5%;
    left: 4.5%;
  }

  .p-topFv__catch {
    width: 40%;
    left: 53%;
    top: 47%;
  }

  .p-topFv__catch::after {
    display: block;
    content: '';
    width: 200%;
    height: auto;
    aspect-ratio: 5/2.5;
    background: radial-gradient(rgba(228, 181, 199, 1) 0%, rgba(228, 181, 199, 0) 60%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50vh;
  }

  .p-fv__object {
    width: 95%;
    top: 75px;
  }

  .p-fv__cta {
    width: 90%;
  }

  .p-robo {
    width: 20%;
    top: 47.5%;
    right: 3.3%;
    filter: drop-shadow(0 0 4px rgba(141, 252, 255, 0.4));
    z-index: 1;
  }


  /*--- p-feature ---*/
  .p-features {
    padding: 60px 0;
  }

  .c-heading.p-features__head {
    margin-bottom: 0;
  }

  .c-heading.p-features__head::after {
    display: none;
  }

  .p-features__head .c-heading__title {
    margin-bottom: 0;
  }

  .p-features__title-sub {
    display: none;
  }

  .p-features__title-main {
    display: none;
  }

  .p-features__head .c-heading__title>img {
    display: block;
    width: 90%;
  }

  .p-features__item {
    width: 100%;
    padding: var(--space-m) var(--space-s);
  }

  .p-features__num {
    top: 30px;
    font-size: 4rem;
    line-height: 1;
    letter-spacing: -0.01em;
  }

  .p-features__visual {
    width: 50%;
  }

  .p-features__body {
    position: relative;
    z-index: 1;

  }

  .p-features__lead {
    font-size: 2.2rem;
  }

  .p-features__text {
    font-size: 1.6rem;
  }

  /*--- p-support ---*/
  .p-support {
    padding: 30px 0 60px 0;
  }

  .p-support__head {
    margin-bottom: var(--space-s);
  }

  .p-support__title {
    width: 100%;
  }

  .p-support__title-lead {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }

  .p-support__title-main {
    font-size: 2.6rem;
    text-align: center;
    line-height: 1.3;
    padding-left: 5%;
  }

  .p-support__title-main .u-sp-only {
    display: block;
  }

  .p-support__lead {
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.8;

  }

  .p-support__lead .u-sp-only {
    display: block;
  }

  .p-support__diagram-box-icon {
    display: none;
  }

  .p-support__diagram-box-desc {
    text-align: center;
    line-height: 1.6;
    font-size: 1.8rem;
    margin-bottom: 5px;
  }

  .p-support__diagram-box-desc .u-sp-only {
    display: block;
  }

  .p-support__box {
    width: 100%;
  }

  .p-support__box:nth-of-type(n+2) {
    margin-top: var(--space-xs);
  }

  /*---p-problem---*/
  .p-problem {
    padding: 60px 0;
  }

  .p-problem .l-inner {
    width: 95%;
  }

  .c-heading__desc-problem {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }

  .p-problem .c-heading__title {
    font-size: 2.6rem;
  }

  .p-problem__bg {
    height: 100px;
    top: -100px;
  }

  .p-problem__cards {
    padding: 0 var(--space-s);
  }

  .p-problem__card {
    padding: var(--space-m) var(--space-xs);
    border-radius: 10px;
  }

  .p-problem__card-title {
    font-size: 1.8rem;
  }

  .p-problem__item::before {
    margin-top: 1vh;
  }

  /*---p-reason---*/
  .p-reason__inner {
    width: 95%;
  }

  .p-reason__item:nth-of-type(n+2) {
    margin-top: var(--space-m);
  }

  .p-reason__title {
    font-size: 1.8rem;
    text-align: center;
  }

  .p-reason__text {
    margin-bottom: var(--space-s);
  }

  .p-reason__comment {
    flex-direction: column-reverse;
    position: relative;
  }

  .p-reason__comment-icon {
    margin-right: -7.5%;
    margin-left: auto;
    margin-top: -30px;
    z-index: 1;
  }

  .p-reason__comment-text::before {
    display: none;
  }

  /*---p-compare---*/
  .p-compare__item::before,
  .p-compare__item--nyanpresso::after {
    border-radius: 20px;
  }

  .p-compare__item-icon {
    width: 70px;
    top: -49px;
  }

  .p-compare__title {
    height: 140px;
    font-size: 2rem;
  }

  .p-compare__item--nyanpresso .p-compare__title {
    font-size: 3rem;
  }

  .p-compare__detail {
    padding: 0;
  }

  .p-compare__detail:nth-of-type(odd) {
    background: none;
  }

  .p-compare__term {
    width: 100%;
    background: var(--color-bg-sub);
    padding: var(--space-xs);
    line-height: 1.6;
  }

  .p-compare__desc {
    width: 100%;
    padding: var(--space-xs) var(--space-xs) 15px var(--space-xs);
    line-height: 1.6;
  }

  /*---p-plan---*/
  .p-plan .c-heading .u-sp-only {
    display: block;
  }

  .p-plan .c-heading {
    text-align: center;
  }

  .p-plan__item:nth-of-type(n+2) {
    margin-top: var(--space-l);
  }

  .p-plan__detail {
    font-size: 1.6rem;
  }

  .p-plan__detail-col .p-plan__price {
    flex-wrap: wrap;
  }

  .p-plan__st {
    font-size: 1.2rem;
  }

  /*---p-flow---*/
  .p-flow__item {
    width: 100%;
    padding-left: 25px;
    padding-bottom: var(--space-m);
    box-sizing: border-box;
  }

  .p-flow__item:nth-of-type(n+2) {
    margin-top: 0;
  }

  .p-flow__item--sep {
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 100%;
    flex-direction: column;
  }

  .p-flow__item--sep::before {
    width: 12px;
    height: 12px;
  }

  .p-flow__item--sep::after {
    border-top: none;
    border-left: 4px solid var(--color-border-light);
    margin-left: 0;
  }

  .p-flow__item-title {
    width: 100%;
    order: 1;
    text-align: left;
  }

  .p-flow__item-img {
    width: 100%;
    margin-top: 0;
    margin-bottom: var(--space-xs);
    order: 2;
  }

  .p-flow__item-step {
    display: block;
    min-height: 78px;
    left: initial;
    right: 5%;
  }

  .p-flow__item-desc {
    width: 100%;
    text-align: justify;
    order: 3;
  }

  /*---p-voice---*/
  .p-voice__inner {
    width: 95%;
  }

  .p-voice__item:not(:last-of-type) {
    margin-bottom: var(--space-m);
  }

  .p-voice__card {
    padding: var(--space-l) var(--space-s);
  }

  .p-voice__card-head {
    flex-direction: column;
  }

  .p-voice__case {
    display: block;
    font-size: 1.2rem;
    min-height: 78px;
    left: initial;
    right: 5%;
  }

  .p-voice__icon {
    width: 60px;
    margin-bottom: var(--space-xs);
  }

  .p-voice__card-title {
    font-size: 1.8rem;
  }

  .p-voice__past {
    margin-left: 0;
  }

  .p-voice__question {
    font-size: 1.6rem;
  }

  /*---p-faq---*/
  .p-faq__inner {
    width: 95%;
  }

  .p-faq__item {
    padding: var(--space-s) 15px;
    border-radius: 10px;
  }

  .p-faq__item:not(:last-of-type) {
    margin-bottom: var(--space-xs);
  }

  .p-faq__question,
  .p-faq__answer {
    gap: 8px;
  }

  .p-faq__label {
    width: 30px;
    height: 30px;
    font-size: 1.6rem;
  }

  .p-faq__question-text {
    font-size: 1.6rem;
    line-height: 1.6;
    flex: 1;
  }

  .p-faq__toggle {
    position: relative;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-top: 3px;
  }

  .p-faq__answer-body {
    flex: 1;
  }

  .p-faq__answer-lead {
    font-size: 1.6rem;
    line-height: 1.6;
  }

  /*---p-blog---*/
  .p-blog {
    padding-top: 0;
  }

  .p-blog__item {
    width: 100%;
  }

  .p-blog__item:nth-of-type(odd) {
    margin-right: initial;
  }

  .p-blog__item:nth-of-type(n+2) {
    margin-top: var(--space-m);
  }

  .p-blog__item-title>h3 {
    font-weight: normal;
  }

}