@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  min-width: 0;
}

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

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

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

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

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

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

select::-ms-expand {
  display: none;
}

/* リキッドレイアウト対応 */
html {
  font-size: 4.0712468193vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.2213740458vw;
  }
}
@media (min-width: 1310px) {
  html {
    font-size: 16px;
  }
}

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

a {
  -webkit-text-decoration: none;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

/* hover指定できるPCを想定したスタイル */
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
/* hoverが使えないタッチ端末を想定した装飾 */
@media (hover: none) {
  a:active {
    opacity: 0.6;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 6.6875rem;
  }
}

body {
  color: #000;
  display: flex;
  flex-direction: column;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: clip;
  text-rendering: optimizeSpeed;
}

main {
  flex: 1;
}

.l-drawer {
  bottom: 0;
  overflow: auto;
  position: fixed;
  right: 0;
  scrollbar-width: none;
  top: 0;
  transform: translateX(100%);
  transition: all 0.3s ease-out;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .l-drawer {
    display: none;
  }
}

.l-drawer::-webkit-scrollbar {
  display: none;
}

.l-drawer[aria-hidden=false] {
  transform: translateX(0);
}

.l-drawer-overlay {
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.4);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.3s ease-out;
  visibility: hidden;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .l-drawer-overlay {
    display: none;
  }
}

.l-drawer-overlay[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}

.l-header {
  bottom: auto;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  top: 15px;
  top: 0.9375rem;
  width: 100%;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .l-header {
    bottom: auto;
    left: 0;
    right: 0;
    top: 0;
    top: 45px;
    top: 2.8125rem;
  }
}

.l-header.is-drawerActive .p-header__container {
  background-color: transparent;
  box-shadow: none;
}
@media screen and (min-width: 768px) {
  .l-header.is-drawerActive .p-header__container {
    background-color: #fff;
    box-shadow: 0.3125rem 0.3125rem 3.125rem rgba(0, 0, 0, 0.1);
  }
}

.l-header.is-drawerActive .p-header__logo,
.l-header.is-drawerActive .p-header__nav-button {
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .l-header.is-drawerActive .p-header__logo,
  .l-header.is-drawerActive .p-header__nav-button {
    opacity: 1;
    pointer-events: auto;
  }
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  max-width: 37.5rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1310px;
    max-width: 81.875rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
  }
}

.c-button {
  background-color: #e1467c;
  border: 1px solid #e1467c;
  border: 0.0625rem solid #e1467c;
  border-radius: 100vmax;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  padding: 16.7px 16px;
  padding: 1.04375rem 1rem;
  position: relative;
  text-align: center;
  width: 100%;
}

.c-button::before {
  background-color: #fff;
  border: 1px solid #e1467c;
  border: 0.0625rem solid #e1467c;
  border-radius: 100vmax;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scaleX(0);
  transform-origin: center left;
  transition: transform 0.4s cubic-bezier(0.85, 0, 0.15, 1);
  width: 100%;
}

.c-button span {
  -moz-column-gap: 1.5rem;
  align-items: center;
  color: #fff;
       column-gap: 1.5rem;
  display: inline-flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  position: relative;
  transition: color 0.3s ease-in-out;
}

.c-button span::after {
  aspect-ratio: 1;
  border-right: 3px solid currentColor;
  border-top: 3px solid currentColor;
  content: "";
  display: inline-block;
  margin-top: -6px;
  margin-top: -0.375rem;
  transform: translateX(0) rotate(135deg);
  width: 10px;
  width: 0.625rem;
}

.c-button--left span::after {
  margin-top: 0;
  transform: translateX(0) rotate(45deg);
}

@media (any-hover: hover) {
  .c-button:hover {
    opacity: 1;
  }
  .c-button:hover span {
    color: #e1467c;
  }
  .c-button:hover::before {
    transform: scaleX(1);
  }
}
.c-button--sm {
  padding: 14.6px 16px;
  padding: 0.9125rem 1rem;
}

.c-button--spSm {
  padding: 8.2px 16px;
  padding: 0.5125rem 1rem;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .c-button--spSm {
    display: none;
  }
}

.c-button--spSm span {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
}

.c-button--spSm span::after {
  content: none;
}

.c-card1 {
  cursor: pointer;
  height: 100%;
  padding: 0;
}

.c-card1__wrap {
  align-items: stretch;
  display: flex;
  height: auto;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-card1__wrap {
    align-items: center;
    height: 100%;
  }
}

.c-card1__image {
  flex-shrink: 0;
  width: 120px;
  width: 7.5rem;
}
@media screen and (min-width: 768px) {
  .c-card1__image {
    width: 200px;
    width: 12.5rem;
  }
}

.c-card1__image img {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.c-card1__body {
  align-items: center;
  display: flex;
  flex: 1;
  height: 100%;
  height: auto;
  padding: 12px 20px;
  padding: 0.75rem 1.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-card1__body {
    height: 200px;
    height: 12.5rem;
    padding: 20px 70px 20px 30px;
    padding: 1.25rem 4.375rem 1.25rem 1.875rem;
    position: relative;
  }
}

.c-card1__content {
  text-align: left;
}

.c-card1__role {
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-card1__role {
    font-size: max(20px, 10px);
    font-size: max(1.25rem, 10px);
  }
}

.c-card1__role span {
  display: inline-block;
  font-size: max(10px, 10px);
  font-size: max(0.625rem, 10px);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .c-card1__role span {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
}

.c-card1__name {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-card1__name {
    font-size: max(32px, 10px);
    font-size: max(2rem, 10px);
    margin-top: 24px;
    margin-top: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .c-card1__role:has(span) + .c-card1__name {
    margin-top: 20px;
    margin-top: 1.25rem;
  }
}

.c-card1__name-en {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: max(10px, 10px);
  font-size: max(0.625rem, 10px);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 7px;
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .c-card1__name-en {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    margin-top: 12px;
    margin-top: 0.75rem;
  }
}

.c-card1__position {
  font-family: "Poppins", sans-serif;
  font-size: max(10px, 10px);
  font-size: max(0.625rem, 10px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-card1__position {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 12px;
    margin-top: 0.75rem;
  }
}

.c-card1__icon {
  height: 7.33px;
  height: 0.458125rem;
  position: relative;
  width: 7.33px;
  width: 0.458125rem;
}
@media screen and (min-width: 768px) {
  .c-card1__icon {
    height: 16px;
    height: 1rem;
    position: absolute;
    right: 49px;
    right: 3.0625rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    width: 1rem;
  }
}

.c-card1__icon::before,
.c-card1__icon::after {
  background-color: #000;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease;
}

.c-card1__icon::before {
  height: 1px;
  height: 0.0625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-card1__icon::before {
    height: 2px;
    height: 0.125rem;
  }
}

.c-card1__icon::after {
  height: 100%;
  transform-origin: center;
  transition: transform 0.3s ease;
  width: 1px;
  width: 0.0625rem;
}
@media screen and (min-width: 768px) {
  .c-card1__icon::after {
    width: 2px;
    width: 0.125rem;
  }
}

.c-card1__link {
  -moz-column-gap: 0.739375rem;
  align-items: center;
  border-bottom: 1px solid #2C87E4;
  border-bottom: 0.0625rem solid #2C87E4;
  border-top: 1px solid #2C87E4;
  border-top: 0.0625rem solid #2C87E4;
       column-gap: 0.739375rem;
  display: flex;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 9.2px 20px;
  padding: 0.575rem 1.25rem;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

@media screen and (min-width: 768px) {
  .c-card1[aria-expanded=true] .c-card1__wrap {
    background-color: #2C87E4;
    color: #fff;
  }
}

.c-card1[aria-expanded=true] .c-card1__link {
  background-color: #2C87E4;
  color: #fff;
}

.c-card1[aria-expanded=true] .c-card1__link {
  border-bottom: 1px solid #fff;
  border-bottom: 0.0625rem solid #fff;
  border-top: 1px solid #fff;
  border-top: 0.0625rem solid #fff;
}

.c-card1[aria-expanded=true] .c-card1__icon::after {
  background-color: #fff;
  transform: translateY(-50%) rotate(90deg);
}

.c-card1[aria-expanded=true] .c-card1__icon::before {
  background-color: #fff;
}

@media (any-hover: hover) {
  .c-card1:hover .c-card1__wrap,
  .c-card1:hover .c-card1__link {
    background-color: #2C87E4;
    color: #fff;
  }
  .c-card1:hover .c-card1__link {
    border-bottom: 1px solid #fff;
    border-bottom: 0.0625rem solid #fff;
    border-top: 1px solid #fff;
    border-top: 0.0625rem solid #fff;
  }
  .c-card1:hover .c-card1__icon::before {
    background-color: #fff;
  }
  .c-card1:hover .c-card1__icon::after {
    background-color: #fff;
  }
}
.c-card2 {
  display: flex;
  flex-direction: column;
  height: 100%;
  row-gap: 20px;
  row-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-card2 {
    row-gap: 30px;
    row-gap: 1.875rem;
  }
}

.c-card2__number::before {
  background-color: #e1467c;
  border-radius: 100vmax;
  color: #fff;
  content: "Feature0" counter(number);
  counter-increment: number;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 700;
  line-height: 1;
  max-width: 100%;
  padding: 5px 20px;
  padding: 0.3125rem 1.25rem;
  text-align: center;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .c-card2__number::before {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    padding: 10px 30px;
    padding: 0.625rem 1.875rem;
  }
}

.c-card2__image {
  width: 100%;
}

.c-card2__image img {
  -o-object-fit: cover;
  aspect-ratio: 333/222;
  height: 100%;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-card2__image img {
    aspect-ratio: 380/253;
  }
}

.c-card2__title {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-card2__title {
    display: flex;
    flex-direction: column;
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
    justify-content: center;
    min-height: 72px;
    min-height: 4.5rem;
  }
}

.c-card2__comment {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-card2__comment {
    margin-top: 0;
  }
}

.c-card2__text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.09em;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .c-card2__text {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    letter-spacing: 0.1em;
    line-height: 1.79;
  }
}

.c-card3 {
  background-color: #fff;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
  padding: 1.875rem;
  row-gap: 30px;
  row-gap: 1.875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-card3 {
    -moz-column-gap: 2.1875rem;
    align-items: center;
    border-radius: 0.9375rem;
         column-gap: 2.1875rem;
    flex-direction: row;
    min-height: 300px;
    min-height: 18.75rem;
    padding: 30px 60px;
    padding: 1.875rem 3.75rem;
  }
}

.c-card3__number {
  color: #2C87E4;
  font-family: "Poppins", sans-serif;
  font-size: max(21px, 10px);
  font-size: max(1.3125rem, 10px);
  font-weight: 700;
  line-height: 1;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-card3__number {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    font-size: max(27px, 10px);
    font-size: max(1.6875rem, 10px);
    justify-content: center;
    letter-spacing: 0.05em;
    margin-right: 46px;
    margin-right: 2.875rem;
    text-align: left;
    width: 8.1%;
  }
}

.c-card3__number::after {
  content: "0" counter(number);
  counter-increment: number;
  display: block;
  font-size: max(48px, 10px);
  font-size: max(3rem, 10px);
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .c-card3__number::after {
    font-size: max(72px, 10px);
    font-size: max(4.5rem, 10px);
    font-weight: 600;
  }
}

@media screen and (min-width: 768px) {
  .c-card3__number::before {
    background-color: #000;
    bottom: 50%;
    content: "";
    display: inline-block;
    height: 90px;
    height: 5.625rem;
    position: absolute;
    right: -45px;
    right: -2.8125rem;
    transform: translateY(50%);
    width: 1px;
    width: 0.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .c-card3__body {
    flex: 1;
  }
}

.c-card3__title {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-card3__title {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
    text-align: left;
  }
}

.c-card3__text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .c-card3__text {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    margin-top: 3.3px;
    margin-top: 0.20625rem;
    text-align: left;
  }
}

.c-card4 {
  display: flex;
  flex-direction: column;
  height: 100%;
  row-gap: 15px;
  row-gap: 0.9375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-card4 {
    -moz-column-gap: 2.375rem;
    align-items: center;
         column-gap: 2.375rem;
    flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .c-card4__info {
    flex-shrink: 0;
    width: 26.7%;
  }
}

.c-card4__image {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 150px;
  width: 9.375rem;
}

.c-card4__image img {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: 50%;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.c-card4__name {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-top: 15px;
  margin-top: 0.9375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-card4__name {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    margin-top: 20px;
    margin-top: 1.25rem;
  }
}

.c-card4__text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.09em;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .c-card4__text {
    flex: 1;
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
}

.c-faq {
  background-color: #fff;
  border: 1px solid #2C87E4;
  border: 0.0625rem solid #2C87E4;
  border-radius: 1.25rem;
  cursor: pointer;
  padding: 30px 60px 30px 30px;
  padding: 1.875rem 3.75rem 1.875rem 1.875rem;
  transition: transform 0.4s;
}
@media screen and (min-width: 768px) {
  .c-faq {
    border: 2px solid #2C87E4;
    border: 0.125rem solid #2C87E4;
    border-radius: 0.9375rem;
    padding: 28px 80px 28px 30px;
    padding: 1.75rem 5rem 1.75rem 1.875rem;
  }
}

.c-faq__summary {
  -moz-column-gap: 0.9375rem;
       column-gap: 0.9375rem;
  cursor: pointer;
  display: flex;
  list-style: none;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-faq__summary {
    -moz-column-gap: 1.875rem;
    align-items: center;
         column-gap: 1.875rem;
  }
}

.c-faq__summary::-webkit-details-marker {
  display: none;
}

.c-faq__icon {
  align-items: center;
  border: 2px solid #2C87E4;
  border: 0.125rem solid #2C87E4;
  border-radius: 50%;
  display: inline-flex;
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
  font-size: max(15px, 10px);
  font-size: max(0.9375rem, 10px);
  font-weight: 700;
  height: 30px;
  height: 1.875rem;
  justify-content: center;
  line-height: 1;
  position: relative;
  text-align: center;
  width: 30px;
  width: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-faq__icon {
    border: 3px solid #2C87E4;
    border: 0.1875rem solid #2C87E4;
    font-size: max(30px, 10px);
    font-size: max(1.875rem, 10px);
    font-weight: 400;
    height: 50px;
    height: 3.125rem;
    letter-spacing: 0.05em;
    width: 50px;
    width: 3.125rem;
  }
}

.c-faq__icon--q {
  background-color: #fff;
}

.c-faq__icon--a {
  background-color: #2C87E4;
}

.c-faq__icon--q::before,
.c-faq__icon--a::before {
  display: inline-block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.c-faq__icon--q::before {
  color: #2C87E4;
  content: "Q";
}

.c-faq__icon--a::before {
  color: #fff;
  content: "A";
}

.c-faq__text {
  flex: 1;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .c-faq__text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
}

.c-faq__summary .c-faq__text {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-faq__summary .c-faq__text {
    font-size: max(20px, 10px);
    font-size: max(1.25rem, 10px);
  }
}

.c-faq__arrow {
  -webkit-mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #000;
  display: inline-block;
  height: 9px;
  height: 0.5625rem;
          mask-image: url(../images/common/arrow.svg);
          mask-position: center;
          mask-repeat: no-repeat;
          mask-size: contain;
  position: absolute;
  right: -30px;
  right: -1.875rem;
  top: 11px;
  top: 0.6875rem;
  transform: rotate(180deg);
  transition: transform 0.4s;
  width: 15px;
  width: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-faq__arrow {
    height: 12.33px;
    height: 0.770625rem;
    right: -40px;
    right: -2.5rem;
    top: 20px;
    top: 1.25rem;
    width: 20px;
    width: 1.25rem;
  }
}

.c-faq__item.is-opened .c-faq__arrow {
  transform: rotate(0deg);
}

.c-faq__answer {
  overflow: hidden;
  position: relative;
}

.c-faq__answer-inner {
  -moz-column-gap: 0.9375rem;
       column-gap: 0.9375rem;
  display: flex;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-faq__answer-inner {
    -moz-column-gap: 1.875rem;
    align-items: center;
         column-gap: 1.875rem;
    margin-top: 20px;
    margin-top: 1.25rem;
  }
}

@media (any-hover: hover) {
  .c-faq.is-show:hover {
    transform: scale(1.05) translate3d(0, 0, 0) rotate(0deg);
    transition: transform 0.4s;
  }
}
.c-menu-button {
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 100vmax;
  box-shadow: 0.0625rem 0.0625rem 0.3125rem rgba(0, 0, 0, 0.1);
  height: 34px;
  height: 2.125rem;
  position: relative;
  transition: background-color 0.3s ease-in-out;
  width: 34px;
  width: 2.125rem;
}

.c-menu-button span {
  background-color: #000;
  border-radius: 100vmax;
  display: block;
  height: 2px;
  height: 0.125rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  width: 14px;
  width: 0.875rem;
}

.c-menu-button span:before,
.c-menu-button span::after {
  background-color: #000;
  border-radius: 100vmax;
  content: "";
  display: block;
  height: 2px;
  height: 0.125rem;
  position: absolute;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.c-menu-button span::before {
  transform: translateY(-0.3125rem);
}

.c-menu-button span::after {
  transform: translateY(0.3125rem);
}

/* ドロワーメニュー展開時 */
.c-menu-button[aria-expanded=true] span {
  background-color: transparent;
}

.c-menu-button[aria-expanded=true] span::before {
  transform: translateY(0) rotate(45deg);
}

.c-menu-button[aria-expanded=true] span::after {
  transform: translateY(0) rotate(-45deg);
}

.c-page-top {
  bottom: 20px;
  bottom: 1.25rem;
  cursor: pointer;
  display: inline-block;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 20px;
  right: 1.25rem;
  transition: opacity 0.3s ease-out, pointer-events 0.3s ease-out, transform 0.3s ease-out;
  z-index: 900;
}
@media screen and (min-width: 768px) {
  .c-page-top {
    bottom: 60px;
    bottom: 3.75rem;
    right: 60px;
    right: 3.75rem;
  }
}

.c-page-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.c-page-top__circle {
  align-items: center;
  background-color: #fff;
  border: 1px solid #e1467c;
  border: 0.0625rem solid #e1467c;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  height: 45px;
  height: 2.8125rem;
  justify-content: center;
  row-gap: 5px;
  row-gap: 0.3125rem;
  transition: background-color 0.3s ease-out;
  width: 45px;
  width: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .c-page-top__circle {
    height: 105px;
    height: 6.5625rem;
    width: 105px;
    width: 6.5625rem;
  }
}

.c-page-top__circle::before {
  -webkit-mask-image: url("../images/common/arrow-up.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #e1467c;
  content: "";
  display: inline-block;
  height: 20px;
  height: 1.25rem;
  mask-image: url("../images/common/arrow-up.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: background-color 0.3s ease-out;
  width: 20px;
  width: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-page-top__circle::before {
    height: 45px;
    height: 2.8125rem;
    width: 45px;
    width: 2.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .c-page-top__text {
    color: #e1467c;
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    font-weight: 600;
    line-height: 1;
    text-align: center;
    transition: color 0.3s ease-out;
  }
}

@media (any-hover: hover) {
  .c-page-top:hover {
    transform: scale(1.05);
  }
  .c-page-top:hover .c-page-top__circle {
    background-color: #e1467c;
  }
  .c-page-top:hover .c-page-top__circle::before {
    background-color: #fff;
  }
  .c-page-top:hover .c-page-top__text {
    color: #fff;
  }
}
.c-title {
  text-align: center;
}

.c-title--left {
  text-align: left;
}

.c-title__en {
  color: #e1467c;
  font-family: "Poppins", sans-serif;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-title__en {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
}

.c-title--blue .c-title__en {
  color: #2C87E4;
}

.c-title--black .c-title__en {
  color: #000;
}

.c-title__ja {
  color: #000;
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-title__ja {
    font-size: max(36px, 10px);
    font-size: max(2.25rem, 10px);
    margin-top: 10px;
    margin-top: 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .c-title--lg .c-title__ja {
    font-size: max(45px, 10px);
    font-size: max(2.8125rem, 10px);
  }
}

.c-title--white .c-title__en,
.c-title--white .c-title__ja {
  color: #fff;
}

@keyframes floatAndRotate2 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-10px, -10px) rotate(90deg);
  }
  50% {
    transform: translate(0, 0) rotate(180deg);
  }
  75% {
    transform: translate(10px, -10px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}
.p-about {
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
  padding-top: 90px;
  padding-top: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-about {
    padding-bottom: 80px;
    padding-bottom: 5rem;
    padding-top: 100px;
    padding-top: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-about__inner {
    padding-bottom: 164px;
    padding-bottom: 10.25rem;
    padding-top: 163px;
    padding-top: 10.1875rem;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-about__inner::after {
    animation: floatAndRotate2 10s ease-in-out infinite;
    background: url(../images/common/bg-circle.svg) no-repeat center/contain;
    content: "";
    height: 100%;
    left: -180px;
    left: -11.25rem;
    position: absolute;
    top: 0;
    width: 870px;
    width: 54.375rem;
    z-index: -1;
  }
}

@media screen and (min-width: 768px) {
  .p-about__media {
    position: relative;
  }
}

.p-about__image {
  margin-left: auto;
  margin-right: auto;
  width: 60%;
}
@media screen and (min-width: 768px) {
  .p-about__image {
    left: 60px;
    left: 3.75rem;
    margin-left: 0;
    margin-right: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28.57%;
  }
}

.p-about__image img {
  -o-object-fit: contain;
  aspect-ratio: 360/707;
  height: auto;
     object-fit: contain;
  width: 100%;
}

.p-about__content {
  background-color: #fff;
  border-radius: 1.25rem;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding: 30px;
  padding: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-about__content {
    border-radius: 3.125rem;
    margin-top: 0;
    padding: 70.5px 60px 70.5px 480px;
    padding: 4.40625rem 3.75rem 4.40625rem 30rem;
  }
}

.p-about__title.c-title--left {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about__title.c-title--left {
    text-align: left;
  }
}

.p-about__title .c-title__ja {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-about__title .c-title__ja {
    letter-spacing: 0;
    margin-top: 10px;
    margin-top: 0.625rem;
  }
}

.p-about__text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-top: 26px;
  margin-top: 1.625rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-about__text {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    margin-top: 32px;
    margin-top: 2rem;
  }
}

.p-complete {
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
  padding-top: 160px;
  padding-top: 10rem;
}
@media screen and (min-width: 768px) {
  .p-complete {
    padding-bottom: 150px;
    padding-bottom: 9.375rem;
    padding-top: 250px;
    padding-top: 15.625rem;
  }
}

.p-complete__text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-top: 45px;
  margin-top: 2.8125rem;
  max-width: 650px;
  max-width: 40.625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-complete__text {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 90px;
    margin-top: 5.625rem;
  }
}

.p-complete__button {
  margin-left: auto;
  margin-right: auto;
  margin-top: 45px;
  margin-top: 2.8125rem;
  max-width: 350px;
  max-width: 21.875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-complete__button {
    margin-top: 90px;
    margin-top: 5.625rem;
  }
}

.p-contact {
  background-color: #f2f2f2;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  padding-top: 100px;
  padding-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-bottom: 200px;
    padding-bottom: 12.5rem;
    padding-top: 200px;
    padding-top: 12.5rem;
  }
}

.p-contact__inner.l-inner {
  max-width: 580px;
  max-width: 36.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__inner.l-inner {
    max-width: 1310px;
    max-width: 81.875rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
  }
}

.p-contact__inner {
  display: flex;
  flex-direction: column;
  row-gap: 55px;
  row-gap: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .p-contact__inner {
    -moz-column-gap: 3.75rem;
         column-gap: 3.75rem;
    flex-direction: row;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__content {
    width: 46%;
  }
}

.p-contact__sub-title {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-contact__sub-title {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
    margin-top: 80px;
    margin-top: 5rem;
  }
}

.p-contact__list {
  counter-reset: number;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  margin-top: 1.875rem;
  position: relative;
  row-gap: 30px;
  row-gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__list {
    margin-top: 45px;
    margin-top: 2.8125rem;
    row-gap: 60px;
    row-gap: 3.75rem;
  }
}

.p-contact__list::before {
  background-color: #e1467c;
  content: "";
  height: calc(100% - 2.8125rem);
  left: 15px;
  left: 0.9375rem;
  position: absolute;
  top: 15px;
  top: 0.9375rem;
  width: 2px;
  z-index: 1;
}

.p-contact__item {
  -moz-column-gap: 0.9375rem;
  align-items: center;
       column-gap: 0.9375rem;
  display: flex;
  position: relative;
}

.p-contact__item-number {
  background-color: #e1467c;
  border-radius: 50%;
  flex-shrink: 0;
  height: 30px;
  height: 1.875rem;
  position: relative;
  width: 30px;
  width: 1.875rem;
  z-index: 2;
}

.p-contact__item-number::before {
  color: #fff;
  content: "0" counter(number);
  counter-increment: number;
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  left: 50%;
  letter-spacing: 0.05em;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.p-contact__item-text {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  letter-spacing: 0.1em;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .p-contact__form {
    flex-shrink: 0;
    margin-top: -3px;
    margin-top: -0.1875rem;
    width: 46.98%;
  }
}

.p-drawer {
  background-color: #fff;
  border-radius: 1.25rem 0 0 1.25rem;
  max-width: 100%;
  overflow-x: clip;
  padding: 30px 0 170px;
  padding: 1.875rem 0 10.625rem;
  width: 314.4px;
  width: 19.65rem;
}

.p-drawer__logo {
  height: 100%;
  width: 120px;
  width: 7.5rem;
}

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

.p-drawer__logo-link img {
  -o-object-fit: contain;
  aspect-ratio: 120/40;
  height: auto;
     object-fit: contain;
  width: 100%;
}

.p-drawer__nav-list {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-drawer__nav-item {
  border-bottom: 1px dashed #c4c4c4;
  border-bottom: 0.0625rem dashed #c4c4c4;
}

.p-drawer__nav-item a {
  color: #2C87E4;
  display: block;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  padding-top: 30px;
  padding-top: 1.875rem;
}

.p-drawer__nav-button {
  margin-top: 30px;
  margin-top: 1.875rem;
  width: 175px;
  width: 10.9375rem;
}

.p-faq {
  background-color: #f5f8fa;
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
  padding-top: 90px;
  padding-top: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-faq {
    padding-bottom: 200px;
    padding-bottom: 12.5rem;
    padding-top: 200px;
    padding-top: 12.5rem;
  }
}

.p-faq__list {
  counter-reset: number;
  display: flex;
  flex-direction: column;
  margin-top: 22px;
  margin-top: 1.375rem;
  row-gap: 29px;
  row-gap: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .p-faq__list {
    margin-top: 32px;
    margin-top: 2rem;
    row-gap: 46px;
    row-gap: 2.875rem;
  }
}

.p-features {
  background-color: #fff;
  border-radius: 2.8125rem 2.8125rem 0 0;
  margin-top: -90px;
  margin-top: -5.625rem;
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
  padding-top: 90px;
  padding-top: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-features {
    border-radius: 7.5rem 7.5rem 0 0;
    margin-top: -125px;
    margin-top: -7.8125rem;
    padding-bottom: 190px;
    padding-bottom: 11.875rem;
    padding-top: 199px;
    padding-top: 12.4375rem;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-features::before {
    background: url(../images/lp/bg-text01.svg) no-repeat center/contain;
    content: "";
    display: block;
    height: 1350px;
    height: 84.375rem;
    position: absolute;
    right: 0;
    top: 220px;
    top: 13.75rem;
    width: 230px;
    width: 14.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-features__inner {
    position: relative;
  }
}

.p-features__list {
  counter-reset: number;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-top: 1.25rem;
  row-gap: 38px;
  row-gap: 2.375rem;
}
@media screen and (min-width: 768px) {
  .p-features__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 60px;
    gap: 3.75rem;
    justify-content: center;
    margin-top: 110px;
    margin-top: 6.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-features__item {
    display: flex;
    width: calc((100% - 7.5rem) / 3);
  }
}

.p-flow {
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
  padding-top: 88px;
  padding-top: 5.5rem;
}
@media screen and (min-width: 768px) {
  .p-flow {
    padding-bottom: 200px;
    padding-bottom: 12.5rem;
    padding-top: 200px;
    padding-top: 12.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-flow__title .c-title__ja {
    margin-top: 8px;
    margin-top: 0.5rem;
  }
}

.p-flow__steps {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-flow__steps {
    margin-top: 80px;
    margin-top: 5rem;
  }
}

.p-footer {
  background-image: linear-gradient(90deg, rgb(232, 113, 154), rgb(142, 194, 229));
  color: #fff;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  padding-top: 30px;
  padding-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-bottom: 45px;
    padding-bottom: 2.8125rem;
    padding-top: 60px;
    padding-top: 3.75rem;
  }
}

.p-footer__logo {
  width: 180px;
  width: 11.25rem;
}

.p-footer__logo img {
  -o-object-fit: contain;
  aspect-ratio: 180/60;
  height: auto;
     object-fit: contain;
  width: 100%;
}

.p-footer__link {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  line-height: 1;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-footer__link {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    margin-top: 45px;
    margin-top: 2.8125rem;
  }
}

.p-footer__link a {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.p-footer__info {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-footer__info {
    margin-top: 15px;
    margin-top: 0.9375rem;
  }
}

.p-footer__info p {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-footer__info p {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
}

.p-footer__info address {
  font-style: normal;
}

.p-footer__pdf {
  margin-left: -14px;
  margin-left: -0.875rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__pdf {
    margin-left: -16px;
    margin-left: -1rem;
    margin-top: 25px;
    margin-top: 1.5625rem;
  }
}

.p-footer__pdf a {
  -webkit-text-decoration: underline;
  display: inline-block;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  line-height: 1;
  padding: 8px 14px;
  padding: 0.5rem 0.875rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-footer__pdf a {
    font-size: max(15px, 10px);
    font-size: max(0.9375rem, 10px);
    padding: 16px;
    padding: 1rem;
  }
}

.p-footer__copyright {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    margin-top: 30px;
    margin-top: 1.875rem;
  }
}

.p-footer__copyright small {
  font-family: "Inter", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright small {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
  }
}

.p-form__list {
  display: flex;
  flex-direction: column;
  row-gap: 27.5px;
  row-gap: 1.71875rem;
}
@media screen and (min-width: 768px) {
  .p-form__list {
    row-gap: 45px;
    row-gap: 2.8125rem;
  }
}

.p-form__label-text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-form__label-text {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
}

.p-form__label-text--lh {
  line-height: 1.5;
}

.p-form__label-text span {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-form__label-text span {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    line-height: 1.5;
  }
}

.p-form__textarea,
.p-form__input {
  margin-top: 10px;
  margin-top: 0.625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-form__textarea,
  .p-form__input {
    margin-top: 20px;
    margin-top: 1.25rem;
  }
}

.p-form__input {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-form__input {
    margin-top: 14px;
    margin-top: 0.875rem;
  }
}

.p-form__input::after {
  color: #e1467c;
  content: "必須";
  display: inline-block;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  line-height: 1;
  position: absolute;
  right: 15px;
  right: 0.9375rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-form__input::after {
    letter-spacing: 0.05em;
  }
}

.p-form__input input {
  padding: 12.2px 55px 12.2px 15px;
  padding: 0.7625rem 3.4375rem 0.7625rem 0.9375rem;
}

.p-form__textarea textarea {
  height: 200px;
  height: 12.5rem;
  padding: 15px;
  padding: 0.9375rem;
}

.p-form__textarea textarea,
.p-form__input input {
  background-color: #fff;
  border: 1px solid #444;
  border-radius: 0.625rem;
  width: 100%;
}

.p-form__input input:focus,
.p-form__textarea textarea:focus {
  border: 2px solid #e1467c;
}

.p-form__agree {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-form__agree {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    font-weight: 400;
    line-height: 2;
    margin-top: 40px;
    margin-top: 2.5rem;
  }
}

.p-form__agree span {
  display: block;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-form__agree span {
    font-size: max(14px, 10px);
    font-size: max(0.875rem, 10px);
    letter-spacing: 0.1em;
    line-height: 2.57;
  }
}

.p-form__agree a {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.p-form__submit {
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  margin-top: 1.875rem;
  max-width: 100%;
  width: 303px;
  width: 18.9375rem;
}
@media screen and (min-width: 768px) {
  .p-form__submit {
    margin-top: 45px;
    margin-top: 2.8125rem;
    width: 263px;
    width: 16.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-form__submit .c-button {
    padding: 25.2px 16px;
    padding: 1.575rem 1rem;
  }
}

.p-header {
  width: 100%;
}

.p-header__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
  max-width: 36.25rem;
  padding-left: 15px;
  padding-left: 0.9375rem;
  padding-right: 15px;
  padding-right: 0.9375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    max-width: 1440px;
    max-width: 90rem;
    padding-left: 45px;
    padding-left: 2.8125rem;
    padding-right: 45px;
    padding-right: 2.8125rem;
  }
}

.p-header__container {
  align-items: center;
  background-color: #fff;
  border-radius: 100vmax;
  box-shadow: 0.0625rem 0.0625rem 0.3125rem rgba(0, 0, 0, 0.1);
  display: flex;
  height: 54px;
  height: 3.375rem;
  justify-content: space-between;
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-header__container {
    box-shadow: 0.3125rem 0.3125rem 3.125rem rgba(0, 0, 0, 0.1);
    height: 87px;
    height: 5.4375rem;
    padding: 0 25px;
    padding: 0 1.5625rem;
  }
}

.p-header__logo {
  align-items: center;
  display: flex;
  height: 100%;
  transition: all 0.3s ease-in-out;
  width: 80px;
  width: 5rem;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 200px;
    width: 12.5rem;
  }
}

.p-header__logo-link {
  display: block;
  padding-top: 4px;
  padding-top: 0.25rem;
  width: 100%;
}

.p-header__logo-link img {
  -o-object-fit: contain;
  aspect-ratio: 80/27;
  height: auto;
     object-fit: contain;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-header__logo-link img {
    aspect-ratio: 200/67;
  }
}

.p-header__sp-fixed {
  -moz-column-gap: 0.625rem;
  align-items: center;
       column-gap: 0.625rem;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-header__sp-fixed {
    display: none;
  }
}

.p-header__nav-button {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
  width: 119px;
  width: 7.4375rem;
}

.p-header__nav-button .c-button--spSm {
  padding: 4.2px 16px;
  padding: 0.2625rem 1rem;
}

.p-header__menu-button {
  flex-shrink: 0;
  margin-left: auto;
  transition: all 0.3s ease-in-out;
  z-index: 101;
}
@media screen and (min-width: 768px) {
  .p-header__menu-button {
    display: none;
  }
}

.p-header__pc-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__pc-nav {
    align-items: center;
    display: flex;
    height: inherit;
    margin-left: auto;
  }
}

.p-header__pc-nav-list {
  display: flex;
  height: inherit;
}

.p-header__pc-nav-item {
  height: inherit;
}

.p-header__pc-nav-item a {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  height: inherit;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 0 15px;
  padding: 0 0.9375rem;
  transition: color 0.3s ease-in-out;
  white-space: nowrap;
}

.p-header__pc-nav-button {
  align-items: center;
  display: flex;
  margin-left: 15px;
  margin-left: 0.9375rem;
  max-width: 100%;
  width: 180px;
  width: 11.25rem;
}

.p-header__drawer {
  bottom: 0;
  left: 0;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: all 0.3s ease-out;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .p-header__drawer {
    left: auto;
    max-width: 46.6666666667%;
    width: 50%;
  }
}

.p-header__drawer[aria-hidden=false] {
  transform: translateX(0);
}

@media (any-hover: hover) {
  .p-header__pc-nav-item a:hover {
    color: #e1467c;
    opacity: 1;
  }
}
/* テキストループ */
.p-loop {
  overflow: hidden;
  padding-bottom: 95px;
  padding-bottom: 5.9375rem;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-loop {
    padding-bottom: 180px;
    padding-bottom: 11.25rem;
  }
}

.p-loop__track {
  animation: scrollLoop linear infinite;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}

.p-loop__list {
  display: flex;
  white-space: nowrap;
}

.p-loop__item {
  color: #F5F5F5;
  flex-shrink: 0;
  font-family: "Poppins", sans-serif;
  font-size: max(60px, 10px);
  font-size: max(3.75rem, 10px);
  font-weight: 700;
  line-height: 1;
  padding-right: 32px;
  padding-right: 2rem;
}
@media screen and (min-width: 768px) {
  .p-loop__item {
    font-size: max(240px, 10px);
    font-size: max(15rem, 10px);
  }
}

@keyframes scrollLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.p-merit {
  background-color: #d6eefd;
  border-radius: 0 0 2.8125rem 2.8125rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  padding-top: 90px;
  padding-top: 5.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-merit {
    border-radius: 0 0 7.5rem 7.5rem;
    padding-bottom: 200px;
    padding-bottom: 12.5rem;
    padding-top: 200px;
    padding-top: 12.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-merit::before {
    background: url(../images/lp/bg-text02.svg) no-repeat center/contain;
    content: "";
    display: block;
    height: 940px;
    height: 58.75rem;
    left: -10px;
    left: -0.625rem;
    position: absolute;
    top: 200px;
    top: 12.5rem;
    width: 240px;
    width: 15rem;
  }
}

.p-merit__list {
  counter-reset: number;
  display: flex;
  flex-direction: column;
  margin-top: 25px;
  margin-top: 1.5625rem;
  row-gap: 30px;
  row-gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-merit__list {
    margin-top: 75px;
    margin-top: 4.6875rem;
  }
}

.p-merit__operation {
  margin-top: 58px;
  margin-top: 3.625rem;
}
@media screen and (min-width: 768px) {
  .p-merit__operation {
    margin-top: 72px;
    margin-top: 4.5rem;
  }
}

.p-merit__operation-title {
  -moz-column-gap: 2.25rem;
  align-items: center;
       column-gap: 2.25rem;
  display: flex;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-merit__operation-title {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
  }
}

.p-merit__operation-title::before,
.p-merit__operation-title::after {
  background: url(../images/common/deco-border01.svg) repeat-x left center/auto 100%;
  content: "";
  display: inline-block;
  height: 1px;
  height: 0.0625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-merit__operation-title::before,
  .p-merit__operation-title::after {
    background: url(../images/common/deco-border03.svg) repeat-x left center/auto 100%;
  }
}

.p-merit__operation-text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.09em;
  line-height: 1.8;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  padding-top: 30px;
  padding-top: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-merit__operation-text {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    letter-spacing: 0.1em;
  }
}

.p-merit__operation-text span {
  color: #2C87E4;
}

.p-merit__operation-text::after {
  background: url(../images/common/deco-border02.svg) repeat-x left center/auto 100%;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  height: 0.0625rem;
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-merit__operation-text::after {
    background: url(../images/common/deco-border04.svg) repeat-x left center/auto 100%;
  }
}

.p-mv {
  overflow: hidden;
  padding-top: 120px;
  padding-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-mv {
    padding-top: 210px;
    padding-top: 13.125rem;
    position: relative;
  }
}

.p-mv::before {
  animation: floatAndRotateSp 25s ease-in-out infinite;
  background: url(../images/common/bg-circle.svg) no-repeat center/contain;
  content: "";
  height: 310px;
  height: 19.375rem;
  left: -80px;
  left: -5rem;
  position: absolute;
  top: -160px;
  top: -10rem;
  width: 310px;
  width: 19.375rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-mv::before {
    animation: floatAndRotate 20s ease-in-out infinite;
    background: url(../images/common/bg-circle2.svg) no-repeat center/contain;
    height: 550px;
    height: 34.375rem;
    left: auto;
    left: initial;
    right: calc(50% + 19.375rem);
    top: -260px;
    top: -16.25rem;
    width: 550px;
    width: 34.375rem;
  }
}

.p-mv__container {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-mv__container {
    flex-direction: row;
    margin-right: calc(50% - 50vw);
    margin-top: 25px;
    margin-top: 1.5625rem;
  }
}

.p-mv__content {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-mv__content {
    display: block;
    flex-shrink: 0;
    max-width: 100%;
    width: 760px;
    width: 47.5rem;
  }
}

.p-mv__label {
  background-color: #2C87E4;
  border-radius: 0 0.3125rem 0.3125rem 0;
  color: #fff;
  display: inline-block;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-left: calc(50% - 50vw);
  padding: 10px 15px 10px;
  padding: 0.625rem 0.9375rem 0.625rem;
  padding-left: calc(50vw - 50% - 9px);
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-mv__label {
    border-radius: 0 0.625rem 0.625rem 0;
    font-size: max(36px, 10px);
    font-size: max(2.25rem, 10px);
    padding: 25px 30px 25px;
    padding: 1.5625rem 1.875rem 1.5625rem;
    padding-left: calc(50vw - 50%);
  }
}

.p-mv__title {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 1.8;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  order: 1;
  padding-left: calc(50vw - 50% - 9px);
  padding-right: calc(50vw - 50% - 9px);
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-mv__title {
    font-size: max(36px, 10px);
    font-size: max(2.25rem, 10px);
    line-height: 1.5;
    margin-left: 0;
    margin-right: 0;
    order: initial;
    padding-left: 0;
    padding-right: 0;
  }
}

.p-mv__title rt {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-mv__title rt {
    display: ruby-text;
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    letter-spacing: 0.05em;
    line-height: 1;
  }
}

.p-mv__title span {
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
}
@media screen and (min-width: 768px) {
  .p-mv__title span {
    font-size: max(48px, 10px);
    font-size: max(3rem, 10px);
  }
}

.p-mv__title strong {
  font-size: max(21px, 10px);
  font-size: max(1.3125rem, 10px);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-mv__title strong {
    font-size: max(42px, 10px);
    font-size: max(2.625rem, 10px);
  }
}

.p-mv__title small {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
}
@media screen and (min-width: 768px) {
  .p-mv__title small {
    font-size: max(36px, 10px);
    font-size: max(2.25rem, 10px);
  }
}

.p-mv__text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.1em;
  line-height: 1.81;
  margin-top: 31px;
  margin-top: 1.9375rem;
  order: 3;
}
@media screen and (min-width: 768px) {
  .p-mv__text {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 2;
    margin-top: 30px;
    margin-top: 1.875rem;
    order: initial;
  }
}

.p-mv__image {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  order: 2;
  padding-bottom: 48px;
  padding-bottom: 3rem;
  padding-left: calc(50vw - 50% - 10px);
  padding-right: calc(50vw - 50% - 10px);
  padding-top: 54px;
  padding-top: 3.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mv__image {
    height: 870px;
    height: 54.375rem;
    margin: 0;
    margin-left: -25px;
    margin-left: -1.5625rem;
    margin-top: -220px;
    margin-top: -13.75rem;
    order: initial;
    padding: 0;
    padding-bottom: 85px;
    padding-bottom: 5.3125rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-top: 125px;
    padding-top: 7.8125rem;
  }
}

.p-mv__image img {
  -o-object-fit: contain;
  aspect-ratio: 1029/613;
  height: auto;
     object-fit: contain;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-mv__image img {
    -o-object-fit: cover;
    -o-object-position: left center;
    height: 100%;
       object-fit: cover;
       object-position: left center;
  }
}

@keyframes floatAndRotateSp {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -10px) rotate(90deg);
  }
  50% {
    transform: translate(0, 0) rotate(180deg);
  }
  75% {
    transform: translate(-10px, -10px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}
@keyframes floatAndRotate {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -20px) rotate(90deg);
  }
  50% {
    transform: translate(0, 0) rotate(180deg);
  }
  75% {
    transform: translate(-20px, -20px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}
.p-mv__image::after {
  animation: floatAndRotateSp 15s ease-in-out infinite;
  background: url(../images/common/bg-circle.svg) no-repeat center/contain;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-mv__image::after {
    animation: floatAndRotate 10s ease-in-out infinite;
    height: 870px;
    height: 54.375rem;
    width: 870px;
    width: 54.375rem;
  }
}

.p-mv__button {
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  margin-top: 1.875rem;
  max-width: 100%;
  order: 4;
  width: 219px;
  width: 13.6875rem;
}
@media screen and (min-width: 768px) {
  .p-mv__button {
    margin-left: 0;
    margin-right: 0;
    order: initial;
    width: 183px;
    width: 11.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-mv__button .c-button span {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
  }
}

.p-needed {
  padding-bottom: 180px;
  padding-bottom: 11.25rem;
  padding-top: 90px;
  padding-top: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-needed {
    padding-bottom: 320px;
    padding-bottom: 20rem;
    padding-top: 170px;
    padding-top: 10.625rem;
  }
}

.p-needed__inner {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 45px;
  row-gap: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-needed__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .p-needed__content {
    margin-top: 60px;
    margin-top: 3.75rem;
    padding-left: 90px;
    padding-left: 5.625rem;
    width: 57.3%;
  }
}

.p-needed__title .c-title__ja {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-needed__title .c-title__ja {
    letter-spacing: 0.05em;
    margin-top: 10px;
    margin-top: 0.625rem;
  }
}

.p-needed__subtitle {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.65;
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-needed__subtitle {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
    margin-top: 30px;
    margin-top: 1.875rem;
  }
}

.p-needed__subtitle span {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  text-decoration-color: #E8719A;
  text-decoration-thickness: 5px;
  text-decoration-thickness: 0.3125rem;
  text-underline-offset: -4px;
  text-underline-offset: -0.25rem;
}

.p-needed__text {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.09em;
  line-height: 1.81;
  margin-top: 45px;
  margin-top: 2.8125rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-needed__text {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    letter-spacing: 0.1em;
    line-height: 1.79;
    margin-top: 90px;
    margin-top: 5.625rem;
    text-align: left;
    white-space: nowrap;
  }
}

.p-needed__text span {
  -webkit-text-decoration: underline;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #E8719A;
  text-decoration-thickness: 5px;
  text-decoration-thickness: 0.3125rem;
  text-underline-offset: -1px;
  text-underline-offset: -0.0625rem;
}
@media screen and (min-width: 768px) {
  .p-needed__text span {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
  }
}

@media screen and (min-width: 768px) {
  .p-needed__image-wrap {
    width: 42.89%;
  }
}

@media screen and (min-width: 768px) {
  .p-needed__image + .p-needed__image {
    margin-top: 90px;
    margin-top: 5.625rem;
  }
}

.p-needed__image img {
  -o-object-fit: cover;
  border-radius: 0.9375rem;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.p-needed__image--01 img {
  aspect-ratio: 333/222;
}
@media screen and (min-width: 768px) {
  .p-needed__image--01 img {
    aspect-ratio: 500/667;
  }
}

@media screen and (min-width: 768px) {
  .p-needed__image--01 {
    max-width: 100%;
    width: 500.25px;
    width: 31.265625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-needed__image--02 {
    margin-left: auto;
    width: 400.5px;
    width: 25.03125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-needed__image--02 img {
    aspect-ratio: 400/267;
  }
}

.p-price {
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
  padding-top: 90px;
  padding-top: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-price {
    padding-bottom: 200px;
    padding-bottom: 12.5rem;
    padding-top: 170px;
    padding-top: 10.625rem;
  }
}

.p-price__inner.l-inner {
  max-width: 580px;
  max-width: 36.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-price__inner.l-inner {
    max-width: 1310px;
    max-width: 81.875rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
  }
}

.p-price__head {
  background-color: #e1467c;
  border-radius: 1.25rem 1.25rem 0 0;
  padding: 20px 20px 17px;
  padding: 1.25rem 1.25rem 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-price__head {
    border-radius: 0.9375rem 0.9375rem 0 0;
    padding: 40px 45px;
    padding: 2.5rem 2.8125rem;
  }
}

.p-price__body {
  background-color: #fff;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 45px 30px;
  padding: 2.8125rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-price__body {
    border-radius: 0 0 0.9375rem 0.9375rem;
    padding: 58px 90px;
    padding: 3.625rem 5.625rem;
  }
}

.p-price__amount {
  -moz-column-gap: 0.3125rem;
  align-items: flex-end;
  color: #e1467c;
       column-gap: 0.3125rem;
  display: flex;
  font-family: "Inter", sans-serif;
  font-size: max(42px, 10px);
  font-size: max(2.625rem, 10px);
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-price__amount {
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
    font-size: max(72px, 10px);
    font-size: max(4.5rem, 10px);
    letter-spacing: 0.03em;
  }
}

.p-price__amount span,
.p-price__amount small {
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-price__amount span,
  .p-price__amount small {
    font-size: max(32px, 10px);
    font-size: max(2rem, 10px);
  }
}

.p-price__amount small {
  color: #e1467c;
  line-height: 1.8;
}

.p-price__text {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-price__text {
    font-size: max(32px, 10px);
    font-size: max(2rem, 10px);
    margin-top: 24px;
    margin-top: 1.5rem;
  }
}

.p-price__list {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-top: 1.25rem;
  row-gap: 15px;
  row-gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-price__list {
    margin-top: 34px;
    margin-top: 2.125rem;
    row-gap: 10px;
    row-gap: 0.625rem;
  }
}

.p-price__item {
  -moz-column-gap: 0.9375rem;
       column-gap: 0.9375rem;
  display: flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-price__item {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    font-weight: 700;
  }
}

.p-price__item::before {
  background: url(../images/common/checkbox.svg) no-repeat center/contain;
  content: "";
  display: inline-block;
  flex-shrink: 0;
  height: 16px;
  height: 1rem;
  margin-top: 8px;
  margin-top: 0.5rem;
  width: 16px;
  width: 1rem;
}
@media screen and (min-width: 768px) {
  .p-price__item::before {
    height: 22.77px;
    height: 1.423125rem;
    margin-top: 6px;
    margin-top: 0.375rem;
    width: 22.77px;
    width: 1.423125rem;
  }
}

.p-price__annotation {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-price__annotation {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    margin-top: 10px;
    margin-top: 0.625rem;
  }
}

.p-profile {
  display: none;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-profile.u-pc {
    align-items: flex-start;
    display: none;
    grid-template-columns: 37% 1fr;
  }
}
@media screen and (min-width: 768px) {
  .p-profile.u-sp {
    display: none !important;
  }
}

.p-profile__body {
  background-color: #2C87E4;
  color: #fff;
  padding: 20px;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-profile__body {
    align-content: center;
    display: grid;
    flex: 1;
    height: 100%;
    justify-content: center;
    padding: 73px 45px;
    padding: 4.5625rem 2.8125rem;
    place-content: center;
  }
}

.p-profile__image {
  height: 100%;
  width: 400px;
  width: 25rem;
}

.p-profile__image img {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-profile__head {
    -moz-column-gap: 0.9375rem;
    align-items: center;
         column-gap: 0.9375rem;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .p-profile__role {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
  }
}

@media screen and (min-width: 768px) {
  .p-profile__name {
    font-size: max(32px, 10px);
    font-size: max(2rem, 10px);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
  }
}

.p-profile__desc {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-profile__desc {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    margin-top: 30px;
    margin-top: 1.875rem;
  }
}

.p-steps {
  counter-reset: number;
}

.p-steps__item {
  display: flex;
  flex-direction: column;
  height: 341px;
  height: 21.3125rem;
  justify-content: center;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
  padding-top: 30px;
  padding-top: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-steps__item {
    -moz-column-gap: 2.8125rem;
    align-items: center;
         column-gap: 2.8125rem;
    flex-direction: row;
    height: 250px;
    height: 15.625rem;
    justify-content: space-between;
    padding-bottom: 45px;
    padding-bottom: 2.8125rem;
    padding-left: 45px;
    padding-left: 2.8125rem;
    padding-right: 45px;
    padding-right: 2.8125rem;
    padding-top: 40px;
    padding-top: 2.5rem;
  }
}

.p-steps__item::after {
  background-color: #fff;
  bottom: -18px;
  bottom: -1.125rem;
  content: "";
  flex-shrink: 0;
  height: 36px;
  height: 2.25rem;
  left: 45%;
  position: absolute;
  transform: translateX(-50%);
  transform: rotate(45deg);
  width: 36px;
  width: 2.25rem;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-steps__item::after {
    left: 49%;
  }
}

.p-steps__item:first-child {
  background-color: #fff;
  border-radius: 1.25rem 1.25rem 0 0;
  padding-top: 28px;
  padding-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-steps__item:first-child {
    border-radius: 0.9375rem 0.9375rem 0 0;
    padding-top: 40px;
    padding-top: 2.5rem;
  }
}

.p-steps__item:nth-child(2) {
  background-color: #FDF6F8;
  padding-top: 12px;
  padding-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-steps__item:nth-child(2) {
    padding-top: 40px;
    padding-top: 2.5rem;
  }
}
.p-steps__item:nth-child(2)::after {
  background-color: #FDF6F8;
}

.p-steps__item:nth-child(3) {
  background-color: #FAE0E9;
  padding-top: 45px;
  padding-top: 2.8125rem;
}
.p-steps__item:nth-child(3)::after {
  background-color: #FAE0E9;
  padding-top: 40px;
  padding-top: 2.5rem;
}

.p-steps__item:nth-child(4) {
  background-color: #F6CAD9;
  padding-top: 45px;
  padding-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-steps__item:nth-child(4) {
    padding-top: 40px;
    padding-top: 2.5rem;
  }
}
.p-steps__item:nth-child(4)::after {
  background-color: #F6CAD9;
}

.p-steps__item:last-child {
  background-color: #F2B4CA;
  border-radius: 0 0 1.25rem 1.25rem;
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-steps__item:last-child {
    border-radius: 0 0 0.9375rem 0.9375rem;
    padding-top: 45px;
    padding-top: 2.8125rem;
  }
}
.p-steps__item:last-child::after {
  content: none;
}

.p-steps__head {
  -moz-column-gap: 1.875rem;
  align-items: center;
       column-gap: 1.875rem;
  display: flex;
  margin-left: 12px;
  margin-left: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-steps__head {
    -moz-column-gap: 2.8125rem;
         column-gap: 2.8125rem;
    margin-left: 0;
    width: 57.5%;
  }
}

.p-steps__item:first-child .p-steps__head {
  -moz-column-gap: 2.1875rem;
       column-gap: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-steps__item:first-child .p-steps__head {
    -moz-column-gap: 2.8125rem;
         column-gap: 2.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-steps__image {
    width: 122.83px;
    width: 7.676875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-steps__image img {
    -o-object-fit: contain;
    aspect-ratio: 1/1;
    height: auto;
       object-fit: contain;
    width: 100%;
  }
}

.p-steps__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-steps__title {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
  }
}

.p-steps__number {
  color: #DD306D;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-steps__number {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
  }
}

.p-steps__number::after {
  content: "0" counter(number);
  counter-increment: number;
  display: block;
  font-size: max(36px, 10px);
  font-size: max(2.25rem, 10px);
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-steps__number::after {
    font-size: max(52px, 10px);
    font-size: max(3.25rem, 10px);
  }
}

.p-steps__text {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-steps__text {
    flex: 1;
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    margin-top: 0;
    text-align: left;
  }
}

.p-steps__text span {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
}

@media screen and (min-width: 768px) {
  .p-supporter {
    padding-top: 80px;
    padding-top: 5rem;
  }
}

.p-supporter__content {
  background-color: #fff;
  border-radius: 2.5rem;
  padding: 60px 0 30px;
  padding: 3.75rem 0 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-supporter__content {
    border-radius: 6.25rem;
    padding: 120px 90px 90px;
    padding: 7.5rem 5.625rem 5.625rem;
  }
}

.p-supporter__container {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .p-supporter__container {
    margin-bottom: 60px;
    margin-bottom: 3.75rem;
    margin-top: 105px;
    margin-top: 6.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-supporter__staff-list {
    border-bottom: 1.5px solid #2C87E4;
    border-bottom: 0.09375rem solid #2C87E4;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 12.5rem 12.5rem;
  }
}

.p-supporter__item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-supporter__item {
    border-bottom: 1.5px solid #2C87E4;
    border-bottom: 0.09375rem solid #2C87E4;
  }
}

.p-supporter__item:first-child {
  border-top: 1px solid #2C87E4;
  border-top: 0.0625rem solid #2C87E4;
}
@media screen and (min-width: 768px) {
  .p-supporter__item:first-child {
    border-top: 1.5px solid #2C87E4;
    border-top: 0.09375rem solid #2C87E4;
  }
}

@media screen and (min-width: 768px) {
  .p-supporter__item:nth-child(2) {
    border-top: 1.5px solid #2C87E4;
    border-top: 0.09375rem solid #2C87E4;
  }
}

.p-supporter__video {
  aspect-ratio: 293/165;
  border-radius: 0.9375rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  margin-top: 1.875rem;
  position: relative;
  width: 88.63%;
}
@media screen and (min-width: 768px) {
  .p-supporter__video {
    aspect-ratio: 1080/608;
    margin-top: 90px;
    margin-top: 5.625rem;
    width: 100%;
  }
}

.p-supporter__video video {
  -o-object-fit: contain;
  aspect-ratio: 293/165;
  border-radius: 1.25rem;
  height: auto;
  left: 50%;
     object-fit: contain;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-supporter__video video {
    aspect-ratio: 1080/608;
    border-radius: 0.9375rem;
  }
}

.p-supporter__video img {
  -o-object-fit: contain;
  aspect-ratio: 293/165;
  border-radius: 1.25rem;
  height: auto;
  left: 50%;
     object-fit: contain;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-supporter__video img {
    aspect-ratio: 1080/608;
    border-radius: 0.9375rem;
  }
}

.hidden {
  display: none;
}

.p-voice {
  margin-top: -5px;
  margin-top: -0.3125rem;
  position: relative;
}

.p-voice__bg {
  background-color: #fff;
  clip-path: ellipse(380% 50% at 50% 50%);
  padding-bottom: 97px;
  padding-bottom: 6.0625rem;
  padding-top: 92px;
  padding-top: 5.75rem;
}
@media screen and (min-width: 768px) {
  .p-voice__bg {
    clip-path: ellipse(98% 50% at 50% 50%);
    padding-bottom: 248px;
    padding-bottom: 15.5rem;
    padding-top: 166px;
    padding-top: 10.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-voice::after {
    background-color: #fff;
    border-radius: 0.3125rem;
    bottom: 0;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    content: "";
    display: inline-block;
    height: 150px;
    height: 9.375rem;
    position: absolute;
    right: 6%;
    width: 150px;
    width: 9.375rem;
    z-index: 10;
  }
}

.p-voice__content {
  grid-gap: 90px;
  display: grid;
  gap: 90px;
  gap: 5.625rem;
  grid-template-columns: 1fr;
  margin-top: 55px;
  margin-top: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .p-voice__content {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 80px;
    margin-top: 5rem;
  }
}

.p-voice__block-title {
  background-color: #2C87E4;
  border-radius: 100vmax;
  color: #fff;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 15px;
  padding: 0.9375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-voice__block-title {
    font-size: max(24px, 10px);
    font-size: max(1.5rem, 10px);
    padding: 25.5px 20px;
    padding: 1.59375rem 1.25rem;
  }
}

.p-voice__block-title--pink {
  background-color: #e1467c;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-voice__block-title--pink {
    letter-spacing: 0.1em;
  }
}

.p-voice__list {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  margin-top: 1.875rem;
  row-gap: 30px;
  row-gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-voice__list {
    margin-top: 60px;
    margin-top: 3.75rem;
    row-gap: 60px;
    row-gap: 3.75rem;
  }
}

.js-fadein {
  opacity: 0;
  transform: translate3d(0, 80px, 0);
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out, transform 0.8s ease-in-out;
  visibility: hidden;
}
.js-fadein.is-show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  visibility: visible;
}

.js-fadein--delay1 {
  transition-delay: 0.2s;
}

.js-fadein--delay2 {
  transition-delay: 0.4s;
}

.js-fadein--delay3 {
  transition-delay: 0.6s;
}

.js-fadein--delay4 {
  transition-delay: 0.8s;
}

.js-fadein--delay5 {
  transition-delay: 1s;
}

.js-fadein--delay6 {
  transition-delay: 1.2s;
}

.js-fadein--delay7 {
  transition-delay: 1.4s;
}

.js-fadein--delay8 {
  transition-delay: 1.6s;
}

.js-fadein--delay9 {
  transition-delay: 1.8s;
}

.js-fadein--delay10 {
  transition-delay: 2s;
}

.u-bg-gradient1 {
  background-image: linear-gradient(180deg, rgba(142, 194, 229, 0), rgb(142, 194, 229));
  height: 100%;
  width: 100%;
}

.u-bg-gradient2 {
  background-image: linear-gradient(180deg, rgba(142, 194, 229, 0.1), rgb(142, 194, 229));
  height: 100%;
  margin-top: -30px;
  margin-top: -1.875rem;
  padding-top: 30px;
  padding-top: 1.875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .u-bg-gradient2 {
    background-image: linear-gradient(180deg, rgb(255, 255, 255), rgb(142, 194, 229));
    margin-top: 0;
    padding-top: 0;
  }
}

.u-blue {
  color: #2C87E4;
}

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

.u-pink {
  color: #e1467c;
}

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