@charset "UTF-8";
/* リキッドレイアウト対応 */
html {
  scroll-behavior: smooth;
}

body {
  color: #333;
  font-family: "Zen Maru Gothic", sans-serif;
}

html {
  font-size: 2.1333333333vw;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
@media (any-hover: hover) {
  a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements default styles */
a {
  text-decoration: none;
  color: inherit;
}

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

/* Make images easier to work with */
img {
  width: 100%;
  height: auto;
}

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

picture,
img,
a,
span {
  display: inline-block;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

.l-inner {
  width: 100%;
  max-width: 750px;
  max-width: 46.875rem;
  padding-inline: 25px;
  padding-inline: 1.5625rem;
  margin-inline: auto;
}

.l-main-section {
  position: relative;
  margin-top: 0.5px;
  opacity: 0;
  z-index: -1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.l-main-section.is-front {
  opacity: 1;
  z-index: 0;
}

.c-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 26px 55px;
  padding: 1.625rem 3.4375rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  border-radius: 1rem;
  background: #FB6568;
  -webkit-box-shadow: 0 0.375rem 0 0 #883638;
          box-shadow: 0 0.375rem 0 0 #883638;
  color: #fff;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 30.597px;
  font-size: 1.9123125rem;
  font-weight: 700;
  line-height: normal;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  -webkit-transition: translate 0.4s, -webkit-box-shadow 0.4s;
  transition: translate 0.4s, -webkit-box-shadow 0.4s;
  transition: translate 0.4s, box-shadow 0.4s;
  transition: translate 0.4s, box-shadow 0.4s, -webkit-box-shadow 0.4s;
}
@media (any-hover: hover) {
  .c-button:hover {
    opacity: 1;
    translate: 0 0.375rem;
    -webkit-box-shadow: unset;
            box-shadow: unset;
  }
}

.c-button--green {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 340px;
  width: 21.25rem;
  height: 83px;
  height: 5.1875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  border-radius: 2.6875rem;
  background-color: #37C5D1;
  border: 3px solid #37C5D1;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: normal;
  position: relative;
  margin-inline: auto;
  -webkit-transition: background-color 0.4s, color 0.4s;
  transition: background-color 0.4s, color 0.4s;
}
.c-button--green .--arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 18px;
  width: 1.125rem;
  height: 11px;
  height: 0.6875rem;
}
.c-button--green .--arrow::before, .c-button--green .--arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  translate: 0 1px;
  translate: 0 0.0625rem;
  width: 18px;
  width: 1.125rem;
  height: 11px;
  height: 0.6875rem;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.c-button--green .--arrow::before {
  background: url(../images/button-icon01.webp) center/contain no-repeat;
  opacity: 1;
}
.c-button--green .--arrow::after {
  background: url(../images/button-icon01-green.webp) center/contain no-repeat;
  opacity: 0;
}
.c-button--green .--arrow.--right {
  width: 11px;
  width: 0.6875rem;
  height: 18px;
  height: 1.125rem;
}
.c-button--green .--arrow.--right::before, .c-button--green .--arrow.--right::after {
  width: 11px;
  width: 0.6875rem;
  height: 18px;
  height: 1.125rem;
}
.c-button--green .--arrow.--right::before {
  background-image: url(../images/button-icon02.webp);
}
.c-button--green .--arrow.--right::after {
  background-image: url(../images/button-icon02-green.webp);
}
@media (any-hover: hover) {
  .c-button--green:hover {
    opacity: 1;
    background-color: #fff;
    color: #37C5D1;
  }
  .c-button--green:hover .--arrow::before {
    opacity: 0;
  }
  .c-button--green:hover .--arrow::after {
    opacity: 1;
  }
}

.c-button__head-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 7px;
  gap: 0.4375rem;
  color: #37C5D1;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 18px;
  margin-bottom: 1.125rem;
}
.c-button__head-text::before, .c-button__head-text::after {
  content: "";
  width: 21px;
  width: 1.3125rem;
  aspect-ratio: 21/34;
}
.c-button__head-text::before {
  background: url(../images/button-text-icon01.webp) center/contain no-repeat;
}
.c-button__head-text::after {
  background: url(../images/button-text-icon02.webp) center/contain no-repeat;
}

.c-clip {
  background: url(../images/c-clip.webp) center top/cover no-repeat;
  padding-bottom: 11px;
  padding-bottom: 0.6875rem;
  aspect-ratio: 700/121;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.c-follow-button {
  position: fixed;
  bottom: 10px;
  bottom: 0.625rem;
  right: 10px;
  right: 0.625rem;
  width: 180px;
  width: 11.25rem;
  -webkit-transition: bottom 0.4s, visibility 1s, opacity 1s;
  transition: bottom 0.4s, visibility 1s, opacity 1s;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .c-follow-button {
    width: 11.25rem;
  }
}
.c-follow-button.is-front {
  visibility: visible;
  opacity: 1;
}
@media (any-hover: hover) {
  .c-follow-button:hover {
    opacity: 1;
    bottom: 1.125rem;
  }
}

.p-after {
  background-color: #63C9D2;
  padding-block: 142px;
  padding-block: 8.875rem;
  position: relative;
}
.p-after::before {
  background: url(../images/after-bg.webp) center/1378px 27px repeat-x;
  background: url(../images/after-bg.webp) center/86.125rem 1.6875rem repeat-x;
  position: absolute;
  content: "";
  top: -26px;
  top: -1.625rem;
  left: 0;
  width: 100%;
  height: 27px;
  height: 1.6875rem;
}

.p-after__title {
  color: #fff;
  -webkit-text-stroke-width: 18px;
  -webkit-text-stroke-width: 1.125rem;
  -webkit-text-stroke-color: #FFF;
  paint-order: stroke;
  font-size: 46px;
  font-size: 2.875rem;
  font-weight: 900;
  line-height: normal;
  text-align: center;
  position: relative;
  z-index: 0;
}
.p-after__title .--small {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: normal;
}
.p-after__title .--red {
  color: #FB6568;
}
.p-after__title.--sub {
  color: #37C5D1;
  -webkit-text-stroke-width: 0;
  font-weight: 700;
  position: absolute;
  top: 142px;
  top: 8.875rem;
  left: 50%;
  translate: -50% 0;
  width: 100%;
}

.p-after__image {
  width: 225px;
  width: 14.0625rem;
  height: 225px;
  height: 14.0625rem;
  position: absolute;
  top: -106px;
  top: -6.625rem;
  left: 6px;
  left: 0.375rem;
  z-index: -1;
}

.p-after__lead {
  color: #fff;
  text-align: center;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 2.2;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  text-decoration-skip-ink: auto;
  -webkit-text-decoration: underline #F4F85B;
          text-decoration: underline #F4F85B;
  text-decoration-thickness: 16.5%;
  text-underline-offset: 25%;
  text-underline-position: from-font;
}

.p-after__list-box {
  padding-bottom: 17px;
  padding-bottom: 1.0625rem;
}

.p-after__list-title {
  width: 440px;
  width: 27.5rem;
}

.p-after__list-body {
  background: url(../images/check-list-bg.webp) center/cover no-repeat;
  padding: 30px 36px 37px;
  padding: 1.875rem 2.25rem 2.3125rem;
}

.p-after__list-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  gap: 0.9375rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}
.p-after__list-text + .p-after__list-text {
  margin-top: 12px;
  margin-top: 0.75rem;
}
.p-after__list-text::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 34px;
  width: 2.125rem;
  aspect-ratio: 34/32;
  background: url(../images/check-icon.webp) center/contain no-repeat;
}

.p-blog {
  background: url(../images/blog-bg.webp) center/contain repeat-y;
  padding-block: 97px 178px;
  padding-block: 6.0625rem 11.125rem;
}

.p-top-blog {
  position: relative;
  z-index: 0;
}
.p-top-blog::before {
  content: "";
  position: absolute;
  bottom: -1px;
  bottom: -0.0625rem;
  left: 0;
  width: 100%;
  height: 333px;
  height: 20.8125rem;
  background: url(../images/blog-bg-image.webp) top center/cover no-repeat;
  z-index: -1;
}
@media screen and (min-width: 1440px) {
  .p-top-blog::before {
    height: 23.125vw;
  }
}

.p-blog__title {
  width: 552px;
  width: 34.5rem;
  margin-inline: auto;
}

.p-blog__list {
  padding-block: 40px;
  padding-block: 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: 26px;
  gap: 1.625rem;
}

.p-blog__list-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26px;
  gap: 1.625rem;
  border-radius: 1rem;
  border: 3.723px solid #37C5D1;
  border: 0.2326875rem solid #37C5D1;
  background: #fff;
  padding: 20.5px 15.8px;
  padding: 1.28125rem 0.9875rem;
}
@media (any-hover: hover) {
  .p-blog__list-box:hover {
    opacity: 1;
  }
  .p-blog__list-box:hover .p-blog__list-image img {
    scale: 1.05;
  }
}

.p-blog__list-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 316px;
  width: 19.75rem;
  aspect-ratio: 316/246;
  overflow: hidden;
}
.p-blog__list-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  -webkit-transition: scale 0.4s;
  transition: scale 0.4s;
}

.p-blog__list-date {
  color: #37C5D1;
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
}

.p-blog__list-title {
  position: relative;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.24;
  padding-bottom: 23px;
  padding-bottom: 1.4375rem;
  margin-top: 9px;
  margin-top: 0.5625rem;
}
.p-blog__list-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  width: 3.75rem;
  height: 3px;
  height: 0.1875rem;
  background-color: #37C5D1;
}

.p-blog__list-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.86;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-blog__pagination-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
}

.page-numbers {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  border-radius: 50%;
  border: 2px solid #37C5D1;
  border: 0.125rem solid #37C5D1;
  background: #fff;
  color: #37C5D1;
  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;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  padding-bottom: 3px;
  padding-bottom: 0.1875rem;
}
.page-numbers.prev {
  padding-bottom: 7px;
  padding-bottom: 0.4375rem;
}
.page-numbers.next {
  padding-bottom: 7px;
  padding-bottom: 0.4375rem;
}
.page-numbers.current {
  color: #fff;
  background: #37C5D1;
}

@media (any-hover: hover) {
  .page-numbers:not(.dots):hover {
    color: #fff;
    background: #37C5D1;
  }
}
.p-post-blog {
  background: url(../images/plan-bg.webp) center/100% repeat-y;
}
.p-post-blog .p-blog__inner {
  min-height: 100dvh;
  background-color: #fff;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
.p-post-blog .p-blog__list {
  padding-top: 60px;
  padding-top: 3.75rem;
}

.p-post-blog__title {
  width: 100%;
  padding-inline: 70px;
  padding-inline: 4.375rem;
}

.p-post-blog__article-title {
  font-size: max(48px, 32px);
  font-size: max(3rem, 32px);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-post-blog__article-date {
  display: block;
  color: #37C5D1;
  font-size: max(20px, 16px);
  font-size: max(1.25rem, 16px);
  font-weight: 500;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-post-blog__article-content {
  margin-top: 40px;
  margin-top: 2.5rem;
}
.p-post-blog__article-content h2 {
  border-left: 10px solid #37C5D1;
  border-left: 0.625rem solid #37C5D1;
  font-size: max(40px, 24px);
  font-size: max(2.5rem, 24px);
  font-weight: 700;
  line-height: 1.3;
  padding-left: 16px;
  padding-left: 1rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
.p-post-blog__article-content h3 {
  color: #37C5D1;
  font-size: max(32px, 20px);
  font-size: max(2rem, 20px);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 30px;
  margin-top: 1.875rem;
}
.p-post-blog__article-content p {
  font-size: max(20px, 16px);
  font-size: max(1.25rem, 16px);
  font-weight: 500;
  line-height: 1.8;
  margin-top: 20px;
  margin-top: 1.25rem;
}
.p-post-blog__article-content figure {
  width: 100%;
  margin-top: 20px;
  margin-top: 1.25rem;
}
.p-post-blog__article-content ul {
  list-style: inside disc;
  margin-top: 20px;
  margin-top: 1.25rem;
}
.p-post-blog__article-content ol {
  list-style: inside decimal;
  margin-top: 20px;
  margin-top: 1.25rem;
}
.p-post-blog__article-content li {
  font-size: max(20px, 16px);
  font-size: max(1.25rem, 16px);
  font-weight: 500;
  line-height: 1.8;
}
.p-post-blog__article-content li + li {
  margin-top: 6px;
  margin-top: 0.375rem;
}
.p-post-blog__article-content a {
  text-decoration: underline;
}

.p-post-blog__button {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-blog__no-post {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #281B22;
  text-align: center;
}

.p-check {
  position: relative;
  background: url(../images/check-bg.webp) center/cover no-repeat;
  padding-block: 311px 288px;
  padding-block: 19.4375rem 18rem;
  z-index: 0;
}
.p-check::before {
  content: "";
  position: absolute;
  bottom: -1px;
  bottom: -0.0625rem;
  left: 0;
  background: url(../images/check-bg-image.webp) center top/cover no-repeat;
  width: 100%;
  height: 333px;
  height: 20.8125rem;
  z-index: -1;
}
@media screen and (min-width: 1440px) {
  .p-check::before {
    height: 23.125vw;
  }
}

.p-check__inner {
  border-radius: 2rem;
  background-color: #ECFBFD;
  padding: 123px 39px 72px;
  padding: 7.6875rem 2.4375rem 4.5rem;
}

.p-check__title {
  width: 544px;
  width: 34rem;
  margin: -401px auto 0;
  margin: -25.0625rem auto 0;
}

.p-check__lead {
  -webkit-text-decoration: underline #F4F85B;
          text-decoration: underline #F4F85B;
  text-decoration-thickness: 16.5%;
  text-underline-offset: 25%;
  text-underline-position: from-font;
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 2.2;
  margin-top: 30px;
  margin-top: 1.875rem;
}
.p-check__lead .--green {
  display: inline;
  color: #37C5D1;
}

.p-check__list-title {
  width: 199px;
  width: 12.4375rem;
}

.p-check__list-body {
  background: url(../images/check-list-bg.webp) center/cover no-repeat;
  padding: 30px 36px 37px;
  padding: 1.875rem 2.25rem 2.3125rem;
}

.p-check__list-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  gap: 0.9375rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}
.p-check__list-text + .p-check__list-text {
  margin-top: 12px;
  margin-top: 0.75rem;
}
.p-check__list-text::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 34px;
  width: 2.125rem;
  aspect-ratio: 34/32;
  background: url(../images/check-icon.webp) center/contain no-repeat;
}

.p-check__image {
  width: 100%;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-check__button-wrapper {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-faq {
  background-color: #ECFBFD;
  padding-block: 96px;
  padding-block: 6rem;
}

.p-faq__title {
  width: 227px;
  width: 14.1875rem;
  margin-inline: auto;
}

.p-faq__list {
  margin-top: 53px;
  margin-top: 3.3125rem;
}

.p-faq__item {
  border-radius: 1rem;
  background-color: #fff;
  -webkit-box-shadow: 1.843px 1.843px 3.686px 0 rgba(55, 197, 209, .71);
          box-shadow: 1.843px 1.843px 3.686px 0 rgba(55, 197, 209, .71);
  padding: 28px 23px;
  padding: 1.75rem 1.4375rem;
}
.p-faq__item + .p-faq__item {
  margin-top: 23px;
  margin-top: 1.4375rem;
}

.p-faq__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 12px;
  gap: 0.75rem;
  border-bottom: 1px solid #37C5D1;
  padding: 0 0 27px 4px;
  padding: 0 0 1.6875rem 0.25rem;
}

.p-faq__item-head-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 45px;
  width: 2.8125rem;
}

.p-faq__item-head-text {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.23;
  letter-spacing: 0.48px;
  letter-spacing: 0.03rem;
}

.p-faq__item-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  gap: 0.9375rem;
  padding: 22px 0 0 4px;
  padding: 1.375rem 0 0 0.25rem;
}

.p-faq__item-foot-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 37px;
  width: 2.3125rem;
}

.p-faq__item-foot-text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.39px;
  letter-spacing: 0.024375rem;
}

.p-faq__text {
  text-align: center;
  color: #37C5D1;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2.4;
  -webkit-text-decoration: underline #F4F85B;
          text-decoration: underline #F4F85B;
  text-decoration-thickness: 20%;
  text-underline-offset: 25%;
  text-underline-position: from-font;
  margin-top: 53px;
  margin-top: 3.3125rem;
}

.p-faq__button-wrapper {
  margin-top: 53px;
  margin-top: 3.3125rem;
}

.p-flow {
  background-color: #ECFBFD;
  padding-block: 132px 145px;
  padding-block: 8.25rem 9.0625rem;
}

.p-flow__title {
  width: 100%;
}

.p-flow__list {
  margin-top: 64px;
  margin-top: 4rem;
}

.p-flow__item {
  position: relative;
  border-radius: 1rem;
  border: 4px solid #37C5D1;
  border: 0.25rem solid #37C5D1;
  background-color: #fff;
  padding: 26px 32px 32px;
  padding: 1.625rem 2rem 2rem;
}
.p-flow__item + .p-flow__item {
  margin-top: 74px;
  margin-top: 4.625rem;
}
.p-flow__item + .p-flow__item::before {
  content: "";
  position: absolute;
  top: -52px;
  top: -3.25rem;
  left: 50%;
  translate: -50% 0;
  width: 53px;
  width: 3.3125rem;
  aspect-ratio: 53/28;
  background: url(../images/flow-arrow.webp) center/contain no-repeat;
}

.p-flow__item-title {
  border-bottom: 4px solid currentColor;
  border-bottom: 0.25rem solid currentColor;
  text-align: center;
  color: #37C5D1;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 50px;
  line-height: 3.125rem;
  padding-bottom: 7px;
  padding-bottom: 0.4375rem;
}
.p-flow__item-title .--large {
  translate: 0 4px;
  translate: 0 0.25rem;
  font-size: 55px;
  font-size: 3.4375rem;
  line-height: 76px;
  line-height: 4.75rem;
  margin-right: 13px;
  margin-right: 0.8125rem;
}
.p-flow__item-title .--small {
  font-size: 20px;
  font-size: 1.25rem;
}

.p-flow__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  gap: 1.25rem;
  margin-top: 29px;
  margin-top: 1.8125rem;
}
.p-flow__item-content.--grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 67px;
  margin-top: 4.1875rem;
}
.p-flow__item-content.--grid .p-flow__item-image {
  width: 100%;
}
.p-flow__item-content.--grid .p-flow__item-text {
  grid-column: 1/3;
}

.p-flow__item-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 272px;
  width: 17rem;
}
.p-flow__item-image img {
  border-radius: 1rem;
}

.p-flow__item-text {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-flow-item-hukidashi {
  position: absolute;
  top: -70px;
  top: -4.375rem;
  left: -54px;
  left: -3.375rem;
  width: 199px;
  width: 12.4375rem;
}

.p-mainvisual {
  width: 100%;
  height: 100dvh;
  background: url(../images/mainvisual-bg.webp) center/cover no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  opacity: 1;
}
.p-mainvisual.is-front {
  opacity: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-mainvisual {
    background-image: url(../images/mainvisual-bg.webp);
  }
}
.p-mainvisual::after {
  content: "";
  position: absolute;
  background: url(../images/mainvisual-cloud.webp) center/cover no-repeat;
  width: 100%;
  aspect-ratio: 1440/353;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  z-index: -1;
  -webkit-animation: float 3s ease-in-out infinite;
          animation: float 3s ease-in-out infinite;
}

@-webkit-keyframes float {
  0%, 100% {
    translate: -50% 0;
  }
  50% {
    translate: -50% 1.25rem;
  }
}

@keyframes float {
  0%, 100% {
    translate: -50% 0;
  }
  50% {
    translate: -50% 1.25rem;
  }
}
.p-mainvisual__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  max-width: 1440px;
  max-width: 90rem;
  width: 100%;
}
@media (orientation: landscape) and (max-height: 599px) {
  .p-mainvisual__inner {
    scale: 0.5;
  }
}
@media (orientation: landscape) and (max-height: 429px) and (min-width: 768px) {
  .p-mainvisual__inner {
    scale: 0.6;
  }
}
@media (orientation: landscape) and (min-height: 430px) and (max-height: 849px) and (min-width: 768px) {
  .p-mainvisual__inner {
    scale: 0.7;
  }
}

.p-mainvisual__lead {
  width: 709px;
  width: 44.3125rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-mainvisual__lead {
    width: 55.9027777778vw;
    margin-bottom: 1.3541666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .p-mainvisual__lead {
    width: 50.3125rem;
    margin-bottom: 1.21875rem;
  }
}

.p-mainvisual__title {
  width: 702.72px;
  width: 43.92rem;
  margin-bottom: 43px;
  margin-bottom: 2.6875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-mainvisual__title {
    width: 67.7083333333vw;
    margin-bottom: 2.9861111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .p-mainvisual__title {
    width: 60.9375rem;
    margin-bottom: 2.6875rem;
  }
}

.p-mainvisual__text {
  color: #37C5D1;
  text-align: center;
  -webkit-text-stroke-width: 4.23px;
  -webkit-text-stroke-width: 0.264375rem;
  -webkit-text-stroke-color: #FFF;
  paint-order: stroke;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 21.181px;
  font-size: 1.3238125rem;
  font-weight: 700;
  line-height: normal;
  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;
  gap: 6.18px;
  gap: 0.38625rem;
  margin-bottom: 19.26px;
  margin-bottom: 1.20375rem;
}
@media screen and (min-width: 768px) {
  .p-mainvisual__text {
    -webkit-text-stroke-width: 0.3730555556vw;
    font-size: 1.6666666667vw;
    gap: 0.4861111111vw;
    margin-bottom: 0.7638888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .p-mainvisual__text {
    -webkit-text-stroke-width: 0.35rem;
    font-size: 1.5rem;
    gap: 0.4375rem;
    margin-bottom: 0.6875rem;
  }
}
.p-mainvisual__text::before {
  content: "";
  background: url(../images/mainvisual-icon01.webp) center/contain no-repeat;
  aspect-ratio: 17/29;
  width: 17px;
  width: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-mainvisual__text::before {
    width: 1.3194444444vw;
    aspect-ratio: 19/33;
  }
}
@media screen and (min-width: 1440px) {
  .p-mainvisual__text::before {
    width: 1.1875rem;
  }
}
.p-mainvisual__text::after {
  content: "";
  background: url(../images/mainvisual-icon02.webp) center/contain no-repeat;
  aspect-ratio: 17/29;
  width: 17px;
  width: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-mainvisual__text::after {
    width: 1.3194444444vw;
    aspect-ratio: 19/33;
  }
}
@media screen and (min-width: 1440px) {
  .p-mainvisual__text::after {
    width: 1.1875rem;
  }
}

.p-mainvisual__image {
  width: 223.7px;
  width: 13.98125rem;
  position: absolute;
  bottom: -255px;
  bottom: -15.9375rem;
  right: 58px;
  right: 3.625rem;
  -webkit-transition: translate 0.4s;
  transition: translate 0.4s;
}
@media screen and (min-width: 768px) {
  .p-mainvisual__image {
    width: 16.33125vw;
    bottom: -2.3611111111vw;
    right: 11.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .p-mainvisual__image {
    width: 14.698125rem;
    bottom: -2.35rem;
    right: 10.5rem;
  }
}
@media (orientation: landscape) and (max-height: 599px) {
  .p-mainvisual__image {
    bottom: 0;
    right: -10rem;
  }
}
@media (orientation: landscape) and (max-height: 599px) and (min-width: 768px) {
  .p-mainvisual__image {
    bottom: 0;
    right: 0;
  }
}
@media (any-hover: hover) {
  .p-mainvisual__image:hover {
    opacity: 1;
    translate: 0 -0.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-mainvisual__button {
    padding: 1.8055555556vw 3.8194444444vw;
    gap: 0.6944444444vw;
    border-radius: 1.1111111111vw;
    font-size: 2.1428472222vw;
  }
}
@media screen and (min-width: 1440px) {
  .p-mainvisual__button {
    padding: 1.625rem 3.4375rem;
    gap: 0.625rem;
    border-radius: 1rem;
    font-size: 1.9285625rem;
  }
}

.p-mainvisual-cloud {
  position: fixed;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  aspect-ratio: 1440/353;
  background: url(../images/mainvisual-cloud.webp) center/cover no-repeat;
  z-index: -1;
}
.p-mainvisual-cloud.is-front {
  -webkit-animation: 2s ease forwards cloud;
          animation: 2s ease forwards cloud;
}
.p-mainvisual-cloud::before {
  height: 100dvh;
  background-color: #fff;
  content: "";
  position: absolute;
  bottom: -99.9dvh;
  left: 0;
  width: 100%;
}

@-webkit-keyframes cloud {
  0% {
    z-index: -1;
    translate: -50% 0;
  }
  50% {
    z-index: 9999;
    translate: -50% -100dvh;
    opacity: 0;
  }
  100% {
    z-index: -1;
    translate: -50% -100dvh;
    opacity: 0;
  }
}

@keyframes cloud {
  0% {
    z-index: -1;
    translate: -50% 0;
  }
  50% {
    z-index: 9999;
    translate: -50% -100dvh;
    opacity: 0;
  }
  100% {
    z-index: -1;
    translate: -50% -100dvh;
    opacity: 0;
  }
}
.p-map {
  position: relative;
  background-color: #37C5D1;
  padding-block: 96px;
  padding-block: 6rem;
}
.p-map::before {
  content: "";
  position: absolute;
  top: -26px;
  top: -1.625rem;
  left: 0;
  width: 100%;
  height: 27px;
  height: 1.6875rem;
  background: url(../images/map-bg.webp) center/1378px 27px repeat-x;
  background: url(../images/map-bg.webp) center/86.125rem 1.6875rem repeat-x;
}

.p-map__title {
  width: 286px;
  width: 17.875rem;
  margin-inline: auto;
}

.p-map__body {
  position: relative;
  width: 100%;
  margin-top: 13px;
  margin-top: 0.8125rem;
}
.p-map__body::before, .p-map__body::after {
  content: "";
  position: absolute;
}
.p-map__body::before {
  bottom: -75px;
  bottom: -4.6875rem;
  left: -3px;
  left: -0.1875rem;
  width: 158px;
  width: 9.875rem;
  aspect-ratio: 158/245;
  background: url(../images/illustration01.webp) center/contain no-repeat;
}
.p-map__body::after {
  bottom: -71px;
  bottom: -4.4375rem;
  right: 2px;
  right: 0.125rem;
  width: 154px;
  width: 9.625rem;
  aspect-ratio: 154/236;
  background: url(../images/illustration02.webp) center/contain no-repeat;
}
.p-map__body iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 1rem;
  -webkit-box-shadow: 0.5rem 0.5rem 0 0 #F4F85B;
          box-shadow: 0.5rem 0.5rem 0 0 #F4F85B;
}
@media screen and (min-width: 768px) {
  .p-map__body iframe {
    aspect-ratio: 700/431;
  }
}

.p-map__name {
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: normal;
  margin-top: 34px;
  margin-top: 2.125rem;
}
.p-map__name .--large {
  font-size: 40px;
  font-size: 2.5rem;
}

.p-map__text-wrapper {
  margin-top: 34px;
  margin-top: 2.125rem;
}

.p-map__text {
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: normal;
}
.p-map__text + .p-map__text {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
.p-map__text:nth-of-type(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2px;
  gap: 0.125rem;
}
.p-map__text:nth-of-type(2)::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  width: 1.25rem;
  aspect-ratio: 1/1;
  background: url(../images/link-icon.webp) center/contain no-repeat;
}
.p-map__text .--link {
  text-decoration: underline;
}

.p-not-found {
  background: url(../images/plan-bg.webp) center/cover no-repeat;
}

.p-not-found__inner {
  background-color: #FEFFEB;
}

.p-not-found__body {
  height: 100dvh;
  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;
  padding-block: 40px;
  padding-block: 2.5rem;
}

.p-not-found__heading {
  color: #37C5D1;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
}

.p-not-found__text {
  color: #37C5D1;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 500;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-not-found__button {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-plan {
  background: url(../images/plan-bg.webp) center/cover no-repeat;
  padding-block: 112px;
  padding-block: 7rem;
}

.p-plan__title {
  width: 374px;
  width: 23.375rem;
  margin-inline: auto;
}

.p-plan__lead {
  -webkit-text-decoration: underline #F4F85B;
          text-decoration: underline #F4F85B;
  text-decoration-thickness: 20%;
  text-underline-offset: 25%;
  text-underline-position: from-font;
  text-align: center;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 2.2;
  margin-top: 30px;
  margin-top: 1.875rem;
}
.p-plan__lead.--large {
  text-decoration-thickness: 40%;
  text-underline-offset: 25%;
  font-size: 45px;
  font-size: 2.8125rem;
}
.p-plan__lead.--large .--red {
  position: relative;
  color: #FB6568;
  font-weight: 700;
}
.p-plan__lead.--large .--red::before {
  content: "";
  position: absolute;
  bottom: -5px;
  bottom: -0.3125rem;
  left: 0;
  width: 100%;
  height: 18px;
  height: 1.125rem;
  background-color: #FB6568;
}

.p-plan__list {
  margin-top: 81px;
  margin-top: 5.0625rem;
}

.p-plan__item {
  border-radius: 1rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0.75625rem 0 rgba(0, 0, 0, .13);
          box-shadow: 0 0 0.75625rem 0 rgba(0, 0, 0, .13);
}
.p-plan__item + .p-plan__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-plan__item-title {
  border-radius: 1rem 1rem 0 0;
  background-color: #F4F85B;
  color: #37C5D1;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: normal;
  padding: 19px 20px;
  padding: 1.1875rem 1.25rem;
}

.p-plan__item-body {
  position: relative;
  border-radius: 0 0 1rem 1rem;
  padding: 29px 20px 45px;
  padding: 1.8125rem 1.25rem 2.8125rem;
}

.p-plan__item-price-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
}

.p-plan__item-label {
  border-radius: 2.8125rem;
  border: 3px solid #37C5D1;
  color: #37C5D1;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.68px;
  letter-spacing: 0.105rem;
  padding: 9px 27px 11px;
  padding: 0.5625rem 1.6875rem 0.6875rem;
}

.p-plan__item-price {
  color: #37C5D1;
  font-size: 33px;
  font-size: 2.0625rem;
  font-weight: 700;
  line-height: normal;
}
.p-plan__item-price .--large {
  font-family: "Work Sans", sans-serif;
  font-size: 60px;
  font-size: 3.75rem;
}

.p-plan__item-text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: normal;
  margin-top: 19px;
  margin-top: 1.1875rem;
}

.p-plan__item-image--01 {
  width: 589px;
  width: 36.8125rem;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
}

.p-plan__item-image--02 {
  position: absolute;
  bottom: 49px;
  bottom: 3.0625rem;
  right: 20px;
  right: 1.25rem;
  width: 324px;
  width: 20.25rem;
}

.p-plan__item-content-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 46px 21px;
  gap: 2.875rem 1.3125rem;
  margin-top: 32px;
  margin-top: 2rem;
}

.p-plan__item-content-title {
  background-color: #37C5D1;
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: normal;
  padding-block: 8px 11px;
  padding-block: 0.5rem 0.6875rem;
}

.p-plan__item-content-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  gap: 0.375rem;
  margin-top: 19px;
  margin-top: 1.1875rem;
}
.p-plan__item-content-text-wrapper + .p-plan__item-content-text-wrapper {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-plan__item-content-label {
  border-radius: 1.875rem;
  border: 2px solid #37C5D1;
  color: #37C5D1;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.1px;
  letter-spacing: 0.06875rem;
  padding: 6px 18px 8px;
  padding: 0.375rem 1.125rem 0.5rem;
}

.p-plan__item-content-text {
  color: #37C5D1;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: normal;
}
.p-plan__item-content-text .--large {
  font-family: "Work Sans", sans-serif;
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: 500;
}

.p-plan__foot {
  position: relative;
  border-radius: 2rem;
  border: 13px solid #ADE6EB;
  border: 0.8125rem solid #ADE6EB;
  background-color: #fff;
  padding-block: 81px 46px;
  padding-block: 5.0625rem 2.875rem;
  margin-top: 83px;
  margin-top: 5.1875rem;
}

.p-plan__foot-label {
  position: absolute;
  top: -13px;
  top: -0.8125rem;
  left: -25px;
  left: -1.5625rem;
  width: 284px;
  width: 17.75rem;
}

.p-plan__foot-image {
  position: absolute;
  top: -30px;
  top: -1.875rem;
  right: 3px;
  right: 0.1875rem;
  width: 133px;
  width: 8.3125rem;
}

.p-plan__foot-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #37C5D1;
  font-size: 41px;
  font-size: 2.5625rem;
  font-weight: 700;
  line-height: normal;
}
.p-plan__foot-title .--label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  translate: 0 6px;
  translate: 0 0.375rem;
  -ms-flex-item-align: center;
      align-self: center;
  border-radius: 2.625rem;
  border: 3px solid #37C5D1;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.2;
  letter-spacing: 2.1px;
  letter-spacing: 0.13125rem;
  padding: 5px 25px 9px;
  padding: 0.3125rem 1.5625rem 0.5625rem;
}
.p-plan__foot-title .--label.--open {
  font-size: 26px;
  font-size: 1.625rem;
}
.p-plan__foot-title .--large {
  translate: 0 6px;
  translate: 0 0.375rem;
  font-family: "Work Sans", sans-serif;
  font-size: 76px;
  font-size: 4.75rem;
  margin-left: 12px;
  margin-left: 0.75rem;
}

.p-plan__foot-button-wrapper {
  text-align: center;
  margin-top: 27px;
  margin-top: 1.6875rem;
}

.p-premier {
  background-color: #ECFBFD;
  padding-block: 88px 96px;
  padding-block: 5.5rem 6rem;
}

.p-premier__image {
  width: 552px;
  width: 34.5rem;
  margin: 44px auto 10px;
  margin: 2.75rem auto 0.625rem;
}
.p-premier__image img {
  border-radius: 2rem;
  -webkit-box-shadow: 8px 8px 0 0 #F4F85B;
          box-shadow: 8px 8px 0 0 #F4F85B;
}

.p-premier__about-title {
  width: 363px;
  width: 22.6875rem;
}

.p-premier__about-text {
  color: #333;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  background: url(../images/c-clip-bg.webp) center/cover no-repeat;
  padding: 30px 36px 37px;
  padding: 1.875rem 2.25rem 2.3125rem;
  margin-bottom: 56px;
  margin-bottom: 3.5rem;
}

.p-premier__items {
  display: grid;
  grid-template-columns: 19.125rem 4rem 19.125rem;
  gap: 12px;
  gap: 0.75rem;
}

.p-premier__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 200px;
  height: 12.5rem;
  padding: 24px 20px;
  padding: 1.5rem 1.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: #DBDBDB;
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}
.p-premier__item:first-child {
  height: 84px;
  height: 5.25rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  background: #767676;
}
.p-premier__item:nth-child(2) {
  height: unset;
  background: transparent;
}
.p-premier__item:nth-child(3) {
  height: 84px;
  height: 5.25rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  background: #37C5D1;
  position: relative;
}
.p-premier__item:nth-child(3)::before {
  background: url(../images/premier-icon03.webp) center/contain no-repeat;
  background: url(../images/premier-icon03.webp) center/contain no-repeat;
  position: absolute;
  content: "";
  width: 66px;
  width: 4.125rem;
  height: 40px;
  height: 2.5rem;
  top: -13px;
  top: -0.8125rem;
}
.p-premier__item:nth-child(3n+5) {
  background: #37C5D1;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  text-orientation: upright;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding: 0;
}
.p-premier__item:nth-child(3n+6) {
  background: #fff;
  color: #37C5D1;
}

.p-problem-bg-white {
  width: 100%;
  background: url(../images/problem-bg-white.webp) center/cover no-repeat;
  padding-top: 70dvh;
}

.p-problem__inner {
  background-color: #fff;
  padding-block: 72px;
  padding-block: 4.5rem;
}

.p-problem__title {
  width: 552px;
  width: 34.5rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  margin-inline: auto;
}

.p-problem__box {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-template-columns: repeat(2, 21.25rem);
  gap: 20px;
  gap: 1.25rem;
}

.p-problem__box-item {
  color: #fff;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 44.429px 38.082px;
  padding: 2.7768125rem 2.380125rem;
  border-radius: 1rem;
  background: #37C5D1;
  -webkit-box-shadow: 5.44px 5.44px 0 0 #F4F85B;
          box-shadow: 5.44px 5.44px 0 0 #F4F85B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-reason__inner {
  background-color: #fff;
  padding-block: 72px;
  padding-block: 4.5rem;
}

.p-reason__title {
  width: 584px;
  width: 36.5rem;
  margin-inline: auto;
  margin-bottom: 49px;
  margin-bottom: 3.0625rem;
}

.p-reason__list {
  border-radius: 1rem;
  background: #FEFFEB;
  padding: 72px 58px;
  padding: 4.5rem 3.625rem;
}

.p-reason__item:not(:first-child) {
  margin-top: 72px;
  margin-top: 4.5rem;
}

.p-reason__item-title {
  color: #37C5D1;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.38;
  margin-block: 26px 13px;
  margin-block: 1.625rem 0.8125rem;
  padding-bottom: 13px;
  padding-bottom: 0.8125rem;
  border-bottom: 2px solid #37C5D1;
  border-bottom: 0.125rem solid #37C5D1;
  text-align: center;
}

.p-reason__item-text {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.08;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
.p-reason__item-text .--green {
  color: #37C5D1;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  -webkit-text-decoration-color: #F4F85B;
          text-decoration-color: #F4F85B;
  text-decoration-thickness: 20%;
  text-underline-offset: 25%;
  text-underline-position: from-font;
}

.p-voice {
  padding-bottom: 80px;
  padding-bottom: 5rem;
  background: #FEFFEB;
}

.p-voice__title {
  width: 456px;
  width: 28.5rem;
  margin-inline: auto;
  margin-bottom: 43px;
  margin-bottom: 2.6875rem;
}

.p-voice__lead {
  width: 605px;
  width: 37.8125rem;
  margin-inline: auto;
  margin-bottom: 74px;
  margin-bottom: 4.625rem;
}

.p-voice__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: 31px;
  gap: 1.9375rem;
  margin-bottom: 75px;
  margin-bottom: 4.6875rem;
}

.p-voice__list-item {
  border-radius: 0.5rem;
  background: #fff;
  -webkit-box-shadow: 0.2326875rem 0.2326875rem 0.1163125rem 0 rgba(0, 0, 0, .14);
          box-shadow: 0.2326875rem 0.2326875rem 0.1163125rem 0 rgba(0, 0, 0, .14);
  position: relative;
}
.p-voice__list-item:nth-of-type(odd) {
  padding: 32px 24px 32px 80px;
  padding: 2rem 1.5rem 2rem 5rem;
  width: 624px;
  width: 39rem;
  margin-left: 51px;
  margin-left: 3.1875rem;
}
.p-voice__list-item:nth-of-type(even) {
  padding: 32px 80px 32px 24px;
  padding: 2rem 5rem 2rem 1.5rem;
  width: 646px;
  width: 40.375rem;
  margin-left: 22.3px;
  margin-left: 1.39375rem;
}

.p-voice__image {
  position: absolute;
  content: "";
  top: -15px;
  top: -0.9375rem;
  left: -51px;
  left: -3.1875rem;
  width: 119px;
  width: 7.4375rem;
  height: 119px;
  height: 7.4375rem;
}
.p-voice__image.--right {
  left: 557px;
  left: 34.8125rem;
}

.p-voice__list-text {
  color: #281B22;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: -0.48px;
  letter-spacing: -0.03rem;
}
.p-voice__list-text .--green {
  color: #37C5D1;
  display: inline;
}

.p-voice__message {
  margin-bottom: 52px;
  margin-bottom: 3.25rem;
  color: #333;
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 2.2;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  -webkit-text-decoration-color: #F4F85B;
          text-decoration-color: #F4F85B;
  text-decoration-thickness: 20%;
  text-underline-offset: 25%;
  text-underline-position: from-font;
}
.p-voice__message .--green {
  color: #37C5D1;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 220%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  -webkit-text-decoration-color: #F4F85B;
          text-decoration-color: #F4F85B;
  text-decoration-thickness: 20%;
  text-underline-offset: 25%;
  text-underline-position: from-font;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
