@charset "UTF-8";
html {
  font-size: 100%;
  overflow-y: auto;
}
@media (min-width: 768px) and (max-width: 1940px) {
  html {
    font-size: max(0.625rem, 0.824742268vw);
  }
}
@media (max-width: 767px) {
  html {
    font-size: max(1rem, 0.824742268vw);
  }
}
@media (min-width: 1941px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: max(1rem, 4.2666666667vw);
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  overflow-y: auto;
  min-height: 100vh;
  min-height: 100dvh;
}

a,
button,
input[type=submit] {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover,
input[type=submit]:hover {
  opacity: 0.7;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  a:hover,
  button:hover,
  input[type=submit]:hover {
    opacity: 1;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-footer {
  background-color: #b3b3b3;
  color: #fff;
  padding: 3.125rem 3.75rem;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .l-footer {
    padding: 3.125rem 1.25rem 1.25rem;
    z-index: 0;
  }
}

.l-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
  }
}

.l-footer__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-footer__logo {
  max-width: 16.125rem;
  width: 100%;
}

.l-footer__sentence {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1rem;
  letter-spacing: -0.0075rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-footer__sentence {
    display: none;
  }
}

.l-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}

.l-footer__nav-item {
  white-space: nowrap;
}

.l-footer__nav-link {
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.01rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-link {
    font-weight: 500;
    letter-spacing: -0.00875rem;
  }
}

.l-footer__copylight {
  margin-top: 1.25rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .l-footer__copylight {
    margin-top: 1.875rem;
    text-align: center;
  }
}

.l-footer__copylight-text {
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.01rem;
}
@media screen and (max-width: 767px) {
  .l-footer__copylight-text {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: -0.0075rem;
  }
}

.l-header {
  color: #2d4c6f;
  background: #f9f9f9;
  -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, .25);
          box-shadow: 0 3px 8px 0 rgba(0, 0, 0, .25);
  height: 8.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 3.75rem;
  }
}

.l-header__inner {
  height: 100%;
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding-inline: 1.25rem;
  }
}

.l-header__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.l-header__head::after {
  content: "";
  width: 23.75rem;
  height: 16.3125rem;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: -5.625rem;
  left: -6.25rem;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .l-header__head::after {
    width: 12.5rem;
    height: 9.375rem;
    left: -1.875rem;
    top: -3.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__head {
    gap: 0.625rem;
  }
}

.l-header__logo {
  position: relative;
  z-index: 1;
}

.l-header__logo-link {
  display: inline-block;
  width: 16.125rem;
  height: 4.25rem;
  aspect-ratio: 129/34;
}
@media screen and (max-width: 767px) {
  .l-header__logo-link {
    width: 9.375rem;
    height: 2.5rem;
  }
}

.l-header__sentence {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1rem;
  letter-spacing: -0.0075rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-header__sentence {
    display: none;
  }
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2.5rem, 6vw, 5rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 20rem;
    height: 100vh;
    background-color: #e5f7d2;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 3.75rem 1.25rem 1.25rem;
    gap: 0;
    z-index: 100;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    overflow-y: auto;
  }
  .l-header__nav.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.5625rem, 4vw, 3.125rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
  }
}

.l-header__nav-item {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-header__nav-item {
    border-bottom: 0.0625rem solid rgba(51, 51, 51, .1);
  }
}

.l-header__nav-link {
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.01rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-header__nav-link {
    display: block;
    padding: 0.9375rem 0;
  }
}

.l-header__nav-link-sub {
  color: #35c670;
  font-family: "Montserrat", sans-serif;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.00625rem;
  display: block;
  margin-top: 0.625rem;
}

@media screen and (max-width: 767px) {
  .l-header__nav-btn {
    margin-top: 1.25rem;
  }
}

.l-header__nav-btn-link {
  border-radius: 3.75rem;
  background: #005b9c;
  -webkit-box-shadow: 0 0.1875rem 0.5rem 0 rgba(0, 0, 0, .25);
          box-shadow: 0 0.1875rem 0.5rem 0 rgba(0, 0, 0, .25);
  width: 22.5rem;
  height: 5.5rem;
  padding: 0.625rem;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0.9375rem, 2vw, 1.5625rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .l-header__nav-btn-link {
    width: 100%;
    height: 3.5rem;
    padding: 0.625rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.l-header__btn-text-wrap {
  color: #fff;
  text-align: center;
}

.l-header__btn-text-sub {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.00875rem;
}
@media screen and (max-width: 767px) {
  .l-header__btn-text-sub {
    font-size: 0.75rem;
  }
}

.l-header__btn-text {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.0125rem;
  margin-top: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .l-header__btn-text {
    font-size: 1rem;
  }
}

.l-header__btn-arrow {
  width: 0.8125rem;
}

.l-header__overlay {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(51, 51, 51, .5);
    z-index: 99;
  }
  .l-header__overlay.is-open {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .l-header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
    width: 1.5rem;
    height: 1.5rem;
  }
  .l-header__hamburger span {
    display: block;
    width: 1.5rem;
    height: 0.125rem;
    background-color: #333;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .l-header__hamburger span:nth-child(1) {
    margin-bottom: 0.375rem;
  }
  .l-header__hamburger span:nth-child(3) {
    margin-top: 0.375rem;
  }
  .l-header__hamburger.is-open span:nth-child(1) {
    -webkit-transform: translateY(0.5rem) rotate(45deg);
            transform: translateY(0.5rem) rotate(45deg);
  }
  .l-header__hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }
  .l-header__hamburger.is-open span:nth-child(3) {
    -webkit-transform: translateY(-0.5rem) rotate(-45deg);
            transform: translateY(-0.5rem) rotate(-45deg);
  }
}

@media screen and (max-width: 767px) {
  body.is-menu-open {
    overflow: hidden;
  }
}
.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1340px;
  padding-right: 1.875rem;
  padding-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 500px;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.l-section {
  padding-block: 6.875rem;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding-block: 2.5rem;
  }
}

.l-main-lp {
  padding-top: 8.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-main-lp {
    padding-top: 3.75rem;
  }
}

.l-main-lp__wrapper {
  width: 100%;
  margin-right: clamp(17.5rem, 22.6804123711vw, 27.5rem);
}
@media screen and (max-width: 1024px) {
  .l-main-lp__wrapper {
    margin-right: 0;
  }
}

.c-title {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  z-index: 0;
  padding-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .c-title {
    padding-top: 1.875rem;
  }
}
.c-title::after {
  content: "PROBLEM";
  display: block;
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 12.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.125rem;
  position: absolute;
  bottom: -1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .c-title::after {
    font-size: 4.0625rem;
  }
}

.c-title__text {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02rem;
}
@media screen and (max-width: 767px) {
  .c-title__text {
    font-size: 1.25rem;
  }
}

.c-title__text-accent {
  position: relative;
}
.c-title__text-accent::after {
  content: "";
  position: absolute;
  bottom: 0.3125rem;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 0.625rem;
  background: -webkit-gradient(linear, left top, right top, from(#35c670), to(#b0e481));
  background: linear-gradient(90deg, #35c670 0%, #b0e481 100%);
}

.c-title__text-big {
  font-size: 3.75rem;
  font-weight: 700;
  letter-spacing: -0.0375rem;
}
@media screen and (max-width: 767px) {
  .c-title__text-big {
    font-size: 1.5625rem;
  }
}

.c-section__content {
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .c-section__content {
    margin-top: 2.5rem;
  }
}

.c-section__sentence {
  text-align: center;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.875rem; /* 150% */
  letter-spacing: -0.0125rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-section__sentence {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-top: 1.25rem;
  }
}

.c-btn {
  max-width: 27.5rem;
  width: 100%;
  display: block;
  border-radius: 3.75rem;
  background: #e2447e;
  -webkit-box-shadow: 0 0.1875rem 0.5rem 0 rgba(0, 0, 0, .25);
          box-shadow: 0 0.1875rem 0.5rem 0 rgba(0, 0, 0, .25);
  padding: 0.75rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn {
    max-width: 20.625rem;
    padding: 0.625rem 2.5rem 0.625rem 0.75rem;
    border-radius: 3.125rem;
  }
}

.c-btn__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.4375rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-btn__text {
    gap: 0.25rem;
  }
}

.c-btn__text-sub {
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.01rem;
}
@media screen and (max-width: 767px) {
  .c-btn__text-sub {
    font-size: 0.875rem;
    letter-spacing: -0.00875rem;
  }
}

.c-btn__text-main {
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.0175rem;
}
@media screen and (max-width: 767px) {
  .c-btn__text-main {
    font-size: 1.25rem;
    letter-spacing: -0.0125rem;
  }
}

.c-btn__arrow {
  max-width: 1.25rem;
  width: 100%;
  position: absolute;
  top: 50%;
  right: 1.0625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-btn__arrow {
    max-width: 1.25rem;
    right: 0.75rem;
  }
}

.p-area {
  background: #f8f8f8;
}

.p-area__title::after {
  content: "AREA";
  color: rgba(229, 247, 210, .3);
}

.p-area__sentence {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.875rem; /* 150% */
  letter-spacing: -0.0125rem;
}
@media screen and (max-width: 767px) {
  .p-area__sentence {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.5rem;
    letter-spacing: -0.01rem;
  }
}

.p-area__list-wrapper {
  max-width: 75rem;
  width: 100%;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0.1875rem 0.5rem 0 rgba(0, 0, 0, .25);
          box-shadow: 0 0.1875rem 0.5rem 0 rgba(0, 0, 0, .25);
  padding: 4.0625rem 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-area__list-wrapper {
    padding: 1.5rem 1rem;
    gap: 1rem;
    border-radius: 1rem;
  }
}

.p-area__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-area__list {
    gap: 0.625rem 0.5rem;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.p-area__list-item {
  max-width: 6.25rem;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-area__list-item {
    max-width: none;
    width: calc(33.33333% - 0.33333rem);
  }
}

.p-area__list-item-label {
  max-width: 10rem;
}
@media screen and (max-width: 767px) {
  .p-area__list-item-label {
    max-width: none;
    width: 100%;
  }
}

.p-area__list-item--local {
  max-width: 100%;
  width: auto;
  text-align: left;
}

.p-area__list-item-link {
  display: block;
  border-radius: 0.375rem;
  background: #f8f8f8;
  padding: 0.625rem;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: -0.01125rem;
  color: #333;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-area__list-item-link {
    padding: 0.5rem 0.375rem;
    font-size: 0.875rem;
    line-height: 1.6;
    letter-spacing: -0.00875rem;
    border-radius: 0.375rem;
  }
}

.p-area__list-item-label .p-area__list-item-link {
  color: #fff;
  border-radius: 0.375rem;
  background: -webkit-gradient(linear, left top, right top, from(#35c670), to(#b0e481));
  background: linear-gradient(90deg, #35c670 0%, #b0e481 100%);
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: -0.01375rem;
}
@media screen and (max-width: 767px) {
  .p-area__list-item-label .p-area__list-item-link {
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: -0.01rem;
    padding: 0.625rem 0.625rem;
  }
}

.p-area__list-item-link--local {
  display: inline-block;

}

.p-case {
  background: rgba(229, 247, 210, .3);
}

.p-case__title::after {
  content: "CASE";
}

.p-case__title-text-accent {
  position: relative;
}
.p-case__title-text-accent::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.25rem;
  background: -webkit-gradient(linear, left top, right top, from(#35c670), to(#b0e481));
  background: linear-gradient(90deg, #35c670 0%, #b0e481 100%);
}

.p-case__content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-case__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-case__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.875rem;
    width: 100%;
  }
}

.p-case__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: min(100%, 35.5rem);
  min-width: 0;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-case__item {
    max-width: 31.25rem;
    width: 100%;
    -ms-flex-item-align: center;
        align-self: center;
  }
}

.p-case__item-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-case__item-body {
  background-color: #fff;
  padding: 1.25rem;
  min-height: 26.25rem;
}
@media screen and (max-width: 767px) {
  .p-case__item-body {
    min-height: 100%;
  }
}

.p-case__item-client {
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875rem; /* 136.364% */
  letter-spacing: -0.01375rem;
  padding-block: 0.625rem;
  border-bottom: 0.0625rem solid #c2c2c2;
}
@media screen and (max-width: 767px) {
  .p-case__item-client {
    font-size: 1rem;
    line-height: 1.5rem;
    padding-block: 0.3125rem;
  }
}

.p-case__item-title {
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.5rem; /* 133.333% */
  letter-spacing: -0.01875rem;
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-case__item-title {
    font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: -0.0125rem;
    margin-top: 0.625rem;
  }
}

.p-case__item-text {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.875rem; /* 166.667% */
  letter-spacing: -0.01125rem;
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-case__item-text {
    font-size: 0.875rem;
    line-height: 1.5rem;
    margin-top: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-contact {
    background-color: #e5f7d2;
    padding-block: 2.5rem;
  }
}

.p-contact__aside {
  height: 100%;
  background-color: #e5f7d2;
  padding: 2.5rem;
  padding-top: 10.625rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: clamp(17.5rem, 22.6804123711vw, 27.5rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  max-width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  max-height: 100vh;
  max-height: 100dvh;
}
@media screen and (max-width: 1024px) {
  .p-contact__aside {
    width: 100%;
    overflow-y: visible;
    -webkit-overflow-scrolling: auto;
    overscroll-behavior-y: auto;
    z-index: auto;
    padding: 0;
    padding-block: 6.875rem;
    position: static;
    width: 100%;
    max-width: none;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    max-height: none;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .p-contact__aside {
    padding-block: 5rem;
  }
}

.p-contact__inner {
  max-width: 75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-contact__inner {
    max-width: 500px;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    margin-inline: auto;
  }
}

.p-contact__title {
  position: relative;
  color: #2d4c6f;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.28px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .p-contact__title {
    font-size: 2.5rem;
    letter-spacing: -0.32px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    font-size: 1.25rem;
  }
}

.p-contact__title::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  width: 100%;
  height: 0.625rem;
  background: -webkit-gradient(linear, left top, right top, from(#35c670), to(#b0e481));
  background: linear-gradient(90deg, #35c670 0%, #b0e481 100%);
  z-index: 0;
}

.p-contact__title span {
  position: relative;
  z-index: 1;
}

.p-contact__form {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}

.p-contact__head {
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: -0.16px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .p-contact__head {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__head {
    font-size: 1rem;
  }
}

.p-contact__data {
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.16px;
}
.p-contact__data input {
  width: 100%;
  border-radius: 0.375rem;
  border: 0.0625rem solid #c2c2c2;
  background: #f8f8f8;
  padding: 0.625rem 1.25rem;
}
@media screen and (max-width: 1024px) {
  .p-contact__data {
    margin-top: 0.3125rem;
  }
}

.p-contact__acceptance {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.14px;
}
.p-contact__acceptance span {
  cursor: pointer;
}
.p-contact__acceptance a {
  color: #00adda;
  border-bottom: 0.0625rem solid currentColor;
}

input[type=checkbox] {
  width: 0.0625rem;
  height: 0.0625rem;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.p-contact__data-checkbox .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 1.5rem;
}
.p-contact__data-checkbox .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 0.875rem;
  height: 0.875rem;
  border: 0.0625rem solid #00adda;
}
.p-contact__data-checkbox .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 0.875rem;
  height: 0.875rem;
  background: url(../images/webp/check.webp) no-repeat center center/cover;
  opacity: 0;
}

.p-contact__submit {
  margin-top: 1.25rem;
  position: relative;
  max-width: 15.625rem;
  width: 100%;
  margin-inline: auto;
}
.p-contact__submit::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.75rem;
  width: 0.8125rem;
  height: 1.1875rem;
  background: url(../images/webp/arrow.webp) no-repeat center center/cover;
}
.p-contact__submit input {
  color: #fff;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.22px;
  border-radius: 3.75rem;
  background: #35c670;
  -webkit-box-shadow: 0 0.1875rem 0.5rem 0 rgba(0, 0, 0, .25);
          box-shadow: 0 0.1875rem 0.5rem 0 rgba(0, 0, 0, .25);
  border: none;
  padding-block: 0.9375rem;
  width: 100%;
}

.p-cta {
  background: url(../images/webp/cta__bg.webp) no-repeat center center/cover;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta {
    background-position: center top;
  }
}

.p-cta__inner {
  position: relative;
  z-index: 1;
}
.p-cta__inner::after {
  content: "";
  display: block;
  background: url(../images/webp/cta__person.webp) no-repeat center center/cover;
  width: min(21.25rem, 17.5257731959vw);
  aspect-ratio: 340/590;
  height: auto;
  position: absolute;
  bottom: 0;
  right: min(5.375rem, 4.4329896907vw);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-cta__inner::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__inner {
    padding-inline: 1.25rem;
  }
}

.p-cta__head {
  background: #2d4c6f;
  -webkit-box-shadow: 0 0.1875rem 0.5rem 0 rgba(0, 0, 0, .25);
          box-shadow: 0 0.1875rem 0.5rem 0 rgba(0, 0, 0, .25);
  width: 100%;
  padding-block: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .p-cta__head {
    padding-block: 1.125rem;
  }
}

.p-cta__title {
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.5rem; /* 93.333% */
  letter-spacing: -0.0375rem;
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: 1.5625rem;
    line-height: 2.125rem;
    letter-spacing: -0.0175rem;
  }
}

.p-cta__content {
  padding-block: 2.625rem 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-cta__content {
    padding-block: 2rem 2.5rem;
  }
}

.p-cta__sentence {
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.5rem; /* 186.667% */
  letter-spacing: -0.01875rem;
}
@media screen and (max-width: 767px) {
  .p-cta__sentence {
    font-size: 1.125rem;
    line-height: 2.125rem;
    letter-spacing: -0.01375rem;
  }
}

.p-cta__sentence-big {
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.5rem;
  letter-spacing: -0.025rem;
}
@media screen and (max-width: 767px) {
  .p-cta__sentence-big {
    font-size: 1.5625rem;
    line-height: 2.125rem;
    letter-spacing: -0.0175rem;
  }
}

.p-cta__img {
  max-width: 5.1875rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-cta__img {
    max-width: 4rem;
    margin-top: 1.25rem;
  }
}

.p-cta__text {
  margin-top: 0.625rem;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.75rem; /* 155.556% */
}
@media screen and (max-width: 767px) {
  .p-cta__text {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 1.625rem;
  }
}

.p-cta__btn {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-cta__btn {
    margin-top: 1.75rem;
  }
}

.p-faq {
  background-color: #f8f8f8;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding-bottom: 2.5rem;
  }
}

.p-faq__title::after {
  content: "FAQ";
}

@media screen and (max-width: 767px) {
  .p-faq__content {
    margin-top: 3.125rem;
  }
}

.p-faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-faq__list {
    gap: 1.25rem;
  }
}

.p-faq__item {
  background-color: #fff;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-faq__item {
    border-radius: 1rem;
  }
}

details.js-details {
  overflow: hidden;
}

.p-faq__answer-content.js-content {
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
  .p-faq__answer-content.js-content {
    -webkit-transition: none;
    transition: none;
  }
}
.p-faq__question-summary {
  padding: 1.875rem 2.5rem;
  border-radius: 1.25rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-faq__question-summary {
    padding: 0.9375rem;
    border-radius: 1rem;
  }
}

.p-faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-faq__question {
    gap: 0.75rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-right: 1.25rem;
  }
}

.p-faq__question-icon {
  color: #2d4c6f;
  font-family: Montserrat;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.5rem; /* 133.333% */
  letter-spacing: -0.01875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-faq__question-icon {
    font-size: 1.25rem;
    line-height: 1.75rem;
    letter-spacing: -0.0125rem;
  }
}

.p-faq__question-text {
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.5rem; /* 133.333% */
  letter-spacing: -0.01875rem;
}
@media screen and (max-width: 767px) {
  .p-faq__question-text {
    font-size: 1rem;
    line-height: 1.5625rem;
    letter-spacing: -0.0125rem;
  }
}

.p-faq__question-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.25rem;
  height: auto;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media screen and (max-width: 767px) {
  .p-faq__question-arrow {
    width: 0.9375rem;
  }
}

summary.js-summary[aria-expanded=true] .p-faq__question-arrow {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}

.p-faq__answer {
  padding: 1.875rem 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-faq__answer {
    padding: 1rem 1.25rem;
    gap: 0.75rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-faq__answer-icon {
  color: #35c670;
  font-family: Montserrat;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.5rem; /* 133.333% */
  letter-spacing: -0.01875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-faq__answer-icon {
    font-size: 1.25rem;
    line-height: 1.75rem;
    letter-spacing: -0.0125rem;
  }
}

.p-faq__answer-text {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.875rem; /* 166.667% */
  letter-spacing: -0.01125rem;
}
@media screen and (max-width: 767px) {
  .p-faq__answer-text {
    font-size: 0.875rem;
    line-height: 1.625rem;
    letter-spacing: -0.01rem;
  }
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.p-feature__title::after {
  content: "FEATURE";
  color: #e5f7d2;
  opacity: 0.3;
}

.p-feature__title-text {
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.025rem;
}
@media screen and (max-width: 767px) {
  .p-feature__title-text {
    font-size: 1.25rem;
    line-height: 1.75rem;
    letter-spacing: -0.0125rem;
  }
}

.p-feature__title-text-accent {
  background: -webkit-gradient(linear, left top, right top, from(#35c670), to(#b0e481));
  background: linear-gradient(90deg, #35c670 0%, #b0e481 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 6.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.0625rem;
  font-family: Montserrat;
}
@media screen and (max-width: 767px) {
  .p-feature__title-text-accent {
    font-size: 5rem;
  }
}

.p-feature__sentence {
  text-align: center;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.875rem; /* 150% */
  letter-spacing: -0.0125rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-feature__sentence {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-top: 1.25rem;
  }
}

.p-feature__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.625rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-feature__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
}

.p-feature__item:nth-child(odd) .p-feature__item-section {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-feature__item:nth-child(odd) .p-feature__item-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-feature__item-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-feature__item-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
    max-width: 31.25rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-feature__item-head {
  max-width: 28.75rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-feature__item-head {
    max-width: 100%;
  }
}

.p-feature__item-img {
  width: 100%;
  height: auto;
}

.p-feature__body {
  max-width: 43.4375rem;
  width: 100%;
}

.p-feature__item-number {
  max-width: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-feature__item-number {
    max-width: 3.125rem;
  }
}

.p-feature__item-title {
  margin-top: 1.25rem;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.1875rem; /* 81.25% */
  letter-spacing: -0.02rem;
}
@media screen and (max-width: 767px) {
  .p-feature__item-title {
    font-size: 1.25rem;
    margin-top: 0.625rem;
  }
}

.p-feature__item-text {
  margin-top: 2.5rem;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.125rem; /* 154.545% */
  letter-spacing: -0.01375rem;
}
@media screen and (max-width: 767px) {
  .p-feature__item-text {
    font-size: 0.875rem;
    line-height: 1.5rem;
    margin-top: 1.25rem;
  }
}

.p-flow {
  background-color: #f8f8f8;
}

.p-flow__title::after {
  content: "FLOW";
}

.p-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-flow__list {
    gap: 1.875rem;
  }
}

.p-flow__item {
  width: 100%;
  border-radius: 1.25rem;
  background: #fff;
  -webkit-box-shadow: 0 0.1875rem 0.5rem 0 rgba(0, 0, 0, .25);
          box-shadow: 0 0.1875rem 0.5rem 0 rgba(0, 0, 0, .25);
}
@media screen and (max-width: 767px) {
  .p-flow__item {
    max-width: 31.25rem;
  }
}

.p-flow__item-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 2.8125rem 4.6875rem;
}
@media screen and (max-width: 767px) {
  .p-flow__item-section {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 31.25rem;
    gap: 1.25rem;
    padding: 1.25rem;
  }
}

.p-flow__item-head {
  max-width: 9.375rem;
  width: 100%;
  border-radius: 1.875rem;
  overflow: hidden;
}

.p-flow__item-number {
  color: #35c670;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875rem; /* 166.667% */
  letter-spacing: -0.01125rem;
}
@media screen and (max-width: 767px) {
  .p-flow__item-number {
    font-size: 1.25rem;
  }
}

.p-flow__item-title {
  margin-top: 1.125rem;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.01875rem;
}
@media screen and (max-width: 767px) {
  .p-flow__item-title {
    margin-top: 0.1875rem;
    font-size: 1.125rem;
  }
}

.p-flow__item-text {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875rem; /* 166.667% */
  letter-spacing: -0.01125rem;
}
@media screen and (max-width: 767px) {
  .p-flow__item-text {
    margin-top: 0.3125rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

.p-fv {
  padding-block: 5.9375rem;
  position: relative;
  z-index: 0;
}
.p-fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/webp/fv__bg.webp) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-fv {
    padding-block: 2.5rem;
  }
}

.p-fv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.1875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-fv__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.5625rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .p-fv__left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
}

.p-fv__catch {
  border-radius: 3.125rem;
  background: #35c670;
  padding: 0.625rem 2.1875rem;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-fv__catch {
    padding: 0.3125rem 1.5625rem;
    margin-inline: auto;
  }
}

.p-fv__catch-text {
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.01375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-fv__catch-text {
    font-size: 0.875rem;
    letter-spacing: -0.01rem;
  }
}

.p-fv__catch-text-img {
  max-width: 8.5625rem;
  height: auto;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-fv__catch-text-img {
    max-width: 5rem;
  }
}

.p-fv__head {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-fv__head {
    margin-top: 0.9375rem;
  }
}

.p-fv__title {
  color: #35c670;
}

.p-fv__title--small {
  color: #35c670;
  display: block;
  font-size: 2.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.02375rem;
}
@media screen and (max-width: 767px) {
  .p-fv__title--small {
    font-size: 1.5rem;
    letter-spacing: -0.015rem;
  }
}

.p-fv__title--black {
  color: #333;
}

.p-fv__title-main {
  font-size: 4.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.04375rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-fv__title-main {
    font-size: 2.5rem;
    letter-spacing: -0.025rem;
  }
}

.p-fv__title-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-fv__title-sub {
    gap: 0.625rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-fv__title-sub-text {
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.01375rem;
}
@media screen and (max-width: 767px) {
  .p-fv__title-sub-text {
    font-size: 0.875rem;
    letter-spacing: -0.00875rem;
  }
}

.p-fv__title-sns-link {
  width: 1.75rem;
  height: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-fv__title-sns-link {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.p-fv__sentence {
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01rem;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-fv__sentence {
    font-size: 0.875rem;
    letter-spacing: -0.00875rem;
    margin-top: 1.25rem;
    max-width: 31.25rem;
    margin-inline: auto;
  }
}

.p-fv__list {
  margin-top: 2.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.8125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-fv__list {
    margin-top: 1.5625rem;
    gap: 0.9375rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-fv__list-item {
  border: 0.1875rem solid #35c670;
  border-radius: 50%;
  background-color: #fff;
  width: 9rem;
  height: 9rem;
  color: #35c670;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-fv__list-item {
    width: 6.25rem;
    height: 6.25rem;
    border-width: 0.125rem;
  }
}

.p-fv__item-text--sub {
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.01rem;
}
@media screen and (max-width: 767px) {
  .p-fv__item-text--sub {
    font-size: 0.75rem;
    letter-spacing: -0.0075rem;
  }
}

.p-fv__item-text {
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.0175rem;
}
@media screen and (max-width: 767px) {
  .p-fv__item-text {
    font-size: 1.25rem;
    letter-spacing: -0.0125rem;
  }
}

.p-fv__item-text--small {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.0075rem;
}
@media screen and (max-width: 767px) {
  .p-fv__item-text--small {
    font-size: 0.625rem;
    letter-spacing: -0.00625rem;
  }
}

.p-fv__right {
  width: 40%;
}

@media screen and (max-width: 767px) {
  .p-fv__right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-fv__image {
    max-width: 15.625rem;
    width: 100%;
    margin-inline: auto;
  }
}

.p-message {
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
  padding-bottom: 6.875rem;
}
.p-message::after {
  content: "";
  background: url(../images/webp/message__bg.webp) no-repeat center center/cover;
  width: 32.3125rem;
  height: 32.375rem;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-message::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-message {
    padding-bottom: 2.5rem;
  }
}

.p-message__inner {
  position: relative;
  padding-inline: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-message__inner {
    padding-inline: 1.25rem;
  }
}

.p-message__title::after {
  color: rgba(229, 247, 210, .3);
  content: "MESSAGE";
}

.p-message__content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-message__content-wrap {
    margin-top: 3.125rem;
    gap: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-message__left {
  max-width: 43.75rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-message__left {
    max-width: 100%;
  }
}

.p-message__content-title {
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.125rem; /* 125% */
  letter-spacing: -0.025rem;
}
@media screen and (max-width: 767px) {
  .p-message__content-title {
    font-size: 1.25rem;
    line-height: 2.125rem;
    letter-spacing: -0.015rem;
  }
}

.p-message__text {
  margin-top: 2.5rem;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.875rem; /* 166.667% */
  letter-spacing: -0.01125rem;
}
@media screen and (max-width: 767px) {
  .p-message__text {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    letter-spacing: -0.01rem;
  }
}

.p-message__name {
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.5rem; /* 133.333% */
  letter-spacing: -0.01875rem;
}
@media screen and (max-width: 767px) {
  .p-message__name {
    font-size: 1.25rem;
    line-height: 2rem;
    letter-spacing: -0.01375rem;
  }
}

.p-messsage__text-small {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.5rem;
  letter-spacing: -0.01125rem;
}
@media screen and (max-width: 767px) {
  .p-messsage__text-small {
    font-size: 0.875rem;
    line-height: 1.75rem;
    letter-spacing: -0.01rem;
  }
}

.p-message__profile {
  margin-top: 2.5rem;
  border: 0.125rem solid #35c670;
  background: #fff;
  padding: 0.625rem 2.5rem;
  max-width: 38.125rem;
  margin-left: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-message__profile {
    margin-top: 1.75rem;
    padding: 0.9375rem;
    max-width: 100%;
    margin-left: 0;
  }
}

.p-message__profile-title {
  color: #35c670;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875rem; /* 166.667% */
  letter-spacing: -0.01125rem;
}
@media screen and (max-width: 767px) {
  .p-message__profile-title {
    font-size: 1rem;
    line-height: 1.625rem;
    letter-spacing: -0.01rem;
  }
}

.p-message__profile-text {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.875rem; /* 166.667% */
  letter-spacing: -0.01125rem;
}
@media screen and (max-width: 767px) {
  .p-message__profile-text {
    font-size: 0.875rem;
    line-height: 1.25rem;
    letter-spacing: -0.01rem;
  }
}

.p-message__right {
  width: 25rem;
  height: auto;
  border: 1px solid #35c670;
  background-color: #f3f2f2;
  padding-inline: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-message__right {
    max-width: 25rem;
    width: 100%;
  }
}

.p-partner {
  background-color: #fff;
  padding-block: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-partner {
    padding-block: 1.25rem;
  }
}

.p-partner__inner {
  width: 100%;
}

.p-partner__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.8125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-partner__list {
    gap: 1.25rem;
  }
}

.p-partner__item:nth-child(1), .p-partner__item:nth-child(3) {
  max-width: 7rem;
}
@media screen and (max-width: 767px) {
  .p-partner__item:nth-child(1), .p-partner__item:nth-child(3) {
    max-width: 5rem;
  }
}
.p-partner__item:nth-child(2), .p-partner__item:nth-child(4), .p-partner__item:nth-child(5) {
  max-width: 14.625rem;
}
@media screen and (max-width: 767px) {
  .p-partner__item:nth-child(2), .p-partner__item:nth-child(4), .p-partner__item:nth-child(5) {
    max-width: 9.375rem;
  }
}

.p-partner__img {
  display: block;
  max-width: 100%;
  height: auto;
}

.p-plan__title::after {
  content: "PLAN";
  color: rgba(229, 247, 210, .3);
}

.p-plan__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-plan__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}

.p-plan__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 32.5rem;
  width: 100%;
}

.p-plan__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  border: 0.25rem solid transparent;
  background: #fff;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-plan__card--komikomi {
  border-color: #35c670;
}

.p-plan__card--standard {
  border-color: #2d4c6f;
}

.p-plan__card-badge {
  position: absolute;
  top: 0.625rem;
  left: 0;
  padding: 0.25rem 1.5625rem 0.1875rem 0.25rem;
  background: #ddff5a;
  -webkit-clip-path: circle(100% at 0 50%);
          clip-path: circle(100% at 0 50%);
  color: #2d4c6f;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.00875rem;
}
@media screen and (max-width: 767px) {
  .p-plan__card-badge {
    font-size: 0.625rem;
    top: 0.375rem;
    left: 0;
  }
}

.p-plan__card-head {
  padding: 1.25rem 1rem;
  text-align: center;
}
.p-plan__card--komikomi .p-plan__card-head {
  background: #35c670;
}
.p-plan__card--standard .p-plan__card-head {
  background: #2d4c6f;
}

.p-plan__card-name {
  margin: 0;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01375rem;
}
@media screen and (max-width: 767px) {
  .p-plan__card-name {
    font-size: 1.125rem;
  }
}

.p-plan__card-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  background: #fff;
}

.p-plan__card-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 1.125rem 1.25rem;
  border-bottom: 0.0625rem solid #e8e8e8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-plan__card-row {
    padding: 1rem 0.875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.p-plan__card-row--padding {
  padding-block: 4.125rem;
}
@media screen and (max-width: 767px) {
  .p-plan__card-row--padding {
    padding-block: 1rem;
  }
}

.p-plan__card-row--lead {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-plan__card-row--lead {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-plan__card-row--last {
  border-bottom: none;
}

.p-plan__card-row--stack-value {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-plan__card-lead {
  margin: 0;
  width: 100%;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.65;
  color: #333;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.p-plan__card-lead::after {
  content: "";
  width: 100%;
  height: 0.4375rem;
  background-color: #ddff5a;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-plan__card-lead {
    font-size: 0.875rem;
  }
}

.p-plan__card-lead--plain {
  color: #2d4c6f;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.01375rem;
}
.p-plan__card-lead--plain::after {
  content: none;
}
@media screen and (max-width: 767px) {
  .p-plan__card-lead--plain {
    font-size: 1rem;
    line-height: 1rem;
  }
}

.p-plan__card-lead-big {
  color: #2d4c6f;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.01875rem;
}
@media screen and (max-width: 767px) {
  .p-plan__card-lead-big {
    font-size: 1.125rem;
  }
}

.p-plan__card-lead-under {
  border-bottom: 0.1875rem solid #b0e481;
  padding-bottom: 0.125rem;
}

.p-plan__card-label {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.01125rem;
}
@media screen and (max-width: 767px) {
  .p-plan__card-label {
    font-size: 0.875rem;
    max-width: 100%;
  }
}

.p-plan__card-label--stack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-plan__card-value {
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.01375rem;
}
@media screen and (max-width: 767px) {
  .p-plan__card-value {
    font-size: 1rem;
    line-height: 0.8125rem;
  }
}

.p-plan__card-value--green {
  color: #35c670;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-plan__card-value--green {
    font-size: 1rem;
  }
}

.p-plan__card-rate {
  font-family: Montserrat;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.01875rem;
}
@media screen and (max-width: 767px) {
  .p-plan__card-rate {
    font-size: 1.75rem;
  }
}

.p-plan__card-value-block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 8.75rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-plan__card-value-block {
    width: 100%;
    min-width: 0;
    text-align: left;
  }
}

.p-plan__card-price {
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.125rem; /* 81.818% */
  letter-spacing: -0.01375rem;
}
@media screen and (max-width: 767px) {
  .p-plan__card-price {
    font-size: 1rem;
    line-height: 0.8125rem;
  }
}

.p-plan__card-note {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.125rem;
  letter-spacing: -0.0075rem;
  text-align: right;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-plan__card-note {
    text-align: left;
    font-size: 0.625rem;
    line-height: 0.8125rem;
  }
}

.p-plan__bottom {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-plan__bottom {
    margin-top: 1.25rem;
  }
}

.p-plan__bottom-text {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.01rem;
}
@media screen and (max-width: 767px) {
  .p-plan__bottom-text {
    font-size: 0.875rem;
  }
}

.p-plan__price {
  background: #f8f8f8;
  padding: 2.5rem;
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-plan__price {
    margin-top: 2.5rem;
    padding: 1.25rem;
  }
}

.p-plan__price-section {
  padding-left: 3.125rem;
  position: relative;
}
.p-plan__price-section::after {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#35c670), to(#b0e481));
  background: linear-gradient(90deg, #35c670 0%, #b0e481 100%);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-plan__price-title {
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.025rem;
}
@media screen and (max-width: 767px) {
  .p-plan__price-title {
    font-size: 1.5625rem;
  }
}

.p-plan__price-item-head {
  margin-top: 2.5rem;
  padding-left: 3.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-plan__price-item-head {
    margin-top: 1.25rem;
    padding-left: 2.5rem;
  }
}
.p-plan__price-item-head::after {
  content: "";
  width: 2.5rem;
  height: 4.1875rem;
  background: url(../images/webp/plan__price-item-title1.webp) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-plan__price-item-head::after {
    width: 1.875rem;
    height: 2.5rem;
  }
}

.p-plan__price-item:nth-child(2) .p-plan__price-item-head::after {
  background-image: url(../images/webp/plan__price-item-title2.webp);
}

.p-plan__price-item-title {
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875rem; /* 136.364% */
  letter-spacing: -0.01375rem;
}
@media screen and (max-width: 767px) {
  .p-plan__price-item-title {
    font-size: 1.125rem;
  }
}

.p-plan__price-item-body {
  width: 100%;
  margin-top: 2.5rem;
}

.p-plan__sim {
  display: grid;
  grid-template-columns: -webkit-max-content minmax(-webkit-min-content, 1fr) minmax(-webkit-min-content, 1fr);
  grid-template-columns: max-content minmax(min-content, 1fr) minmax(min-content, 1fr);
  gap: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  max-width: 62.5rem;
  margin-inline: auto;
  border-radius: 0.75rem;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.p-plan__sim > :nth-child(1) {
  grid-column: 2;
  grid-row: 1;
}
.p-plan__sim > :nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}
.p-plan__sim > :nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}
.p-plan__sim > :nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}
.p-plan__sim > :nth-child(5) {
  grid-column: 3;
  grid-row: 2;
  white-space: nowrap;
}
.p-plan__sim > :nth-child(6) {
  grid-column: 1;
  grid-row: 3;
}
.p-plan__sim > :nth-child(7) {
  grid-column: 2;
  grid-row: 3;
}
.p-plan__sim > :nth-child(8) {
  grid-column: 3;
  grid-row: 3;
  white-space: nowrap;
}
.p-plan__sim > :nth-child(9) {
  grid-column: 1;
  grid-row: 4;
}
.p-plan__sim > :nth-child(10) {
  grid-column: 2;
  grid-row: 4;
}
.p-plan__sim > :nth-child(11) {
  grid-column: 3;
  grid-row: 4;
  white-space: nowrap;
}
.p-plan__sim > :nth-child(12) {
  grid-column: 1;
  grid-row: 5;
}
.p-plan__sim > :nth-child(13) {
  grid-column: 2;
  grid-row: 5;
}
.p-plan__sim > :nth-child(14) {
  grid-column: 3;
  grid-row: 5;
  white-space: nowrap;
}
.p-plan__sim > :nth-child(15) {
  grid-column: 1;
  grid-row: 6;
}
.p-plan__sim > :nth-child(16) {
  grid-column: 2;
  grid-row: 6;
}
.p-plan__sim > :nth-child(17) {
  grid-column: 3;
  grid-row: 6;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-plan__sim {
    min-width: 32.5rem;
  }
}

.p-plan__sim-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-plan__sim-scroll {
    margin-inline: -1.25rem;
    padding-inline: 1.25rem;
  }
}

.p-plan__sim-cell {
  background-color: #fff;
  text-align: center;
  padding: 1rem 0.875rem;
  border-right: 0.0625rem solid #e8e8e8;
  border-bottom: 0.0625rem solid #e8e8e8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.45;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-plan__sim-cell {
    padding: 0.75rem 0.625rem;
    font-size: 0.8125rem;
  }
}

.p-plan__sim-cell--head {
  position: relative;
  min-height: 6.25rem;
  padding: 1.25rem 0.75rem 1rem;
}
.p-plan__sim-cell--head.p-plan__sim-cell--komikomi {
  background: #35c670;
  border-radius: 0.75rem 1.25rem 0 0;
  display: block;
}
.p-plan__sim-cell--head.p-plan__sim-cell--standard {
  background: #2d4c6f;
  border-radius: 1.25rem 1.25rem 0 0;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-plan__sim-cell--head {
    min-height: 5.5rem;
    padding: 1rem 0.625rem;
  }
  .p-plan__sim-cell--head.p-plan__sim-cell--komikomi {
    padding-top: 1.5rem;
  }
}

.p-plan__sim-badge {
  position: absolute;
  top: 0.625rem;
  left: 0;
  padding: 0.25rem 1.5625rem 0.1875rem 0.25rem;
  background: #ddff5a;
  -webkit-clip-path: circle(100% at 0 50%);
          clip-path: circle(100% at 0 50%);
  color: #2d4c6f;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.00875rem;
}
@media screen and (max-width: 767px) {
  .p-plan__sim-badge {
    font-size: 0.625rem;
    top: 0.375rem;
    left: 0;
  }
}

.p-plan__sim-head-title {
  margin: 0;
  color: #fff;
  color: #fff;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875rem; /* 107.143% */
  letter-spacing: -0.0175rem;
}
@media screen and (max-width: 767px) {
  .p-plan__sim-head-title {
    font-size: 1rem;
  }
}

.p-plan__sim-head-sub {
  margin-top: 0.25rem;
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875rem; /* 187.5% */
  letter-spacing: -0.01rem;
}
@media screen and (max-width: 767px) {
  .p-plan__sim-head-sub {
    font-size: 0.6875rem;
    line-height: 0.6875rem;
    margin-top: 0.375rem;
  }
}

.p-plan__sim-cell--standard .p-plan__sim-head-title {
  margin-top: 0;
}

.p-plan__sim-cell--label {
  background: #bdbdbd;
  color: #fff;
  font-family: Montserrat;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.875rem; /* 136.364% */
  letter-spacing: -0.01375rem;
}
@media screen and (max-width: 767px) {
  .p-plan__sim-cell--label {
    max-width: 6.25rem;
    font-size: 0.75rem;
    white-space: normal;
  }
}

.p-plan__sim-cell--label-last {
  border-bottom: none;
  border-radius: 0 0 0 0.75rem;
}

.p-plan__sim-cell--value {
  font-family: Montserrat;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.875rem; /* 107.143% */
  letter-spacing: -0.0175rem;
}
@media screen and (max-width: 767px) {
  .p-plan__sim-cell--value {
    font-size: 1.125rem;
    line-height: 1.25rem;
  }
}

.p-plan__sim-note {
  display: block;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.875rem;
  letter-spacing: -0.01125rem;
}
@media screen and (max-width: 767px) {
  .p-plan__sim-note {
    font-size: 0.6875rem;
  }
}

.p-plan__sim-cell--value .p-plan__sim-note {
  display: inline;
  margin-top: 0;
  margin-left: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-plan__sim-cell--value .p-plan__sim-note {
    display: block;
    margin-left: 0;
    margin-top: 0.25rem;
  }
}

.p-plan__sim-cell--total {
  font-size: 1.375rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-plan__sim-cell--total {
    font-size: 1.125rem;
  }
}

.p-plan__sim-cell--total-komikomi {
  color: #35c670;
  font-family: Montserrat;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875rem; /* 93.75% */
  letter-spacing: -0.02rem;
}
@media screen and (max-width: 767px) {
  .p-plan__sim-cell--total-komikomi {
    font-size: 1.375rem;
    line-height: 1.375rem;
  }
}

.p-plan__sim-cell--total-standard {
  color: #2d4c6f;
  font-family: Montserrat;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875rem; /* 93.75% */
  letter-spacing: -0.02rem;
}
@media screen and (max-width: 767px) {
  .p-plan__sim-cell--total-standard {
    font-size: 1.375rem;
    line-height: 1.375rem;
  }
}

.p-plan__item-body-text {
  text-align: center;
  font-family: Montserrat;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875rem; /* 136.364% */
  letter-spacing: -0.01375rem;
  padding-top: 3.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-plan__item-body-text {
    padding-top: 3.125rem;
    font-size: 1rem;
  }
}
.p-plan__item-body-text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 6.6875rem;
  height: 3.9375rem;
  background: url(../images/webp/plan__price-arrow.webp) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-plan__item-body-text::after {
    width: 5rem;
    height: 3.125rem;
  }
}

.p-plan__item-body-text-accent {
  background: #35c670;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Montserrat;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875rem;
  letter-spacing: -0.02rem;
}
@media screen and (max-width: 767px) {
  .p-plan__item-body-text-accent {
    font-size: 1.5625rem;
  }
}

.p-plan__price-bottom {
  margin-top: 5.625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-plan__price-bottom {
    margin-top: 2.5rem;
  }
}

.p-plan__price-bottom-text {
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875rem; /* 136.364% */
  letter-spacing: -0.01375rem;
}
@media screen and (max-width: 767px) {
  .p-plan__price-bottom-text {
    font-size: 1rem;
  }
}

.p-plan__btn {
  margin-top: 2.5rem;
}

.p-point {
  background: rgba(229, 247, 210, .3);
}

.p-point__title::after {
  content: "POINT";
}

.p-point__title-text-accent {
  background: -webkit-gradient(linear, left top, right top, from(#35c670), to(#b0e481));
  background: linear-gradient(90deg, #35c670 0%, #b0e481 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Montserrat;
  font-size: 6.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 5.25rem;
  letter-spacing: -0.0625rem;
}
@media screen and (max-width: 767px) {
  .p-point__title-text-accent {
    font-size: 3.125rem;
  }
}

.p-point__title-text-big {
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 5.25rem;
  letter-spacing: -0.0375rem;
}
@media screen and (max-width: 767px) {
  .p-point__title-text-big {
    font-size: 1.5625rem;
  }
}

.p-point__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.625rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-point__list {
    gap: 2.5rem;
  }
}

.p-point__item-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3rem 4.25rem;
  border-radius: 1.25rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-point__item-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem;
  }
}

.p-point__item-head {
  max-width: 20rem;
  width: 100%;
  min-width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-point__item-head {
    max-width: 12.5rem;
  }
}

.p-point__item-number {
  color: #35c670;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875rem; /* 166.667% */
  letter-spacing: -0.01125rem;
}
@media screen and (max-width: 767px) {
  .p-point__item-number {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

.p-point__item-title {
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.125rem; /* 125% */
  letter-spacing: -0.025rem;
}
@media screen and (max-width: 767px) {
  .p-point__item-title {
    font-size: 1.125rem;
    line-height: 1.5rem;
    margin-top: 0.3125rem;
  }
}

.p-point__item-text {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2rem; /* 160% */
  letter-spacing: -0.0125rem;
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-point__item-text {
    font-size: 0.875rem;
    line-height: 1.5rem;
    margin-top: 0.9375rem;
  }
}

.p-point__bottom {
  margin-top: 5.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-point__bottom {
    gap: 0.625rem;
    margin-top: 2.5rem;
    text-align: left;
  }
}

.p-point__bottom-text {
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2rem; /* 145.455% */
  letter-spacing: -0.01375rem;
}
@media screen and (max-width: 767px) {
  .p-point__bottom-text {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
}

.p-point__bottom-text-bold {
  font-weight: 700;
}

.p-point__button {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-point__button {
    margin-top: 1.25rem;
  }
}

.p-problem {
  background: #f8f8f8;
  position: relative;
}
.p-problem::after {
  content: "";
  display: block;
  width: 4.1875rem;
  height: 3.125rem;
  background: url(../images/webp/problem__bottom-deco.webp) no-repeat center center/cover;
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-problem::after {
    width: 2.5rem;
    height: 1.875rem;
    bottom: 0.625rem;
  }
}

.p-problem__title-text-big {
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.025rem;
}

.p-problem__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-problem__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5625rem;
  }
}

.p-problem__item-section {
  background-color: #fff;
  max-width: 36.25rem;
  width: 100%;
  border-radius: 1.25rem;
  border: 0.0625rem solid #c2c2c2;
  padding: 1.4375rem 2.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-problem__item-section {
    max-width: 25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
}

.p-problem__img {
  max-width: 6.5rem;
  width: 100%;
}

.p-problem__item-title {
  color: #2d4c6f;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.015rem;
}
@media screen and (max-width: 767px) {
  .p-problem__item-title {
    font-size: 1.25rem;
    letter-spacing: -0.0125rem;
  }
}

.p-problem__item-text {
  margin-top: 0.875rem;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  letter-spacing: -0.01rem;
}
@media screen and (max-width: 767px) {
  .p-problem__item-text {
    font-size: 0.875rem;
    letter-spacing: -0.00875rem;
  }
}

.p-reason__title::after {
  content: "REASON";
  color: rgba(229, 247, 210, .3);
}
@media screen and (max-width: 767px) {
  .p-reason__title {
    max-width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media screen and (max-width: 767px) {
  .p-reason__sentence {
    margin-top: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-reason__content {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-inline: -1.25rem;
    padding-inline: 1.25rem;
    padding-bottom: 0.25rem;
  }
}

.p-reason__compare {
  display: grid;
  grid-template-columns: -webkit-max-content minmax(0, 28.375rem) minmax(0, 26.875rem);
  grid-template-columns: max-content minmax(0, 28.375rem) minmax(0, 26.875rem);
  gap: 0;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-reason__compare {
    width: 100%;
    grid-template-columns: -webkit-max-content minmax(0, 1fr) minmax(0, 1fr);
    grid-template-columns: max-content minmax(0, 1fr) minmax(0, 1fr);
  }
}
.p-reason__compare > :nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}
.p-reason__compare > :nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}
.p-reason__compare > :nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}
.p-reason__compare > :nth-child(6) {
  grid-column: 1;
  grid-row: 3;
}
.p-reason__compare > :nth-child(7) {
  grid-column: 2;
  grid-row: 3;
}
.p-reason__compare > :nth-child(8) {
  grid-column: 3;
  grid-row: 3;
}
.p-reason__compare > :nth-child(9) {
  grid-column: 1;
  grid-row: 4;
}
.p-reason__compare > :nth-child(10) {
  grid-column: 2;
  grid-row: 4;
}
.p-reason__compare > :nth-child(11) {
  grid-column: 3;
  grid-row: 4;
}
.p-reason__compare > :nth-child(12) {
  grid-column: 1;
  grid-row: 5;
}
.p-reason__compare > :nth-child(13) {
  grid-column: 2;
  grid-row: 5;
}
.p-reason__compare > :nth-child(14) {
  grid-column: 3;
  grid-row: 5;
}
.p-reason__compare > :nth-child(15) {
  grid-column: 1;
  grid-row: 6;
}
.p-reason__compare > :nth-child(16) {
  grid-column: 2;
  grid-row: 6;
}
.p-reason__compare > :nth-child(17) {
  grid-column: 3;
  grid-row: 6;
}
.p-reason__compare > :nth-child(18) {
  grid-column: 1;
  grid-row: 7;
}
.p-reason__compare > :nth-child(19) {
  grid-column: 2;
  grid-row: 7;
}
.p-reason__compare > :nth-child(20) {
  grid-column: 3;
  grid-row: 7;
}

.p-reason__compare-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 1.125rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.009375rem;
}
@media screen and (max-width: 767px) {
  .p-reason__compare-cell {
    font-size: 0.8125rem;
    padding: 0.625rem;
  }
}

.p-reason__compare-cell--label {
  justify-self: stretch;
  max-width: 6.25rem;
  width: 100%;
  min-width: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #bcbcbc;
  color: #fff;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, .45);
  padding: 1.125rem 1rem;
  height: auto;
  min-height: 0;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.01rem;
}
@media screen and (max-width: 767px) {
  .p-reason__compare-cell--label {
    font-size: 0.75rem;
    padding: 0.875rem 0.75rem;
  }
}

.p-reason__compare-cell--label-last {
  border-bottom: none;
  border-radius: 0 0 0 0.75rem;
}

.p-reason__compare-cell--head {
  min-height: 3.5rem;
  color: #fff;
  font-size: 1rem;
  letter-spacing: -0.01rem;
  padding-block: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-reason__compare-cell--head {
    font-size: 0.875rem;
    min-height: 3rem;
  }
}

.p-reason__compare-cell--head.p-reason__compare-cell--plumarke {
  grid-column: 2;
  grid-row: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 28.375rem;
  margin-inline: auto;
  background: -webkit-gradient(linear, left top, right top, from(#35c670), to(#b0e481));
  background: linear-gradient(90deg, #35c670 0%, #b0e481 100%);
  border: 0.375rem solid #35c670;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, .35);
  border-radius: 0.75rem 0.75rem 0 0;
  -webkit-box-shadow: 0 0.25rem 0.875rem rgba(53, 198, 112, .25);
          box-shadow: 0 0.25rem 0.875rem rgba(53, 198, 112, .25);
  z-index: 1;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.025rem;
}
@media screen and (max-width: 767px) {
  .p-reason__compare-cell--head.p-reason__compare-cell--plumarke {
    font-size: 1rem;
    max-width: 100%;
    margin-inline: 0;
  }
}

.p-reason__compare-cell--head.p-reason__compare-cell--agency {
  grid-column: 3;
  grid-row: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 26.875rem;
  margin-inline: auto;
  background: #bcbcbc;
  border: 0.0625rem solid #c2c2c2;
  border-bottom: 0.0625rem solid #c2c2c2;
  border-radius: 0.75rem 0.75rem 0 0;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.01875rem;
}
@media screen and (max-width: 767px) {
  .p-reason__compare-cell--head.p-reason__compare-cell--agency {
    font-size: 1rem;
    letter-spacing: -0.01125rem;
    min-height: 3rem;
    max-width: 100%;
    margin-inline: 0;
  }
}

.p-reason__compare-cell--value {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.625rem;
  text-align: left;
  font-weight: 500;
  color: #333;
  background: rgba(229, 247, 210, .3);
}
@media screen and (max-width: 767px) {
  .p-reason__compare-cell--value {
    gap: 0.5rem;
  }
}

.p-reason__compare-cell--value.p-reason__compare-cell--plumarke {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 28.375rem;
  margin-inline: auto;
  border-left: 0.375rem solid #35c670;
  border-right: 0.375rem solid #35c670;
  border-bottom: 0.0625rem solid #e8e8e8;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-reason__compare-cell--value.p-reason__compare-cell--plumarke {
    max-width: 100%;
    margin-inline: 0;
  }
}

.p-reason__compare-cell--value.p-reason__compare-cell--agency {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 26.875rem;
  margin-inline: auto;
  border-left: 0.0625rem solid #c2c2c2;
  border-right: 0.0625rem solid #c2c2c2;
  border-bottom: 0.0625rem solid #c2c2c2;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-reason__compare-cell--value.p-reason__compare-cell--agency {
    max-width: 100%;
    margin-inline: 0;
  }
}

.p-reason__compare-cell--last-plumarke {
  border-bottom: 0.375rem solid #35c670 !important;
  border-radius: 0 0 0.75rem 0.75rem;
  -webkit-box-shadow: 0 0.375rem 1.125rem rgba(53, 198, 112, .18);
          box-shadow: 0 0.375rem 1.125rem rgba(53, 198, 112, .18);
}

.p-reason__compare-cell--last-agency {
  border-radius: 0 0 0.75rem 0;
}

.p-reason__compare-text {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  text-align: center;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.125rem; /* 141.667% */
  letter-spacing: -0.015rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-reason__compare-text {
    font-size: 0.8125rem;
    line-height: 1.25rem;
    letter-spacing: -0.008125rem;
    margin-top: 0;
  }
}

.p-reason__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-reason__icon--double {
  position: relative;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: url(../images/webp/reason__w.webp) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-reason__icon--double {
    width: 1.375rem;
    height: 1.375rem;
  }
  .p-reason__icon--double::after {
    inset: 0.1875rem;
  }
}

.p-reason__icon--circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: url(../images/webp/reason__single.webp) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-reason__icon--circle {
    width: 1.375rem;
    height: 1.375rem;
  }
}

.p-reason__icon--triangle {
  width: 5rem;
  height: 5rem;
  background: url(../images/webp/reason__triangle.webp) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-reason__icon--triangle {
    width: 1.375rem;
    height: 1.375rem;
  }
}

.p-solution {
  background-color: #e5f7d2;
  padding-block: 3.4375rem;
  position: relative;
}
.p-solution::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  right: min(8.125rem, 6.7010309278vw);
  bottom: 0;
  width: min(13.9375rem, 11.4948453608vw);
  aspect-ratio: 223/324;
  height: auto;
  background: url(../images/webp/problem__solution.webp) no-repeat center center/contain;
}
@media screen and (max-width: 1000px) {
  .p-solution::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-solution {
    padding-block: 2.5rem;
  }
}

.p-solution__content {
  background-color: #fff;
  border-radius: 1.25rem;
  padding-block: 0.9375rem;
  font-weight: 700;
  max-width: 64.0625rem;
  width: 100%;
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-solution__content {
    padding: 1.25rem 1rem;
    border-radius: 1rem;
  }
}

.p-solution__text {
  font-size: 2rem;
  letter-spacing: -0.02rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-solution__text {
    font-size: 1rem;
    letter-spacing: -0.0125rem;
  }
}

.p-solution__text-accent {
  font-size: 3.125rem;
  letter-spacing: -0.03125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-solution__text-accent {
    font-size: 1.25rem;
    letter-spacing: -0.0175rem;
    margin-top: 0.25rem;
  }
}
.p-solution__text-accent::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.25rem;
  background: -webkit-gradient(linear, left top, right top, from(#35c670), to(#b0e481));
  background: linear-gradient(90deg, #35c670 0%, #b0e481 100%);
}
@media screen and (max-width: 767px) {
  .p-solution__text-accent::after {
    height: 0.5rem;
    bottom: 0.125rem;
  }
}

.p-solution__text-big {
  font-size: 2.5rem;
  line-height: 3.5rem;
  letter-spacing: -0.025rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-solution__text-big {
    font-size: 1.125rem;
    line-height: 2.125rem;
    letter-spacing: -0.015rem;
    margin-top: 0.25rem;
  }
}

.p-test {
  color: black;
  font-size: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-test {
    font-size: 1.5625rem;
  }
}

.p-voice__title::after {
  content: "VOICE";
  color: rgba(229, 247, 210, .3);
}

.p-voice__swiper-container {
  position: relative;
  width: 100%;
  max-width: 64.375rem;
  margin-inline: auto;
}

.swiper.p-voice__swiper {
  padding-bottom: 3rem;
  max-width: min(64.375rem, 100%);
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.swiper-button-prev.p-voice__swiper-button-prev,
.swiper-button-next.p-voice__swiper-button-next {
  width: 4.625rem;
  height: 4.625rem;
  margin-top: -1.875rem;
  color: transparent;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev.p-voice__swiper-button-prev,
  .swiper-button-next.p-voice__swiper-button-next {
    width: 2.5rem;
    height: 2.5rem;
    margin-top: -0.9375rem;
    display: none;
  }
}
.swiper-button-prev.p-voice__swiper-button-prev::after,
.swiper-button-next.p-voice__swiper-button-next::after {
  display: none;
}

.swiper-button-prev.p-voice__swiper-button-prev {
  background: url(../images/webp/voice__prev.webp) no-repeat center/contain;
  left: -6.25rem;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev.p-voice__swiper-button-prev {
    left: 0.5rem;
  }
}

.swiper-button-next.p-voice__swiper-button-next {
  background: url(../images/webp/voice__next.webp) no-repeat center/contain;
  right: -6.25rem;
}
@media screen and (max-width: 767px) {
  .swiper-button-next.p-voice__swiper-button-next {
    right: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .swiper-button-prev.p-voice__swiper-button-prev {
    left: -5rem;
  }
  .swiper-button-next.p-voice__swiper-button-next {
    right: -5rem;
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-prev.p-voice__swiper-button-prev,
  .swiper-button-next.p-voice__swiper-button-next {
    width: 3.5rem;
    height: 3.5rem;
    margin-top: -1.375rem;
  }
  .swiper-button-prev.p-voice__swiper-button-prev {
    left: 0.25rem;
  }
  .swiper-button-next.p-voice__swiper-button-next {
    right: 0.25rem;
  }
}
.p-voice__swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.swiper-slide.p-voice__swiper-slide {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 0;
  width: min(62.5rem, 100%);
  max-width: 100%;
  height: auto;
  padding: 2.1875rem 1.5625rem;
  border-radius: 1.875rem;
  border-top: 1.25rem solid #35c670;
  background: #fff;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="16" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.25)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0.1875rem 0.5rem rgba(0, 0, 0, .25));
          filter: drop-shadow(0 0.1875rem 0.5rem rgba(0, 0, 0, .25));
}
@media screen and (max-width: 767px) {
  .swiper-slide.p-voice__swiper-slide {
    width: min(31.25rem, 100%);
    max-width: 100%;
    padding: 1.25rem;
    border-top: 0.625rem solid #35c670;
    -webkit-filter: none;
            filter: none;
    border-right: 1px solid currentColor;
    border-left: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
  }
}

.p-voice__slide-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-block: 0.9375rem;
  border-bottom: 0.0625rem solid #c2c2c2;
}
@media screen and (max-width: 767px) {
  .p-voice__slide-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
}

.p-voice__img {
  width: 7.5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 0.0625rem solid #35c670;
}

.p-voice__slide-title {
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-voice__slide-title {
    font-size: 1.25rem;
  }
}

.p-voice__slide-sentence {
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-voice__slide-sentence {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.p-voice__slide-name {
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-voice__slide-name {
    font-size: 1.125rem;
  }
}

.p-voice__slide-body {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-voice__slide-body {
    margin-top: 1.25rem;
  }
}

.p-voice__slide-text {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.875rem; /* 166.667% */
}
@media screen and (max-width: 767px) {
  .p-voice__slide-text {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}

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

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

/* ============================================
  p-specific
   ============================================ */
.p-specific {
  padding-block: 6.875rem;
}
@media screen and (max-width: 767px) {
  .p-specific {
    padding-block: 2.5rem;
  }
}

.p-specific__title {
  text-align: center;
}

.p-specific__title-text {
  display: block;
  line-height: 1.8;
}

.p-specific__text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: -0.0125rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-specific__text {
    font-size: 0.875rem;
    line-height: 1.75rem;
    margin-top: 1.25rem;
  }
}