@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 390px) {
  html {
    font-size: 4.1025641026vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.2121212121vw;
  }
}
@media (min-width: 1320px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "M PLUS Rounded 1c", serif;
  color: #1E2433;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

/*****************************
* 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 default style */
em {
  font-style: normal;
}

/* 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 {
  min-height: 100vh;
  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%;
  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-faq {
  margin-top: -2.5rem;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .l-faq {
    margin-top: -5rem;
  }
}

.l-inner {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1320px;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.c-button a {
  border-radius: 0.5rem;
  min-width: 14.5rem;
  border: solid 0.125rem #233BE3;
  background: #233BE3;
  display: inline-block;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  padding: 0.875rem 1rem;
  color: #fff;
  -webkit-box-shadow: 0px 3px 1.25rem 0px rgba(30, 36, 51, .1);
          box-shadow: 0px 3px 1.25rem 0px rgba(30, 36, 51, .1);
  position: relative;
  overflow: hidden;
}
.c-button a::after {
  content: "";
  display: block;
  width: 1.5rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  background: url(../images/icon_button_arrow_white.png) no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .c-button a {
    border-radius: 1rem;
    font-size: 1.25rem;
    line-height: 2rem;
    padding: 1.125rem 1.25rem 1.125rem 1.5rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
    z-index: 2;
  }
  .c-button a::after {
    width: 2.5rem;
  }
  .c-button a::before {
    background: #0C22BB;
    border-radius: 50%;
    content: "";
    display: block;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 100%;
    height: 0;
    z-index: -1;
    -webkit-transform: translateY(-50%) scale(0.1);
            transform: translateY(-50%) scale(0.1);
    -webkit-transition: opacity 0.5s ease-in-out, -webkit-transform 0.6s ease-in-out;
    transition: opacity 0.5s ease-in-out, -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, opacity 0.5s ease-in-out;
    transition: transform 0.6s ease-in-out, opacity 0.5s ease-in-out, -webkit-transform 0.6s ease-in-out;
  }
  .c-button a:hover::before {
    opacity: 1;
    -webkit-transform: translateY(-50%) scale(1.1);
            transform: translateY(-50%) scale(1.1);
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transition: opacity 0.8s, -webkit-transform 0.6s ease-in-out;
    transition: opacity 0.8s, -webkit-transform 0.6s ease-in-out;
    transition: opacity 0.8s, transform 0.6s ease-in-out;
    transition: opacity 0.8s, transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  }
  .c-button a:hover {
    opacity: 1;
  }
}

.c-button.--white a {
  color: #233BE3;
  background: #fff;
  -webkit-box-shadow: 0px 3px 1.25rem 0px rgba(30, 36, 51, .2);
          box-shadow: 0px 3px 1.25rem 0px rgba(30, 36, 51, .2);
}
.c-button.--white a::after {
  background: url(../images/icon_button_arrow_blue.png) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .c-button.--white a::before {
    background: #D1DFFF;
  }
}

@media screen and (min-width: 768px) {
  .c-button.--sm a {
    padding: 0.625rem 1.125rem;
    min-width: 16rem;
    font-size: max(10px, 1rem);
  }
}

.c-button.--nav a {
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  min-width: 200px;
  width: 100%;
  display: block;
  text-align: center;
  border: solid 2px #233BE3;
  font-size: max(10px, 1rem);
}
.c-button.--nav a::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-button.--nav a {
    border-radius: 16px;
    padding: 16px 20px;
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .c-button.--nav.--white a {
    min-width: 136px;
  }
}

@media screen and (min-width: 768px) {
  .c-button.--mv.--blue a {
    padding: 20px 24px;
    font-size: clamp(16px, 1.95vw, 1.25rem);
  }
}

.c-button.--thanks a {
  min-width: 264px;
  padding: 0.875rem 1.125rem;
  -webkit-box-shadow: 0px 0.375rem 0.9375rem rgba(30, 36, 51, .2);
          box-shadow: 0px 0.375rem 0.9375rem rgba(30, 36, 51, .2);
}
@media screen and (min-width: 768px) {
  .c-button.--thanks a {
    padding: 1.125rem 2.125rem;
  }
}

.c-circle__item {
  width: 0.5rem;
  height: 0.5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -webkit-box-shadow: 0 1.62px 0.625rem 0 rgba(30, 36, 51, .1);
          box-shadow: 0 1.62px 0.625rem 0 rgba(30, 36, 51, .1);
}
.c-circle__item.--orange {
  background: #F46A01;
}
.c-circle__item.--yellow {
  background: #F6D148;
}
.c-circle__item.--blue {
  background: #3D5BE9;
}
.c-circle__item.--md {
  width: 0.75rem;
  height: 0.75rem;
}
.c-circle__item.--lg {
  width: 0.875rem;
  height: 0.875rem;
}
.c-circle__item.--bg {
  width: 1.0625rem;
  height: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .c-circle__item {
    width: 0.8125rem;
    height: 0.8125rem;
  }
  .c-circle__item.--md {
    width: 1.4375rem;
    height: 1.4375rem;
  }
  .c-circle__item.--lg {
    width: 1.6875rem;
    height: 1.6875rem;
  }
  .c-circle__item.--bg {
    width: 2rem;
    height: 2rem;
  }
}

.p-about {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.p-about::before {
  content: "";
  background: #F0F0FF;
  width: 100%;
  height: 6.25rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-about__top {
  background: #30394E;
  color: #fff;
  padding-top: 3rem;
  padding-bottom: 5rem;
  border-radius: 2.5rem 2.5rem 0 0;
}
@media screen and (min-width: 768px) {
  .p-about__top {
    padding-top: 7.5rem;
    padding-bottom: 12.5rem;
    border-radius: 5rem 5rem 0 0;
  }
}

@media screen and (min-width: 768px) {
  .p-about__inner {
    max-width: 1120px;
  }
}

.p-about__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 2rem;
}
.p-about__title span {
  font-family: "Outfit", sans-serif;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-about__title {
    font-size: 2.5rem;
    line-height: 3.8125rem;
  }
}

.p-about__text {
  font-size: max(10px, 1rem);
  font-weight: 500;
  text-align: center;
  margin-top: 1.5rem;
}

.p-about__image {
  margin-top: 1.5rem;
  margin-inline: -0.3125rem;
  aspect-ratio: 1080/815;
}
.p-about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-about__image {
    margin-top: 40px;
    margin-inline: -20px;
  }
}

.p-about__bannerWrapper {
  position: relative;
  z-index: 1;
  margin-top: 1.875rem;
  width: 91.061452514%;
  margin-inline: auto;
}
.p-about__bannerWrapper::after {
  content: "";
  background: url(../images/about_pointer.png) no-repeat center/contain;
  aspect-ratio: 130/90;
  -o-object-fit: contain;
     object-fit: contain;
  width: 4rem;
  display: block;
  position: absolute;
  bottom: -0.875rem;
  right: -1.125rem;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-about__bannerWrapper {
    margin-top: 2.9375rem;
    width: 77.7777777778%;
  }
  .p-about__bannerWrapper::after {
    width: 8.125rem;
    bottom: -1.625rem;
    right: -2.0625rem;
  }
}

.p-about__banner {
  border-radius: 0.75rem;
  border: 3px solid #DEE4EE;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-about__banner {
    border-radius: 1.5rem;
  }
}

.p-about__banner a {
  background: #233BE3;
  padding: 1rem 1.0625rem;
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about__banner a {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 0.125rem;
       -moz-column-gap: 0.125rem;
            column-gap: 0.125rem;
    padding: 2.875rem 1.75rem;
  }
  .p-about__banner a:hover {
    background: #0C22BB;
    opacity: 1;
  }
}

.p-about__catch {
  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;
  -webkit-column-gap: 0.25rem;
     -moz-column-gap: 0.25rem;
          column-gap: 0.25rem;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: left;
}
.p-about__catch span {
  width: 3.75rem;
  height: 3.75rem;
  background: #1E2433;
  color: #fff;
  font-size: max(10px, 0.75rem);
  line-height: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: -5.1px 5.1px 12.74px 0px rgba(53, 66, 99, .5) inset, 0px 5.1px 12.74px 0px rgba(0, 0, 0, .15);
          box-shadow: -5.1px 5.1px 12.74px 0px rgba(53, 66, 99, .5) inset, 0px 5.1px 12.74px 0px rgba(0, 0, 0, .15);
}
@media screen and (min-width: 768px) {
  .p-about__catch {
    font-size: 1.875rem;
    line-height: 3.375rem;
  }
  .p-about__catch span {
    width: auto;
    height: auto;
    border-radius: 50vmax;
    font-size: 1.25rem;
    padding: 1.0625rem 0.75rem;
    -webkit-box-shadow: -4px 4px 10px 0px rgba(53, 66, 99, .5) inset, 0px 4px 10px 0px rgba(0, 0, 0, .15);
            box-shadow: -4px 4px 10px 0px rgba(53, 66, 99, .5) inset, 0px 4px 10px 0px rgba(0, 0, 0, .15);
  }
}

.p-about__button {
  margin-top: 0.75rem;
  margin-inline: auto;
  text-align: center;
  border-radius: 0.5rem;
  min-width: 14.5rem;
  border: solid 0.125rem #233BE3;
  background: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  padding: 0.875rem 1rem;
  color: #233BE3;
  -webkit-box-shadow: 0px 3px 1.25rem 0px rgba(30, 36, 51, .2);
          box-shadow: 0px 3px 1.25rem 0px rgba(30, 36, 51, .2);
}
.p-about__button::after {
  content: "";
  display: block;
  width: 1.5rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  background: url(../images/icon_button_arrow_blue.png) no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-about__button {
    margin-top: 0;
    border-radius: 1rem;
    font-size: max(10px, 1rem);
    line-height: 2rem;
    padding: 0.625rem 1.125rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    min-width: 16rem;
  }
  .p-about__button::after {
    width: 2.5rem;
  }
}

.p-about__list {
  margin: 0;
  margin-top: -2.5rem;
}
@media screen and (min-width: 768px) {
  .p-about__list {
    margin-top: -5rem;
  }
}

.p-about__item {
  padding-top: 4.375rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 1;
  overflow: clip;
}
.p-about__item:nth-child(odd) {
  border-radius: 2.5rem 0 0 0;
  background: #fff;
}
.p-about__item:nth-child(odd) .p-about__wrapper::before {
  background: #AEB8FF;
  opacity: 0.3;
}
.p-about__item:nth-child(even) {
  border-radius: 0 2.5rem 0 0;
  background: #E1E9FF;
}
.p-about__item:nth-child(even) .p-about__wrapper::before {
  background: #fff;
  opacity: 1;
}
.p-about__item:nth-child(even) .p-about__conts {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-about__item:nth-child(n+2) {
  margin-top: -2.5rem;
}
.p-about__item:nth-child(2) {
  padding-bottom: 6.1875rem;
}
.p-about__item:nth-child(3) {
  padding-bottom: 3.5625rem;
}
@media screen and (min-width: 768px) {
  .p-about__item {
    padding-top: 8.125rem;
    padding-bottom: 11.25rem;
  }
  .p-about__item:nth-child(odd) {
    border-radius: 5rem 0 0 0;
  }
  .p-about__item:nth-child(even) {
    border-radius: 0 5rem 0 0;
  }
  .p-about__item:nth-child(n+2) {
    margin-top: -5rem;
    padding-bottom: 13.125rem;
  }
  .p-about__item:last-child {
    padding-bottom: 5.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-about__conts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 3.125rem;
       -moz-column-gap: 3.125rem;
            column-gap: 3.125rem;
  }
}

.p-about__wrapper {
  position: relative;
  z-index: 10;
}
.p-about__wrapper::before {
  content: "";
  -webkit-mask: url(../images/point_icon.svg) no-repeat center/contain;
          mask: url(../images/point_icon.svg) no-repeat center/contain;
  aspect-ratio: 118/98;
  width: 7.375rem;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  position: absolute;
  top: -1.5625rem;
  left: -0.625rem;
  -webkit-transform: rotate(-13deg);
          transform: rotate(-13deg);
  z-index: -1;
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .p-about__wrapper {
    width: 46.71875%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-top: 7.8125rem;
    padding-left: 3.5625rem;
  }
  .p-about__wrapper::before {
    width: 12.8125rem;
    top: 3.75rem;
    left: 0.5rem;
  }
}

.p-about__label {
  font-family: "Outfit", sans-serif;
  background: -webkit-gradient(linear, right top, left top, from(#5C70FF), color-stop(72.88%, #3047E9), to(#233BE3));
  background: linear-gradient(270deg, #5C70FF 0%, #3047E9 72.88%, #233BE3 100%);
  color: #fff;
  border-radius: 50vmax;
  padding: 0.25rem 0.75rem;
  font-size: max(10px, 0.9375rem);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.p-about__label small {
  font-size: max(10px, 0.875rem);
  margin-right: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-about__label {
    font-size: 1.75rem;
    padding-inline: 1.25rem;
  }
  .p-about__label small {
    font-size: 1.5rem;
  }
}

.p-about__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Outfit", "M PLUS Rounded 1c", serif;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 2.0625rem;
  margin-top: 0.5rem;
}
.p-about__item-title::before {
  content: "";
  width: 1.3125rem;
  height: 0.9375rem;
  background: url(../images/icon_check.svg) no-repeat center/contain;
  border-radius: 50%;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-about__item-title {
    font-size: 2.25rem;
    line-height: 3.3125rem;
    -webkit-column-gap: 0.875rem;
       -moz-column-gap: 0.875rem;
            column-gap: 0.875rem;
    margin-top: 1.3125rem;
  }
  .p-about__item-title::before {
    width: 2.5rem;
    height: 1.75rem;
  }
}

.p-about__item-text {
  font-size: max(10px, 0.875rem);
  font-weight: 500;
  line-height: 1.5;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-about__item-text {
    font-size: max(10px, 1rem);
    margin-top: 1rem;
  }
}

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

.p-about__item-image {
  margin-inline: -0.375rem;
  position: relative;
}
.p-about__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-about__item-image::before {
  content: "";
  background: url(../images/point_item_bg.svg) no-repeat center/contain;
  width: 100%;
  aspect-ratio: 1/1;
  display: block;
  position: absolute;
  z-index: -1;
  bottom: -1rem;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(1.5);
          transform: translateX(-50%) scale(1.5);
}
@media screen and (min-width: 768px) {
  .p-about__item-image {
    margin-inline: -1.25rem;
  }
  .p-about__item-image::before {
    bottom: -1.25rem;
  }
}

.p-about__item:nth-child(1) .p-about__item-image {
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-about__item:nth-child(1) .p-about__item-image {
    margin-top: 0;
  }
}

.p-about__item:nth-child(2) .p-about__item-image {
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-about__item:nth-child(2) .p-about__item-image {
    margin-top: 0;
  }
}

.p-about__item:nth-child(3) .p-about__item-image {
  margin-top: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .p-about__item:nth-child(3) .p-about__item-image {
    margin-top: 0;
  }
}

.p-about__circles {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.p-about__circle {
  position: absolute;
  -webkit-animation: float 5s infinite ease-in-out;
          animation: float 5s infinite ease-in-out;
}

.p-about__circle:nth-child(3n+1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.p-about__circle:nth-child(3n+2) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.p-about__circle:nth-child(3n) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.p-about__item:nth-child(1) .p-about__circle:nth-child(1) {
  top: 0.25rem;
  right: 2.875rem;
}
.p-about__item:nth-child(1) .p-about__circle:nth-child(2) {
  top: 2.5625rem;
  right: 3.3125rem;
}
.p-about__item:nth-child(1) .p-about__circle:nth-child(3) {
  top: 3.9375rem;
  right: 1.3125rem;
}
.p-about__item:nth-child(1) .p-about__circle:nth-child(4) {
  bottom: 2.75rem;
  left: 2.875rem;
}
.p-about__item:nth-child(1) .p-about__circle:nth-child(5) {
  bottom: 1.875rem;
  left: 1.4375rem;
}
.p-about__item:nth-child(1) .p-about__circle:nth-child(6) {
  bottom: 0.3125rem;
  left: 3.0625rem;
}
@media screen and (min-width: 768px) {
  .p-about__item:nth-child(1) .p-about__circle:nth-child(1) {
    top: 1.4375rem;
    right: 5.1875rem;
  }
  .p-about__item:nth-child(1) .p-about__circle:nth-child(2) {
    top: 6.125rem;
    right: 5.9375rem;
  }
  .p-about__item:nth-child(1) .p-about__circle:nth-child(3) {
    top: 7rem;
    right: 2.4375rem;
  }
  .p-about__item:nth-child(1) .p-about__circle:nth-child(4) {
    bottom: 6rem;
    left: 5.1875rem;
  }
  .p-about__item:nth-child(1) .p-about__circle:nth-child(5) {
    bottom: 4.375rem;
    left: 2.5rem;
  }
  .p-about__item:nth-child(1) .p-about__circle:nth-child(6) {
    bottom: 1.625rem;
    left: 5.5rem;
  }
}

.p-about__item:nth-child(2) .p-about__circle:nth-child(1) {
  top: 4.9375rem;
  right: 1.1875rem;
}
.p-about__item:nth-child(2) .p-about__circle:nth-child(2) {
  top: 5.5625rem;
  right: 2.625rem;
}
.p-about__item:nth-child(2) .p-about__circle:nth-child(3) {
  top: 6.4375rem;
  right: 0.6875rem;
}
.p-about__item:nth-child(2) .p-about__circle:nth-child(4) {
  bottom: 3.875rem;
  left: 0.4375rem;
}
.p-about__item:nth-child(2) .p-about__circle:nth-child(5) {
  bottom: 2.3125rem;
  left: 1.25rem;
}
.p-about__item:nth-child(2) .p-about__circle:nth-child(6) {
  bottom: 2.75rem;
  left: 3rem;
}
@media screen and (min-width: 768px) {
  .p-about__item:nth-child(2) .p-about__circle:nth-child(1) {
    top: 9.1875rem;
    right: 1.75rem;
  }
  .p-about__item:nth-child(2) .p-about__circle:nth-child(2) {
    top: 10.375rem;
    right: 4.4375rem;
  }
  .p-about__item:nth-child(2) .p-about__circle:nth-child(3) {
    top: 12rem;
    right: 1rem;
  }
  .p-about__item:nth-child(2) .p-about__circle:nth-child(4) {
    bottom: 7.375rem;
    left: 1.875rem;
  }
  .p-about__item:nth-child(2) .p-about__circle:nth-child(5) {
    bottom: 3.6875rem;
    left: 3.3125rem;
  }
  .p-about__item:nth-child(2) .p-about__circle:nth-child(6) {
    bottom: 4.875rem;
    left: 6.1875rem;
  }
}

.p-about__item:nth-child(3) .p-about__circle:nth-child(1) {
  top: -0.75rem;
  right: 1.75rem;
}
.p-about__item:nth-child(3) .p-about__circle:nth-child(2) {
  top: 1.375rem;
  right: 3.125rem;
}
.p-about__item:nth-child(3) .p-about__circle:nth-child(3) {
  top: 1.625rem;
  right: 0;
}
.p-about__item:nth-child(3) .p-about__circle:nth-child(4) {
  bottom: 3.375rem;
  left: 0rem;
}
.p-about__item:nth-child(3) .p-about__circle:nth-child(5) {
  bottom: 1.5rem;
  left: 0.625rem;
}
.p-about__item:nth-child(3) .p-about__circle:nth-child(6) {
  bottom: 0.375rem;
  left: 2.6875rem;
}

@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
.p-faq {
  background: #EEF3FB;
  border-radius: 2.5rem 2.5rem 0 0;
  padding: 3rem 0 3.125rem;
}
.p-faq::before {
  content: "";
  background: url(../images/faq_image.png) no-repeat center/cover;
  aspect-ratio: 290/199;
  width: 10.5rem;
  height: 7.1875rem;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: -7.1875rem;
  left: 2.1875rem;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-faq {
    border-radius: 5rem 5rem 0 0;
    padding: 7.5rem 0 6.5625rem;
  }
  .p-faq::before {
    width: 18.125rem;
    height: 12.4375rem;
    top: -12.4375rem;
    left: calc(50% + 17.3125rem);
  }
}

.p-faq__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  position: relative;
  width: 17.1875rem;
  margin: 0 auto;
}
.p-faq__title::before {
  content: "";
  background: url(../images/faq_cloud.png) no-repeat center/contain;
  width: 2.625rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: -0.75rem;
  left: 0;
}
.p-faq__title::after {
  content: "";
  background: url(../images/faq_question.png) no-repeat center/contain;
  width: 2.9375rem;
  aspect-ratio: 47/58;
  position: absolute;
  bottom: -1.125rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-faq__title {
    font-size: 2.5rem;
    width: 29.75rem;
    text-align: left;
    padding-left: 5.8125rem;
  }
  .p-faq__title::before {
    width: 4.5625rem;
    top: -2.3125rem;
  }
  .p-faq__title::after {
    width: 5.125rem;
    bottom: -1.25rem;
    aspect-ratio: 81/101;
  }
}

.p-faq__list {
  margin-top: 2rem;
  counter-reset: num;
}
@media screen and (min-width: 768px) {
  .p-faq__list {
    width: 84.375%;
    margin-inline: auto;
    margin-top: 3rem;
  }
}

.p-faq__item {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  -webkit-box-shadow: 0 0.3125rem 0.625rem rgba(30, 36, 51, .05);
          box-shadow: 0 0.3125rem 0.625rem rgba(30, 36, 51, .05);
}
.p-faq__item:nth-child(n+2) {
  margin-top: 1rem;
}
.p-faq__item::before {
  content: counter(num, decimal-leading-zero);
  counter-increment: num;
  padding: 0 0.75rem;
  background: -webkit-gradient(linear, right top, left top, from(#5C70FF), color-stop(72.88%, #3047E9), to(#233BE3));
  background: linear-gradient(270deg, #5C70FF 0%, #3047E9 72.88%, #233BE3 100%);
  font-family: "Outfit", sans-serif;
  font-size: max(10px, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.625rem;
  border-radius: 50vmax;
  color: #fff;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-faq__item {
    padding: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }
  .p-faq__item::before {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 1.25rem;
    line-height: 2.0625rem;
  }
}

.p-faq__conts {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-faq__conts {
    margin-top: 0;
  }
}

.p-faq__q {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .p-faq__q {
    font-size: 1.375rem;
    line-height: 2rem;
  }
}

.p-faq__a {
  margin-top: 0.75rem;
  font-size: max(10px, 0.875rem);
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-faq__a {
    margin-top: 1rem;
    font-size: max(10px, 1rem);
  }
}

.p-footer {
  background: #1E2433;
  color: #fff;
  padding: 1.5rem 0 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding: 2.5rem 0;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
  }
}

.p-footer__logo {
  width: 8.5625rem;
  margin-inline: auto;
  aspect-ratio: 137/24;
}
.p-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    width: 11.8125rem;
    margin-inline: 0;
    aspect-ratio: 189/33;
  }
}

.p-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-footer__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 0;
  }
}

.p-footer__item a {
  font-size: max(10px, 0.75rem);
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.04em;
  padding-inline: 0.9375rem;
}
.p-footer__item:nth-child(n+2)::before {
  content: "|";
}
@media screen and (min-width: 768px) {
  .p-footer__item a {
    padding-inline: 0.625rem;
  }
}

.p-footer__copyright {
  font-size: max(10px, 0.75rem);
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-top: 1rem;
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    text-align: left;
    margin-top: 0;
  }
}

.p-form-box {
  border-radius: 1rem;
  background: #fff;
  padding: 2rem 0.5rem 0.3125rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.1875rem 1.25rem rgba(30, 36, 51, .1);
          box-shadow: 0 0.1875rem 1.25rem rgba(30, 36, 51, .1);
}
@media screen and (min-width: 768px) {
  .p-form-box {
    padding: 2rem 2rem 1rem;
  }
}

.p-form-box__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.p-form-box__text {
  text-align: center;
  font-size: max(10px, 0.875rem);
  font-weight: 500;
  line-height: 1.4;
  margin-top: 0.9375rem;
  margin-inline: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-form-box__text {
    font-size: max(10px, 1rem);
    margin-top: 1rem;
    margin-inline: -0.25rem;
  }
}

.p-form-box form {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-form-box form {
    margin-top: 2rem;
  }
}

.p-form-box__bottom {
  font-size: max(10px, 1rem);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  margin-top: 1rem;
}
.p-form-box__bottom a {
  color: #6EBAE4;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .p-form-box__bottom {
    margin-top: 1.5rem;
  }
}

.p-form-main {
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-form-main {
    text-align: left;
  }
}

.p-form-main__title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  display: inline-block;
  position: relative;
}
.p-form-main__title::after {
  content: "";
  background: url(../images/icon_pencil.png) no-repeat center/contain;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  margin-left: 0.625rem;
  position: absolute;
  bottom: 0.4375rem;
  right: 0.75rem;
}
.p-form-main__title span {
  font-family: "Outfit", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-form-main__title {
    text-align: left;
    font-size: 2rem;
  }
  .p-form-main__title::after {
    position: relative;
    bottom: auto;
    right: auto;
    margin-left: 0.75rem;
  }
}

.p-form-main__image {
  margin-top: 0.875rem;
  margin-inline: -0.625rem;
  aspect-ratio: 767/708;
}
.p-form-main__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-form-main__image + .p-form-main__image {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-form-main__image {
    margin-top: 0.75rem;
    margin-inline: -1.25rem;
  }
  .p-form-main__image + .p-form-main__image {
    margin-top: 1.25rem;
  }
}

.p-form-main__box {
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.75rem;
  margin-top: 0.875rem;
  -webkit-box-shadow: 0 0.1875rem 1.25rem rgba(30, 36, 51, .1);
          box-shadow: 0 0.1875rem 1.25rem rgba(30, 36, 51, .1);
}
@media screen and (min-width: 768px) {
  .p-form-main__box {
    padding: 1.5rem;
    margin-top: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
  }
}

.p-form-main__box-title {
  background: #64748B;
  color: #fff;
  text-align: center;
  min-width: 12rem;
  margin-inline: auto;
  border-radius: 0.5rem;
  padding: 0.375rem 1.5rem;
  font-size: max(10px, 1rem);
  font-weight: 800;
  line-height: 1.4;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-form-main__box-title {
    min-width: 14.25rem;
    padding: 0.5rem 1.5rem;
    font-size: 1.25rem;
  }
}

.p-form-main__box-list {
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  max-width: 19.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-form-main__box-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 1.0625rem;
    max-width: none;
    max-width: initial;
    margin-inline: 0;
  }
}

.p-form-main__box-item {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.25rem;
     -moz-column-gap: 0.25rem;
          column-gap: 0.25rem;
}
.p-form-main__box-item::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-form-main__box-item {
    font-size: 1.75rem;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }
  .p-form-main__box-item::before {
    width: 2rem;
    height: 2rem;
  }
}

.p-form-main__box-item:nth-child(1):before {
  background: url(../images/icon_form_box_img01.png) no-repeat center/contain;
}

.p-form-main__box-item:nth-child(2):before {
  background: url(../images/icon_form_box_img02.png) no-repeat center/contain;
}

.p-form-main__box-item:nth-child(3):before {
  background: url(../images/icon_form_box_img03.png) no-repeat center/contain;
}

.p-form-main__box-item:nth-child(4):before {
  background: url(../images/icon_form_box_img04.png) no-repeat center/contain;
}

.p-form {
  background: #F0F0FF;
  padding-top: 6rem;
  padding-bottom: max(23.8461538462vw, 6.25rem);
  position: relative;
  min-height: calc(100vh - 8.625rem);
}
.p-form::after {
  content: "";
  background: url(../images/form_bottom_image.png) no-repeat center/contain;
  width: 28.7179487179%;
  aspect-ratio: 222/145;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  bottom: 0;
  right: 1rem;
}
@media screen and (min-width: 768px) {
  .p-form {
    padding-top: 9.5625rem;
    padding-bottom: 7.5rem;
    min-height: calc(100vh - 7.0625rem);
  }
  .p-form::after {
    width: 13.875rem;
    right: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-form__inner {
    display: grid;
    grid-template-columns: 56.25% auto;
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-form__form {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-form__form {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-form__thanks {
    width: 45rem;
  }
}

.p-header {
  max-width: 100vw;
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px;
  z-index: 10000;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-header {
    padding: 24px 40px;
    height: 110px;
  }
}

.p-header__logo {
  display: block;
}
.p-header__logo img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 149px;
  width: 100%;
  height: 100%;
  aspect-ratio: 149/26;
}
@media screen and (min-width: 768px) {
  .p-header__logo img {
    max-width: 189px;
  }
}

.p-header__nav {
  visibility: hidden;
  height: 100vh;
  right: 16px;
  position: fixed;
  top: 0;
  width: 100vw;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  z-index: 2;
  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;
  gap: 24px;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    visibility: visible;
    height: auto;
    position: static;
    width: auto;
    opacity: 1;
  }
}

/* メニューオープン時 */
.p-header__nav.fade {
  opacity: 1;
  visibility: visible;
  border-radius: 16px;
  background: #fff;
  -webkit-box-shadow: 0px 3px 20px 0px rgba(30, 36, 51, .1);
          box-shadow: 0px 3px 20px 0px rgba(30, 36, 51, .1);
  height: auto;
  width: auto;
  z-index: 99999;
  top: 76px;
  padding: 24px;
}

.p-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-header__menu {
    display: none;
  }
}

.p-header__menu-li a {
  color: #000;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8;
  padding-left: 24px;
  position: relative;
}
.p-header__menu-li a::after {
  position: absolute;
  content: "";
  top: calc(50% - 5.5px);
  left: 0;
  display: block;
  width: 14px;
  height: 11px;
  -webkit-mask-image: url(../images/icon_check.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/icon_check.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #233BE3;
}
.p-header__menu-li a span {
  font-family: "Outfit", sans-serif;
}

.p-header__button {
  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;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-header__button {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: fixed;
    top: 24px;
    right: 40px;
  }
}

/*ハンバーガーメニュー*/
/* 以下、ハンバーガーボタン */
.p-header__burger-btn {
  display: block;
  height: 48px;
  position: relative;
  width: 48px;
  z-index: 3;
  border-radius: 16px;
  background: #fff;
  -webkit-box-shadow: 0px 3px 20px 0px rgba(30, 36, 51, .1);
          box-shadow: 0px 3px 20px 0px rgba(30, 36, 51, .1);
  position: fixed;
  top: 16px;
  right: 16px;
}
@media screen and (min-width: 768px) {
  .p-header__burger-btn {
    display: none;
  }
}

.p-header__bar {
  background: center/contain no-repeat url(../images/burger-bar.svg);
  display: block;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 20px;
  height: 4px;
}
@media screen and (min-width: 768px) {
  .p-header__bar {
    display: none;
  }
}

.p-header__bar.--top {
  top: 14px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-header__bar.--mid {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-header__bar.--bottom {
  bottom: 14px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-header__burger-btn.close .--top {
  -webkit-transform: translate(-50%, 8px) rotate(45deg);
          transform: translate(-50%, 8px) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-header__burger-btn.close .--mid {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-header__burger-btn.close .--bottom {
  -webkit-transform: translate(-50%, -8px) rotate(-45deg);
          transform: translate(-50%, -8px) rotate(-45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-line {
  border: solid 0.25rem #1EC412;
  color: #1EC412;
  border-radius: 0.75rem;
  text-align: center;
}

.p-line__top {
  padding: 1rem 1rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-line__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
    text-align: left;
    padding: 1.25rem 0.625rem 0.8125rem 1rem;
  }
}

.p-line__image {
  aspect-ratio: 1/1;
  width: 5rem;
  margin-inline: auto;
  border: solid 0.25rem rgba(0, 0, 0, .1);
}
.p-line__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-line__image {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 5.5rem;
    margin-inline: 0;
  }
}

.p-line__conts {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-line__conts {
    margin-top: 0;
  }
}

.p-line__title {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.04em;
}
.p-line__title::after {
  content: "";
  background: url(../images/icon_hands02.png) no-repeat center/contain;
  aspect-ratio: 1/1;
  width: 1.25rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.p-line__text {
  font-size: max(10px, 0.875rem);
  font-weight: bold;
  line-height: 1.2857142857;
  margin-top: 1rem;
}

.p-line__button {
  width: 100%;
  display: block;
}

.p-line__button a {
  background: #1EC412;
  color: #fff;
  display: block;
  width: 100%;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, .2);
  font-size: 1.125rem;
  font-weight: bold;
  padding: 0.375rem;
}
.p-line__button a::after {
  content: "";
  display: inline-block;
  width: 0.875rem;
  aspect-ratio: 29/36;
  -o-object-fit: contain;
     object-fit: contain;
  background: url(../images/icon_people.png) no-repeat center/contain;
  margin-left: 0.3125rem;
  vertical-align: middle;
}

.p-mv {
  max-width: 100%;
  width: 100%;
  height: 100vh;
  max-height: 631px;
  background-color: #F0F0FF;
  padding-top: 80px;
}
@media screen and (min-width: 768px) {
  .p-mv {
    max-height: 52.5vw;
    padding-top: 110px;
  }
}
@media screen and (min-width: 1440px) {
  .p-mv {
    max-height: 830px;
  }
}

.p-mv__inner {
  max-width: 1440px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 16px;
  padding-top: 16px;
  position: relative;
}
.p-mv__inner::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: center bottom/contain no-repeat url(../images/mv_sp.png);
}
@media screen and (min-width: 768px) {
  .p-mv__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-inline: auto;
    padding-inline: 5rem;
    padding-top: 0;
    background: none;
  }
  .p-mv__inner::after {
    width: 65.9%;
    background: center bottom/contain no-repeat url(../images/mv.png);
  }
}
@media (orientation: landscape) and (max-width: 980px) {
  .p-mv__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-inline: auto;
    background: none;
  }
  .p-mv__inner::after {
    width: 55%;
    background: center bottom/contain no-repeat url(../images/mv.png);
  }
}

.p-mv__heading {
  max-width: 100%;
  width: 21.25rem;
  font-size: 2.125rem;
  font-weight: 800;
  line-height: 1.4;
}
.p-mv__heading span {
  font-family: "Outfit", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-mv__heading {
    max-width: 520px;
    width: 32.5rem;
    font-size: 3.25rem;
  }
}
@media (orientation: landscape) and (max-width: 980px) {
  .p-mv__heading {
    font-size: clamp(28px, 3.32vw, 2.125rem);
  }
}

.p-mv__left {
  position: relative;
  z-index: 5;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-mv__left {
    margin-inline: 0;
  }
}
@media (orientation: landscape) and (max-width: 980px) {
  .p-mv__left {
    margin-inline: 0;
  }
}

.p-mv__right {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  display: block;
  width: 65.9%;
  height: 100%;
  z-index: 0;
}

.p-mv__image img {
  width: 100%;
  min-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-mv__button {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-mv__button {
    margin-top: 3.3125rem;
  }
}
@media (orientation: landscape) and (max-width: 980px) {
  .p-mv__button {
    margin-top: 1.25rem;
  }
}

.p-online {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
  margin-inline: 0.75rem;
  border-top: dashed 0.125rem #64748B;
}

.p-online__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-online__title {
    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-online__title::before {
    content: "";
    display: inline-block;
    background: url(../images/icon_party.png) no-repeat center/contain;
    aspect-ratio: 1/1;
    width: 2rem;
    margin-right: 0.625rem;
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
    margin-top: -0.3125rem;
  }
}

.p-online__blue {
  color: #233BE3;
}

.p-online__pink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #F81574;
}
.p-online__pink::before {
  content: "";
  display: inline-block;
  background: url(../images/icon_party.png) no-repeat center/contain;
  aspect-ratio: 1/1;
  width: 2rem;
  margin-right: 0.875rem;
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
  margin-top: 0.3125rem;
}
.p-online__pink::after {
  content: "";
  display: inline-block;
  background: url(../images/icon_face.png) no-repeat center/contain;
  aspect-ratio: 133/80;
  width: 2.875rem;
  margin-left: 0.875rem;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-online__pink {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 0.5em;
  }
  .p-online__pink::before {
    display: none;
  }
  .p-online__pink::after {
    margin-left: 0.625rem;
    margin-top: -0.3125rem;
  }
}

.p-online__text {
  text-align: center;
  margin-top: 1rem;
  font-size: max(10px, 1rem);
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-online__text {
    font-size: 1.125rem;
  }
}

.p-online__calendar {
  margin-top: 1.5rem;
}

.p-plan {
  background: #C5D5FF;
  padding-top: 3rem;
  padding-bottom: 10.625rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.p-plan::before, .p-plan::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-plan::before {
  width: 15.375rem;
  aspect-ratio: 422/325;
  background: url("../images/price_top_deco.svg") no-repeat center/contain;
  top: 4.5625rem;
  right: -1.5625rem;
  -webkit-transform: rotate(17deg);
          transform: rotate(17deg);
}
.p-plan::after {
  width: 9rem;
  aspect-ratio: 112/89;
  background: url("../images/price_bottom_deco.svg") no-repeat center/contain;
  bottom: 7.375rem;
  left: -1.5625rem;
  -webkit-transform: rotate(-23deg);
          transform: rotate(-23deg);
}
@media screen and (min-width: 768px) {
  .p-plan {
    padding-top: 4.75rem;
    padding-bottom: 11.875rem;
  }
  .p-plan::before {
    width: 26.375rem;
    top: 7.5rem;
    right: auto;
    left: calc(50% + 12.1875rem);
  }
  .p-plan::after {
    width: 13.75rem;
    left: calc(50% - 39.0625rem);
    bottom: 13.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-plan__inner {
    max-width: 1273px;
  }
}

.p-plan__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}
.p-plan__title span {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 0.1875rem;
}
.p-plan__title span em {
  font-size: 3rem;
  margin-right: -10px;
}
.p-plan__title span::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: calc(50% + 0.625rem);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: -webkit-gradient(linear, right top, left top, from(#5C70FF), color-stop(72.88%, #3047E9), to(#233BE3));
  background: linear-gradient(270deg, #5C70FF 0%, #3047E9 72.88%, #233BE3 100%);
  width: 7.3125rem;
  height: 1.0625rem;
  opacity: 0.5;
  border-radius: 50vmax;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-plan__title {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  .p-plan__title span {
    display: inline;
  }
  .p-plan__title span em {
    font-size: 5rem;
  }
  .p-plan__title span::before {
    width: 11.1875rem;
    height: 1.625rem;
  }
}

.p-plan__conts {
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, .4);
  padding: 0.3125rem;
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-plan__conts {
    width: 39.375rem;
    min-width: 500px;
    margin-inline: auto;
    padding: 0.625rem;
    border-radius: 1.5rem;
    margin-top: 2.375rem;
  }
}

.p-plan__wrapper {
  background: #FFFFFF;
  border-radius: 0.5625rem;
  text-align: center;
  padding: 2rem 1.0625rem;
  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;
  position: relative;
}
.p-plan__wrapper::before, .p-plan__wrapper::after {
  content: "";
  position: absolute;
  z-index: 10;
  display: inline-block;
}
.p-plan__wrapper::before {
  background: url(../images/plan_deco02.png) no-repeat center/contain;
  aspect-ratio: 215/244;
  width: 3.8125rem;
  top: -1.875rem;
  left: 0;
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
}
.p-plan__wrapper::after {
  background: url(../images/plan_deco01.png) no-repeat center/contain;
  aspect-ratio: 113/80;
  width: 5.1875rem;
  bottom: -2.1875rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-plan__wrapper {
    border-radius: 1.125rem;
    padding: 3rem 1.5rem;
  }
  .p-plan__wrapper::before {
    width: 6.6875rem;
    left: -2.8125rem;
    top: -1.25rem;
    -webkit-transform: rotate(-8deg) translateX(-100%);
            transform: rotate(-8deg) translateX(-100%);
  }
  .p-plan__wrapper::after {
    width: 7.0625rem;
    right: -15.3125rem;
    bottom: 11.0625rem;
  }
}

.p-plan__logo {
  aspect-ratio: 190/33;
  width: 9.3125rem;
  margin-inline: auto;
}
.p-plan__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-plan__logo {
    width: 11.8125rem;
  }
}

.p-plan__price {
  margin-top: 1.5rem;
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
}
.p-plan__price span {
  font-weight: 600;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-plan__price {
    font-size: 5rem;
    margin-top: 2rem;
  }
  .p-plan__price span {
    font-size: 2.5rem;
  }
}

.p-plan__note {
  color: #64748B;
  font-size: max(10px, 0.875rem);
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-plan__note {
    margin-top: 1rem;
    font-size: max(10px, 0.9375rem);
  }
}

.p-plan__box {
  margin-top: 1.5rem;
  background: #F4F4FF;
  border-radius: 1rem;
  padding: 1rem 2rem 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-plan__box {
    margin-top: 2rem;
  }
}

.p-plan__label {
  display: inline-block;
  background: #30394E;
  color: #fff;
  border-radius: 0.5rem;
  font-size: max(10px, 1rem);
  font-weight: bold;
  text-align: center;
  line-height: 1;
  padding: 0.5rem 1.25rem;
}

.p-plan__check {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-plan__check {
    display: grid;
    grid-template-columns: auto auto;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}

.p-plan__list {
  text-align: left;
}

.p-plan__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: max(10px, 1rem);
  line-height: 2;
  font-weight: bold;
}
.p-plan__item::before {
  content: "";
  -webkit-mask: url(../images/icon_check.svg) no-repeat center/contain;
          mask: url(../images/icon_check.svg) no-repeat center/contain;
  background: #233BE3;
  width: 1.125rem;
  height: 0.75rem;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  margin-right: 0.4375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-plan__button {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-plan__button {
    margin-top: 3rem;
  }
}

.p-recommend {
  padding-bottom: 3rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#D3E0FF));
  background: linear-gradient(180deg, #FFFFFF 0%, #D3E0FF 100%);
}
@media screen and (min-width: 768px) {
  .p-recommend {
    padding-bottom: 7.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-recommend__inner {
    max-width: 1200px;
  }
}

.p-recommend__banner {
  -webkit-box-shadow: 0 0.375rem 0.9375rem rgba(30, 36, 51, .2);
          box-shadow: 0 0.375rem 0.9375rem rgba(30, 36, 51, .2);
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  aspect-ratio: 358/233;
  border-radius: 1rem;
  border: solid 4px #fff;
  -o-object-fit: contain;
     object-fit: contain;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-recommend__banner {
    max-width: 1100px;
    border: solid 0.625rem #fff;
    border-radius: 2.5rem;
    aspect-ratio: 1080/358;
  }
}

.p-recommend__link {
  background: -webkit-gradient(linear, right top, left top, from(#5C70FF), color-stop(72.88%, #3047E9), to(#233BE3));
  background: linear-gradient(270deg, #5C70FF 0%, #3047E9 72.88%, #233BE3 100%);
  padding: 1.5rem 1.5rem 1rem;
  display: block;
  width: 100%;
  height: 100%;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  z-index: 1;
}
.p-recommend__link::before {
  content: "";
  background: url(../images/sp_banner_bg.png) no-repeat center/cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.p-recommend__link::after {
  content: "";
  background: #0C22BB;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media screen and (min-width: 768px) {
  .p-recommend__link {
    padding: 4.0625rem 3.5rem;
    background: -webkit-gradient(linear, right top, left top, from(#5C70FF), color-stop(72.88%, #3047E9), to(#233BE3));
    background: linear-gradient(270deg, #5C70FF 0%, #3047E9 72.88%, #233BE3 100%);
    -webkit-transition: 2s;
    transition: 2s;
  }
  .p-recommend__link::before {
    background: url(../images/pc_banner_bg.png) no-repeat center/cover;
  }
  .p-recommend__link:hover {
    opacity: 1;
  }
  .p-recommend__link:hover::after {
    opacity: 1;
  }
}

.p-recommend__balloon {
  display: inline-block;
  padding: 0.5625rem 1.75rem;
  border-radius: 50vmax;
  background-color: #1e2433;
  text-align: left;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
  position: relative;
}
.p-recommend__balloon::before {
  content: "";
  background: url(../images/icon_ballon_tail.svg) no-repeat center/contain;
  aspect-ratio: 18/15;
  width: 1rem;
  position: absolute;
  bottom: -0.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-recommend__balloon {
    font-size: 1.5rem;
    padding: 0.75rem 2.5rem;
  }
  .p-recommend__balloon::before {
    width: 1.375rem;
  }
}

.p-recommend__catch {
  margin-top: 0.625rem;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 2.4375rem;
  letter-spacing: 0%;
  text-shadow: 0px 2px 0px rgba(12, 20, 93, .15), 0px 1px 2px rgba(0, 0, 0, .2);
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-recommend__catch {
    margin-top: 0.3125rem;
    font-size: 2.5rem;
    line-height: 4.5rem;
  }
}

.p-recommend__button {
  margin-top: 0.5rem;
  border-radius: 0.5rem;
  min-width: 14.5rem;
  border: solid 0.125rem #233BE3;
  display: inline-block;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  padding: 0.875rem 1rem;
  position: relative;
  overflow: hidden;
  color: #233BE3;
  background: #fff;
  -webkit-box-shadow: 0px 3px 1.25rem 0px rgba(30, 36, 51, .2);
          box-shadow: 0px 3px 1.25rem 0px rgba(30, 36, 51, .2);
}
.p-recommend__button::after {
  content: "";
  display: block;
  width: 1.5rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  background: url(../images/icon_button_arrow_blue.png) no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-recommend__button {
    margin-top: 1.375rem;
    border-radius: 1rem;
    font-size: 1.25rem;
    line-height: 2rem;
    padding: 1.125rem 1.25rem 1.125rem 1.5rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
  .p-recommend__button::after {
    width: 2.5rem;
  }
}

.p-recommend__title {
  margin-top: 4rem;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2.0625rem;
  font-weight: 800;
  position: relative;
}
.p-recommend__title::before {
  content: "";
  background: url(../images/icon_hands.png) no-repeat center/contain;
  width: 2.625rem;
  aspect-ratio: 112/110;
  display: block;
  -webkit-transform: rotate(-17.9deg);
          transform: rotate(-17.9deg);
  position: absolute;
  top: 0;
  left: calc(50% + 7.75rem);
}
@media screen and (min-width: 768px) {
  .p-recommend__title {
    margin-top: 6.875rem;
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
  .p-recommend__title::before {
    width: 3.625rem;
    left: calc(50% + 12.875rem);
    top: 0.375rem;
  }
}

.p-recommend__list {
  margin-top: 2rem;
  max-width: 600px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-recommend__list {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
  }
}

.p-recommend__item {
  background: #F1F6FF;
  -webkit-box-shadow: 0 3px 1.25rem 0 rgba(30, 36, 51, .1);
          box-shadow: 0 3px 1.25rem 0 rgba(30, 36, 51, .1);
  padding-top: 2rem;
  border-radius: 1rem;
  text-align: center;
  overflow: hidden;
}
.p-recommend__item + .p-recommend__item {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-recommend__item + .p-recommend__item {
    margin-top: 0;
  }
}

.p-recommend__image {
  aspect-ratio: 207/126;
  width: 57.8212290503%;
  margin-inline: auto;
}
.p-recommend__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-recommend__image {
    aspect-ratio: 296/180;
    width: 82.2222222222%;
  }
}

.p-recommend__item-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-recommend__item-title {
    margin-top: 2rem;
  }
}

.p-recommend__text {
  margin-top: 2rem;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 1.75rem 0 1.25rem;
  background: #30394E;
  position: relative;
}
.p-recommend__text::before {
  content: "";
  background: url(../images/recommend_icon.svg) no-repeat center/contain;
  width: 2.5rem;
  aspect-ratio: 1/1;
  display: block;
  position: absolute;
  top: -1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-recommend__text {
    padding: 2.375rem 1.25rem;
    font-size: 1.25rem;
    margin-top: 2.875rem;
  }
  .p-recommend__text::before {
    width: 3.625rem;
    top: -1.6875rem;
  }
}

.p-thanks__top {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.1875rem 1.25rem rgba(30, 36, 51, .1);
          box-shadow: 0 0.1875rem 1.25rem rgba(30, 36, 51, .1);
}

.p-thanks__title {
  text-align: center;
  background: #64748B;
  color: #fff;
  padding: 1.5rem 1.625rem;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.4;
}
.p-thanks__title::after {
  content: "";
  background: url(../images/icon_hands.png) no-repeat center/contain;
  aspect-ratio: 56/55;
  width: 2.25rem;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  display: inline-block;
  vertical-align: text-top;
  margin-right: -2.25rem;
}
@media screen and (min-width: 768px) {
  .p-thanks__title {
    font-size: 2rem;
    padding: 1.125rem 1.25rem 2rem;
  }
  .p-thanks__title::after {
    width: 3.125rem;
    margin-right: 0;
    margin-left: 0.625rem;
    vertical-align: baseline;
  }
}

.p-thanks__cta {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
  padding-inline: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-thanks__cta {
    padding-inline: 1.5rem;
    padding-top: 2.5rem;
  }
}

.p-thanks__button {
  font-size: max(10px, 1.125rem);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.p-thanks__text {
  text-align: center;
  margin-top: 3rem;
  font-size: max(10px, 1rem);
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-thanks__text {
    font-size: 1.125rem;
    margin-top: 3.5rem;
  }
}

.p-thanks__line {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-thanks__line {
    width: 25rem;
    margin-inline: auto;
  }
}

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

.p-thanks__back a {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #233BE3;
  margin-top: 2rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-thanks__back a::before {
  content: "";
  background: url(../images/icon_arrow.svg) no-repeat center/contain;
  aspect-ratio: 1/1;
  width: 1.5rem;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-thanks__back a {
    margin-top: 2.5rem;
  }
}

.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 */
