@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  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]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* 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;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1140px) {
  html {
    font-size: 1.4035087719vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  color: #00205b;
}

main {
  flex: 1;
}

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

a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-title {
  opacity: 0;
}

.p-title.is-active {
  animation: fadeIn 0.5s ease-out forwards;
}

.p-problem__item,
.p-problem__description-box {
  opacity: 0;
}

.p-problem__item.is-active,
.p-problem__description-box.is-active {
  animation: fadeIn 0.5s ease-out forwards;
}

.p-reason__intro,
.p-reason__card {
  opacity: 0;
}

.p-reason__intro.is-active,
.p-reason__card.is-active {
  animation: fadeIn 0.5s ease-out forwards;
}

.p-voice__intro,
.p-voice__card {
  opacity: 0;
}

.p-voice__intro.is-active,
.p-voice__card.is-active {
  animation: fadeIn 0.5s ease-out forwards;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(var(--x));
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.p-service__item {
  opacity: 0;
  --x: 100px;
}

.p-service__item:nth-of-type(even) {
  --x: -100px;
}

.p-service__item.is-active {
  animation: slideIn 0.5s ease-out forwards;
}

.p-service__attention {
  opacity: 0;
}

.p-service__attention.is-active {
  animation: fadeIn 0.5s ease-out forwards;
}

.p-flow__item,
.p-flow__attention,
.p-flow-caution__heading,
.p-flow-caution__description {
  opacity: 0;
}

.p-flow__item.is-active,
.p-flow__attention.is-active,
.p-flow-caution__heading.is-active,
.p-flow-caution__description.is-active {
  animation: fadeIn 0.5s ease-out forwards;
}

@keyframes bubble1 {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(0) rotate(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-0.375rem) translateY(-1.5625rem) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: translateX(0.375rem) translateY(-3.125rem) rotate(360deg);
  }
}
@keyframes bubble2 {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(0) rotate(0);
  }
  50% {
    opacity: 1;
    transform: translateX(0.375rem) translateY(-1.5625rem) rotate(-180deg);
  }
  100% {
    opacity: 0;
    transform: translateX(-0.375rem) translateY(-3.125rem) rotate(-360deg);
  }
}
.p-plan__bubbles img:nth-child(1),
.p-plan__sub-bubbles img:nth-child(2) {
  animation: bubble1 3s linear infinite;
}

.p-plan__bubbles img:nth-child(2),
.p-plan__sub-bubbles img:nth-child(3) {
  animation: bubble2 3s linear 1.2s infinite;
}

.p-plan__bubbles img:nth-child(3),
.p-plan__sub-bubbles img:nth-child(4) {
  animation: bubble1 5s linear 0.6s infinite;
}

.p-plan__bubbles img:nth-child(4),
.p-plan__sub-bubbles img:nth-child(5) {
  animation: bubble2 5s linear 0.4s infinite;
}

.p-plan__bubbles img:nth-child(5),
.p-plan__sub-bubbles img:nth-child(6) {
  animation: bubble1 3s linear 1s infinite;
}

.p-plan__bubbles img:nth-child(6),
.p-plan__sub-bubbles img:nth-child(1) {
  animation: bubble2 4s linear 0.8s infinite;
}

.p-plan__intro,
.p-plan__card,
.p-plan__option-title,
.p-plan__option-text-box,
.p-plan__sub-intro,
.p-plan__sub-card,
.p-plan__sub-attention {
  opacity: 0;
}

.p-plan__intro.is-active,
.p-plan__card.is-active,
.p-plan__option-title.is-active,
.p-plan__option-text-box.is-active,
.p-plan__sub-intro.is-active,
.p-plan__sub-card.is-active,
.p-plan__sub-attention.is-active {
  animation: fadeIn 0.5s ease-out forwards;
}

.p-cta__content {
  opacity: 0;
}

.p-cta__content.is-active {
  animation: fadeIn 0.5s ease-out forwards;
}

.p-faq__intro,
.p-faq-list__item {
  opacity: 0;
}

.p-faq__intro.is-active,
.p-faq-list__item.is-active {
  animation: fadeIn 0.5s ease-out forwards;
}

.p-company__title,
.p-company__card,
.p-company__item {
  opacity: 0;
}

.p-company__title.is-active,
.p-company__card.is-active,
.p-company__item.is-active {
  animation: fadeIn 0.5s ease-out forwards;
}

.l-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.l-inner {
  margin-inline: auto;
  padding: 0 25px;
  width: 100%;
  max-width: 1190px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 20px;
    max-width: calc(37.5rem + 50px);
  }
}

.c-button {
  padding: 0.75rem 1.5625rem;
  background-color: #de6c38;
  border: none;
  outline: 1px solid #de6c38;
  outline-offset: -1px;
  border-radius: 1.875rem;
  color: #ffffff;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.c-button:hover {
  color: #00205b;
  background-color: #ffffff;
}

.c-legal-heading {
  font-weight: 700;
  font-size: 2.5rem;
  color: #00205b;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-legal-heading {
    font-size: 1.5rem;
  }
}

.p-404 {
  padding: 12.5rem 0;
  background-color: #eef4ff;
}
@media screen and (max-width: 767px) {
  .p-404 {
    padding: 10rem 0;
  }
}

.p-404__title {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-404__title {
    font-size: 1.5rem;
  }
}

.p-404__button {
  margin-top: 2.5rem;
}

.p-company {
  background-color: #f5f3ee;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-company {
    padding-bottom: 3.75rem;
  }
}

.p-company__header {
  background-color: #00205b;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-company__header {
    padding: 3.75rem 0;
  }
}

.p-company__header-inner {
  text-align: center;
}

.p-company__title {
  font-weight: 700;
  font-size: 3rem;
  color: #f5f3ee;
}
@media screen and (max-width: 767px) {
  .p-company__title {
    font-size: 1.5rem;
  }
}

.p-company__inner {
  position: relative;
  margin-top: -3rem;
}
@media screen and (max-width: 767px) {
  .p-company__inner {
    margin-top: -2rem;
  }
}

.p-company__card {
  max-width: 62.5rem;
  margin-inline: auto;
  padding: 3.75rem 3.125rem;
  background-color: #ffffff;
  box-shadow: 0 0 1.875rem rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 767px) {
  .p-company__card {
    max-width: 37.5rem;
    padding: 2rem 1.25rem;
  }
}

.p-company__item {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-company__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

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

.p-company__label {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  background-color: #f5f3ee;
  border-radius: 624.9375rem;
  max-width: 8.25rem;
  width: 100%;
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.19);
}
@media screen and (max-width: 767px) {
  .p-company__label {
    max-width: 100%;
    font-size: 1rem;
  }
}

.p-company__value {
  flex: 1;
  font-weight: 700;
  font-size: 1.125rem;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-company__value {
    font-size: 0.875rem;
  }
}

.p-cta {
  padding: 6.25rem 0;
  background-image: url(../images/common/cta-img.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding: 5rem 0;
    background-image: url(../images/common/cta-img-sp.webp);
  }
}

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

.p-cta__title {
  font-weight: 700;
  font-size: 3rem;
  color: #ffffff;
  text-shadow: 0 0 0.9375rem rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: 1.25rem;
  }
}

.p-cta__text {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 0 0.9375rem rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .p-cta__text {
    font-size: 1rem;
  }
}

.p-cta__button.c-button {
  margin-top: 2.5rem;
  padding: 1.125rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-cta__button.c-button {
    margin-top: 2rem;
    width: 100%;
    max-width: 25rem;
  }
}
.p-cta__button.c-button:hover {
  opacity: 1;
}

.p-faq {
  padding: 5rem 0;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding: 3.75rem 0;
  }
}

.p-faq__intro {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #00205b;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-faq__intro {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.p-faq__list {
  margin-top: 2.5rem;
  padding: 4rem 5rem;
  background-color: #eef4ff;
  border-radius: 4.5rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-faq__list {
    margin-top: 2rem;
    padding: 2rem 1.25rem;
    border-radius: 1.5rem;
  }
}

.p-faq-list__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.p-faq-list__item:first-of-type {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.p-faq-list__item-question {
  padding: 1.25rem 2.5rem;
  position: relative;
  text-indent: -1.25rem;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-faq-list__item-question {
    padding: 1rem 2rem;
    font-size: 1rem;
    text-indent: -1rem;
  }
}

.p-faq-list__item-question::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.1875rem;
  width: 0.75rem;
  height: 0.75rem;
  border-top: 0.125rem solid #00205b;
  border-right: 0.125rem solid #00205b;
  transform: translateY(-50%) rotate(135deg);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-faq-list__item-question::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.p-faq-list__item-question.is-open::before {
  transform: translateY(-50%) rotate(-45deg);
}

.p-faq-list__item-question span {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-faq-list__item-question span {
    font-size: 1.25rem;
  }
}

.p-faq-list__item-answer {
  padding: 0 2rem 1.5rem 1.375rem;
  display: none;
  text-indent: -0.6875rem;
}
@media screen and (max-width: 767px) {
  .p-faq-list__item-answer {
    padding: 0 2rem 1rem 1.1875rem;
    text-indent: -0.5625rem;
  }
}

.p-faq-list__item-answer span {
  display: inline-block;
  color: #de6c38;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-faq-list__item-answer span {
    font-size: 1.25rem;
  }
}

.p-flow-caution {
  padding: 2.5rem 0;
  background-color: #f5f3ee;
}

.p-flow-caution__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-flow-caution__heading {
  font-weight: 500;
  font-size: 1.25rem;
  color: #1e293b;
}

.p-flow-caution__description {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: #1e293b;
}
@media screen and (max-width: 767px) {
  .p-flow-caution__description {
    font-size: 1rem;
  }
}

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

.p-flow__list {
  margin-top: 3.75rem;
  counter-reset: number;
}
@media screen and (max-width: 767px) {
  .p-flow__list {
    margin-top: 2.625rem;
  }
}

.p-flow__item {
  display: flex;
}

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

.p-flow__item-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.p-flow__item-number::before {
  counter-increment: number;
  content: "Step0" counter(number);
  padding-top: 1.875rem;
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
  color: #de6c38;
}
@media screen and (max-width: 767px) {
  .p-flow__item-number::before {
    padding-top: unset;
    font-size: 0.875rem;
  }
}

.p-flow__item-img {
  width: 6.25rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .p-flow__item-img {
    margin-top: 0.5rem;
    width: 3.125rem;
  }
}

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

.p-flow__item-content {
  margin-left: 1rem;
  padding-top: 2.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-flow__item-content {
    margin-left: 0.75rem;
    padding-top: unset;
  }
}

.p-flow__item-title {
  margin-left: 1.5rem;
  font-weight: 700;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-flow__item-title {
    margin-left: 1rem;
    font-size: 1.25rem;
  }
}

.p-flow__item-text {
  margin-top: 0.75rem;
  padding: 1.5rem 1.75rem;
  font-weight: 500;
  font-size: 1.125rem;
  border-radius: 1.875rem;
  background-color: #f5f3ee;
  box-shadow: 0 0.3125rem 0.3125rem rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .p-flow__item-text {
    padding: 1rem;
    font-size: 1rem;
    border-radius: 1rem;
  }
}

.p-flow__attention {
  margin-top: 5rem;
  margin-inline: auto;
  font-size: 1.125rem;
  max-width: 50rem;
}
@media screen and (max-width: 767px) {
  .p-flow__attention {
    margin-top: 3.75rem;
    font-size: 0.875rem;
    max-width: 37.5rem;
  }
}

.p-footer {
  background-color: #ffffff;
}

.p-footer__top-inner {
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__top-inner {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.p-footer__title {
  font-family: "Inter", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #00205b;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-footer__title {
    font-size: 2rem;
  }
}

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

.p-footer__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.p-footer__nav-item a {
  font-size: 1.125rem;
  color: #00205b;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item a {
    font-size: 1rem;
  }
}

.p-footer__bottom {
  border-top: 1px solid #00205b;
  background-color: #eaf0fa;
}

.p-footer__bottom-inner {
  padding: 2rem 0 4.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom-inner {
    padding: 1.5rem 1.25rem;
    flex-direction: column-reverse;
    gap: 1rem;
  }
}

.p-footer__copyright {
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  color: #00205b;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: 0.75rem;
  }
}

.p-footer__links {
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__links {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

.p-footer__link-item a {
  font-size: 0.875rem;
  color: #00205b;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-footer__link-item a {
    font-size: 0.75rem;
  }
}

.p-header {
  height: 4.5rem;
  background-color: #f5f3ee;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 4rem;
  }
}

.p-header__inner {
  padding: 0 3.875rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding: 0 1.25rem;
  }
}

.p-header__logo {
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  height: inherit;
}

.p-header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
}

.p-header__nav {
  position: relative;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

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

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item > a {
  padding: 0 1rem;
  height: inherit;
  display: flex;
  align-items: center;
}

.p-header__nav-item.p-header__nav-item--login,
.p-header__nav-item.p-header__nav-item--mypage {
  margin-left: 1rem;
  display: flex;
  align-items: center;
  height: initial;
}

.p-header__nav-item.p-header__nav-item--login a {
  padding: 0.5rem 1.5rem;
  outline: 0.0625rem solid #00205b;
  outline-offset: -0.0625rem;
  border-radius: 1.875rem;
  transition: all 0.3s;
}

.p-header__nav-item.p-header__nav-item--login a:hover {
  opacity: 1;
  background-color: #00205b;
  color: #ffffff;
}

.p-header__nav-item.p-header__nav-item--mypage a {
  padding: 0.5rem 1.5rem;
  border-radius: 1.875rem;
  background-color: #00205b;
  color: #ffffff;
  transition: all 0.3s;
}

.p-header__hamburger {
  display: none;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 2.5rem;
  height: inherit;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: block;
  }
}

.p-header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.25rem;
  height: 0.125rem;
  background-color: #1e293b;
  transition: 0.5s;
}

.p-header__hamburger span:nth-of-type(1) {
  top: -0.3125rem;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}

.p-header__hamburger span:nth-of-type(3) {
  top: 0.3125rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0.125rem;
  transform: translateX(-50%) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

.p-header__drawer {
  padding: 6.875rem 0;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #f5f3ee;
  overflow-y: scroll;
  scrollbar-width: none;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-item {
  border-bottom: 1px solid #ffffff;
}

.p-header__drawer-item > a {
  padding: 1.25rem 2rem;
  display: block;
  cursor: pointer;
}

.p-header__drawer-item.p-header__drawer-item--login,
.p-header__drawer-item.p-header__drawer-item--mypage {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: none;
}

.p-header__drawer-item.p-header__drawer-item--login {
  margin-top: 2.5rem;
}

.p-header__drawer-item.p-header__drawer-item--mypage {
  margin-top: 1.25rem;
}

.p-header__drawer-item.p-header__drawer-item--login a,
.p-header__drawer-item.p-header__drawer-item--mypage a {
  padding: 0.75rem 1.25rem;
  max-width: 12.5rem;
  width: 100%;
  border-radius: 1.875rem;
  text-align: center;
}

.p-header__drawer-item.p-header__drawer-item--login a {
  outline: 0.0625rem solid #00205b;
  outline-offset: -0.0625rem;
  background-color: #ffffff;
}

.p-header__drawer-item.p-header__drawer-item--mypage a {
  color: #ffffff;
  background-color: #00205b;
}

.p-legal-section + .p-legal-section {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-legal-section + .p-legal-section {
    margin-top: 2rem;
  }
}

.p-legal-section__title {
  font-weight: 700;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-legal-section__title {
    font-size: 1.125rem;
  }
}

.p-legal-section__intro {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-legal-section__intro {
    margin-top: 0.75rem;
    font-size: 0.875rem;
  }
}

.p-legal-section__outro {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-legal-section__outro {
    margin-top: 0.75rem;
    font-size: 0.875rem;
  }
}

.p-legal-section__list {
  margin-top: 1rem;
  padding-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-legal-section__list {
    margin-top: 0.75rem;
    padding-left: 1.25rem;
    font-size: 0.875rem;
  }
}

.p-legal-section__list--numbered {
  list-style-type: decimal;
}

.p-legal-section__list--bullet {
  list-style: none;
  padding-left: 0;
}
.p-legal-section__list--bullet > .p-legal-section__item {
  position: relative;
  padding-left: 1.25rem;
}
.p-legal-section__list--bullet > .p-legal-section__item::before {
  content: "・";
  position: absolute;
  left: 0;
}

.p-legal-section__list--alpha {
  list-style-type: lower-alpha;
}

.p-legal-section__item + .p-legal-section__item {
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-legal-section__item + .p-legal-section__item {
    margin-top: 0.625rem;
  }
}

.p-legal-section__item-text {
  display: block;
}

.p-legal-section__sublist {
  margin-top: 0.75rem;
  padding-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-legal-section__sublist {
    margin-top: 0.625rem;
    padding-left: 1.25rem;
  }
}

.p-legal-section__sublist--numbered {
  list-style-type: decimal;
}

.p-legal-section__sublist--bullet {
  list-style: none;
  padding-left: 0;
}
.p-legal-section__sublist--bullet > .p-legal-section__subitem {
  position: relative;
  padding-left: 1.25rem;
}
.p-legal-section__sublist--bullet > .p-legal-section__subitem::before {
  content: "・";
  position: absolute;
  left: 0;
}

.p-legal-section__sublist--alpha {
  list-style-type: lower-alpha;
}

.p-legal-section__subitem + .p-legal-section__subitem {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-legal-section__subitem + .p-legal-section__subitem {
    margin-top: 0.375rem;
  }
}

.p-legal-section__subitem-text {
  display: block;
}

.p-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.p-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.p-modal.is-open .p-modal__container {
  transform: scale(1);
  opacity: 1;
}

.p-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.p-modal__container {
  padding: 0 25px;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: calc(37.5rem + 50px);
  transform: scale(0.6);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-modal__container {
    padding: 0 20px;
    max-width: calc(31.25rem + 40px);
  }
}

.p-modal__content {
  position: relative;
  padding: 3rem 2.5rem;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .p-modal__content {
    padding: 2.5rem 1.5rem;
  }
}

.p-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  font-size: 1.75rem;
  line-height: 1;
  color: #1e293b;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.p-modal__close:hover, .p-modal__close:focus {
  color: #000000;
  background-color: #f5f3ee;
}

.p-modal__title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000000;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-modal__title {
    font-size: 1.25rem;
  }
}

.p-modal__text {
  margin-top: 1.25rem;
  color: #1e293b;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-modal__text {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
}

.p-modal__buttons {
  display: flex;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-modal__buttons {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
}

.p-modal__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 1rem 1.5rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-radius: 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.p-modal__button::before {
  content: "";
  position: absolute;
  inset: -0.25rem;
  border-radius: 2rem;
}
.p-modal__button:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
}

.p-modal__button:active {
  transform: translateY(0);
}

.p-modal__button.p-modal__button--primary {
  color: #ffffff;
  background-color: #000000;
}

.p-modal__button.p-modal__button--secondary {
  color: #000000;
  background-color: transparent;
  border: 0.125rem solid #000000;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.p-modal__button.p-modal__button--secondary:hover {
  color: #ffffff;
  background-color: #000000;
}

body.is-modal-open {
  overflow: hidden;
}

.p-mv {
  position: relative;
  height: 100svh;
  min-height: 25rem;
}

.p-mv__inner {
  height: inherit;
  min-height: inherit;
}

.p-mv__content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 13%;
  transform: translateY(-50%);
  max-width: 33.125rem;
}
@media screen and (max-width: 767px) {
  .p-mv__content {
    padding: 0 1.25rem;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 40rem;
    text-align: center;
  }
}

.p-mv__title {
  font-weight: 700;
  font-size: 3.25rem;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    font-size: 2rem;
  }
}

.p-mv__text {
  margin-top: 1.5rem;
  font-size: 1.1875rem;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 0 0.625rem #1f1f20;
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    margin-top: 1.25rem;
    font-size: 0.875rem;
  }
}

.p-mv__button {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-mv__button {
    margin-top: 3rem;
    width: 100%;
    max-width: 25rem;
  }
}
.p-mv__button:hover {
  opacity: 1;
}

.p-mv__img,
.p-mv__img img {
  height: inherit;
  min-height: inherit;
}

.p-mv__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-page-law {
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .p-page-law {
    padding: 7.5rem 0;
  }
}

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

.p-page-law__item {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-page-law__item {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 0;
  }
}

.p-page-law__item-title {
  flex: 0 0 12.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-page-law__item-title {
    flex: none;
    font-size: 0.875rem;
  }
}

.p-page-law__item-description {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-page-law__item-description {
    font-size: 0.875rem;
  }
}

.p-page-law__item a {
  color: #323d88;
  text-decoration: underline;
}
.p-page-law__item a:hover {
  text-decoration: none;
}

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

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

.p-page-law__plan {
  padding: 1.5rem;
  background-color: #f5f3ee;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-page-law__plan {
    padding: 1rem;
  }
}

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

.p-page-law__plan-name {
  font-weight: 700;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-page-law__plan-name {
    font-size: 1rem;
  }
}

.p-page-law__plan-price {
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-page-law__plan-price {
    margin-top: 0.625rem;
    font-size: 0.875rem;
  }
}

.p-page-law__plan-features {
  margin-top: 0.75rem;
  padding-left: 1.5rem;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-page-law__plan-features {
    margin-top: 0.625rem;
    padding-left: 0;
  }
}

.p-page-law__plans-note {
  margin: 0.75rem 0 2.5rem;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-page-law__plans-note {
    margin: 0.75rem 0 2rem;
  }
}

.p-page-privacy {
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .p-page-privacy {
    padding: 7.5rem 0;
  }
}

.p-page-privacy__intro {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-page-privacy__intro {
    margin-top: 2.5rem;
    font-size: 0.875rem;
  }
}

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

.p-page-terms {
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .p-page-terms {
    padding: 7.5rem 0;
  }
}

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

.p-plan {
  padding: 5rem 0;
  background-color: #ffffff;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .p-plan {
    padding: 3.75rem 0;
  }
}

.p-plan__bubbles {
  position: relative;
}

.p-plan__bubbles img {
  position: absolute;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-plan__bubbles img:nth-child(1) {
  top: 3.3125rem;
  left: 0;
  max-width: 2.4375rem;
  aspect-ratio: 39/40;
}
@media screen and (max-width: 767px) {
  .p-plan__bubbles img:nth-child(1) {
    max-width: 1.25rem;
  }
}

.p-plan__bubbles img:nth-child(2) {
  top: 6.4375rem;
  left: 5.0625rem;
  max-width: 2.6875rem;
  aspect-ratio: 43/39;
}
@media screen and (max-width: 767px) {
  .p-plan__bubbles img:nth-child(2) {
    left: 3.125rem;
    max-width: 1.875rem;
  }
}

.p-plan__bubbles img:nth-child(3) {
  top: 1.3125rem;
  left: 10.875rem;
  max-width: 4.6875rem;
  aspect-ratio: 75/72;
}
@media screen and (max-width: 767px) {
  .p-plan__bubbles img:nth-child(3) {
    left: 6.25rem;
    max-width: 3.75rem;
  }
}

.p-plan__bubbles img:nth-child(4) {
  top: 6.875rem;
  right: 10.625rem;
  max-width: 5.0625rem;
  aspect-ratio: 81/76;
}
@media screen and (max-width: 767px) {
  .p-plan__bubbles img:nth-child(4) {
    right: 6.25rem;
    max-width: 4.375rem;
  }
}

.p-plan__bubbles img:nth-child(5) {
  top: 1.75rem;
  right: 5.0625rem;
  max-width: 3.0625rem;
  aspect-ratio: 49/45;
}
@media screen and (max-width: 767px) {
  .p-plan__bubbles img:nth-child(5) {
    right: 3.125rem;
    max-width: 2.1875rem;
  }
}

.p-plan__bubbles img:nth-child(6) {
  top: 5.8125rem;
  right: 0.125rem;
  max-width: 3.5rem;
  aspect-ratio: 56/55;
}
@media screen and (max-width: 767px) {
  .p-plan__bubbles img:nth-child(6) {
    right: 0.625rem;
    max-width: 2.5rem;
  }
}

.p-plan__intro {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 1.125rem;
  color: #00205b;
}
@media screen and (max-width: 767px) {
  .p-plan__intro {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.p-plan__cards {
  margin-top: 3.75rem;
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .p-plan__cards {
    margin-top: 2.5rem;
    gap: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-plan__card {
  padding: 2rem 1.5rem 2.5rem;
  width: 100%;
  max-width: 22.5rem;
  border-radius: 2.5rem;
  text-align: center;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-plan__card {
    margin-inline: auto;
    max-width: 37.5rem;
    border-radius: 2rem;
  }
}

.p-plan__card--starter {
  background: linear-gradient(180deg, #759ae0 0%, #5c7fb8 100%);
}

.p-plan__card--standard {
  background: linear-gradient(180deg, #4f65c1 0%, #4961a8 100%);
}

.p-plan__card--growth {
  background: linear-gradient(180deg, #263072 0%, #313d7d 100%);
}

.p-plan__label {
  position: relative;
  padding: 0.5rem 1.25rem;
  display: inline-block;
  background-color: #f5f3ee;
  color: #00205b;
  font-weight: 500;
  border-radius: 1.25rem;
}
.p-plan__label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.375rem;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0.5rem solid transparent;
  border-left: 0.5rem solid transparent;
  border-top: 0.6875rem solid #00205b;
  border-bottom: 0;
}

.p-plan__label-icon {
  margin-inline: auto;
  width: 2.5rem;
  aspect-ratio: 1/1;
}

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

.p-plan__name {
  margin-top: 0.5rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: #f5f3ee;
  letter-spacing: 0.02em;
}

.p-plan__price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.25rem;
}

.p-plan__price-value {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #f5f3ee;
}
@media screen and (max-width: 767px) {
  .p-plan__price-value {
    font-size: 2.5rem;
  }
}

.p-plan__price-unit {
  padding-bottom: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: #f5f3ee;
}
@media screen and (max-width: 767px) {
  .p-plan__price-unit {
    padding-bottom: 0.875rem;
    font-size: 1rem;
  }
}

.p-plan__tax {
  font-weight: 500;
  font-size: 1.25rem;
  color: #f5f3ee;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .p-plan__tax {
    font-size: 1.125rem;
  }
}

.p-plan__features {
  margin-top: 2rem;
  list-style: none;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-plan__features {
    margin-top: 1.5rem;
  }
}

.p-plan__feature {
  position: relative;
  font-weight: 500;
  color: #ffffff;
  padding-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-plan__feature {
    padding-left: 1.5rem;
  }
}
.p-plan__feature::before {
  content: "";
  position: absolute;
  top: 0.1875rem;
  left: 0.375rem;
  width: 0.5rem;
  height: 0.875rem;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}

.p-plan__feature + .p-plan__feature {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-plan__feature + .p-plan__feature {
    margin-top: 0.75rem;
  }
}

.p-plan__sub-content {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-plan__sub-content {
    margin-top: 5rem;
  }
}

.p-plan__sub-bubbles {
  position: relative;
}

.p-plan__sub-bubbles img {
  position: absolute;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-plan__sub-bubbles img:nth-child(1) {
  top: 5rem;
  left: 3.375rem;
  max-width: 5.0625rem;
  aspect-ratio: 81/76;
}
@media screen and (max-width: 767px) {
  .p-plan__sub-bubbles img:nth-child(1) {
    left: 0;
    max-width: 4.0625rem;
  }
}

.p-plan__sub-bubbles img:nth-child(2) {
  top: 0;
  left: 10.5rem;
  max-width: 3.0625rem;
  aspect-ratio: 49/45;
}
@media screen and (max-width: 767px) {
  .p-plan__sub-bubbles img:nth-child(2) {
    left: 3.125rem;
    max-width: 2.1875rem;
  }
}

.p-plan__sub-bubbles img:nth-child(3) {
  top: 2.5rem;
  left: 17.4375rem;
  max-width: 3.5rem;
  aspect-ratio: 56/55;
}
@media screen and (max-width: 767px) {
  .p-plan__sub-bubbles img:nth-child(3) {
    left: 6.25rem;
    max-width: 2.8125rem;
  }
}

.p-plan__sub-bubbles img:nth-child(4) {
  top: 1.875rem;
  right: 16.8125rem;
  max-width: 2.4375rem;
  aspect-ratio: 39/40;
}
@media screen and (max-width: 767px) {
  .p-plan__sub-bubbles img:nth-child(4) {
    right: 6.25rem;
    max-width: 1.5625rem;
  }
}

.p-plan__sub-bubbles img:nth-child(5) {
  top: 5rem;
  right: 11.5rem;
  max-width: 2.6875rem;
  aspect-ratio: 43/39;
}
@media screen and (max-width: 767px) {
  .p-plan__sub-bubbles img:nth-child(5) {
    right: 3.125rem;
    max-width: 1.875rem;
  }
}

.p-plan__sub-bubbles img:nth-child(6) {
  top: 0rem;
  right: 3.6875rem;
  max-width: 4.6875rem;
  aspect-ratio: 75/72;
}
@media screen and (max-width: 767px) {
  .p-plan__sub-bubbles img:nth-child(6) {
    right: 0.625rem;
    max-width: 3.75rem;
  }
}

.p-plan__sub-intro {
  margin-top: 1.5rem;
  position: relative;
  z-index: 10;
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-plan__sub-intro {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.p-plan__sub-cards {
  margin-top: 3.75rem;
  margin-inline: auto;
  width: 100%;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-plan__sub-cards {
    margin-top: 2.5rem;
    max-width: 37.5rem;
    gap: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-plan__sub-card {
  padding: 1.5rem 1rem;
  background-color: #EAF0FA;
  border-radius: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-plan__sub-card {
    padding: 1.25rem 1rem;
    border-radius: 2rem;
  }
}

.p-plan__sub-card-title {
  font-weight: 700;
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-plan__sub-card-title {
    font-size: 1.125rem;
  }
}
.p-plan__sub-card-title::before {
  content: "";
  margin-right: 0.75rem;
  margin-bottom: 0.25rem;
  display: inline-block;
  width: 0.625rem;
  height: 1rem;
  border-right: 2px solid #00205b;
  border-bottom: 2px solid #00205b;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-plan__sub-card-title::before {
    width: 0.5rem;
    height: 0.875rem;
  }
}

.p-plan__sub-card-text {
  margin-top: 1rem;
  font-weight: 500;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-plan__sub-card-text {
    margin-top: 0.75rem;
    font-size: 1rem;
  }
}

.p-plan__sub-card span {
  margin-top: 1.5rem;
  display: inline-block;
  font-weight: 500;
  font-size: 1.25rem;
  color: rgba(0, 32, 91, 0.7);
}
@media screen and (max-width: 767px) {
  .p-plan__sub-card span {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.p-plan__sub-attention {
  margin-top: 5rem;
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-plan__sub-attention {
    margin-top: 3.75rem;
    font-size: 0.875rem;
  }
}

.p-problem {
  padding: 5rem 0;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-problem {
    padding: 3.75rem 0;
  }
}

.p-problem__title > .p-title__heading {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-problem__title > .p-title__heading {
    margin-top: 0.75rem;
    font-size: 1.25rem;
  }
}

.p-problem__title > .p-title__heading span {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-problem__title > .p-title__heading span {
    font-size: 1.75rem;
  }
}

.p-problem__list {
  margin-top: 3.5rem;
  margin-inline: auto;
  display: grid;
  gap: 1.75rem 1.625rem;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  max-width: 57.875rem;
}
@media screen and (max-width: 767px) {
  .p-problem__list {
    margin-top: 2.5rem;
    gap: 1.25rem 0;
    grid-template-columns: repeat(1, 1fr);
    max-width: 37.5rem;
  }
}

.p-problem__item {
  padding: 3rem 1.25rem;
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 0.5rem;
  max-width: 29.375rem;
  background-color: #f5f3ee;
}
@media screen and (max-width: 767px) {
  .p-problem__item {
    padding: 2rem 1rem;
    border-radius: 0.375rem;
    max-width: initial;
  }
}

.p-problem__item-icon {
  flex-shrink: 0;
  width: 2.0625rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .p-problem__item-icon {
    width: 1.875rem;
  }
}

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

.p-problem__item-text {
  font-weight: 500;
  font-size: 1.4375rem;
  color: #323d88;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-problem__item-text {
    font-size: 1.125rem;
  }
}

.p-problem__description-box {
  margin-top: 5rem;
  padding: 5rem 1.5625rem;
  border-radius: 7.5rem;
  background: radial-gradient(50% 50% at 50% 50%, #323d88 0%, #2a3baa 10.1%, #505db7 100%);
}
@media screen and (max-width: 767px) {
  .p-problem__description-box {
    margin-top: 3.75rem;
    padding: 2.5rem 1rem;
    border-radius: 2.5rem;
  }
}

.p-problem__description {
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.8;
  color: #ffffff;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-problem__description {
    font-size: 1.125rem;
  }
}

.p-problem__description span {
  font-weight: 700;
  font-size: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-problem__description span {
    font-size: 1.5rem;
  }
}

.p-reason {
  padding: 5rem 0;
  background-color: #f5f3ee;
}
@media screen and (max-width: 767px) {
  .p-reason {
    padding: 3.75rem 0;
  }
}

.p-reason__intro {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-reason__intro {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.p-reason__cards {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto auto;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-reason__cards {
    margin-top: 2.5rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-reason__card {
  padding: 0.625rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}
@media screen and (max-width: 767px) {
  .p-reason__card {
    padding: 0.5rem;
    border-radius: 0.375rem;
  }
}

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

.p-reason__card-top {
  padding: 0.625rem;
  border-radius: 0.25rem;
  background-color: #eaf0fa;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-reason__card-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: 0.1875rem;
  }
}

.p-reason__card-icon {
  width: 3rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .p-reason__card-icon {
    width: 2rem;
  }
}

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

.p-reason__card-title {
  margin-top: 0.625rem;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-reason__card-title {
    margin-top: unset;
    font-size: 1.125rem;
  }
}

.p-reason__card-text {
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .p-reason__card-text {
    padding: 1.25rem 0.75rem;
  }
}

.p-service {
  padding: 5rem 0;
  background-color: #eef4ff;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .p-service {
    padding: 3.75rem 0;
  }
}

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

.p-service__item {
  position: relative;
  margin-left: 12.5rem;
  margin-right: calc(50% - 50vw);
  padding-top: 2.5rem;
  padding-right: max(1.5625rem, (100vw - 1140px) / 2);
  padding-bottom: 3.125rem;
  padding-left: 5.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 5.875rem;
       column-gap: 5.875rem;
  background-color: #fefbf4;
}
@media screen and (max-width: 767px) {
  .p-service__item {
    margin-left: 3.75rem;
    padding-top: 1.5rem;
    padding-left: 2.5rem;
    flex-direction: column;
    row-gap: 1.5rem;
  }
}

.p-service__item + .p-service__item {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-service__item + .p-service__item {
    margin-top: 5rem;
  }
}

.p-service__item:nth-of-type(even) {
  flex-direction: row-reverse;
  margin-right: 11.25rem;
  margin-left: calc(50% - 50vw);
  padding-top: 2.5rem;
  padding-right: 5.875rem;
  padding-bottom: 3.125rem;
  padding-left: max(1.5625rem, (100vw - 1140px) / 2);
}
@media screen and (max-width: 767px) {
  .p-service__item:nth-of-type(even) {
    margin-right: 3.75rem;
    padding-top: 1.5rem;
    padding-right: 1.5rem;
    flex-direction: column;
  }
}

.p-service__item-content {
  flex-shrink: 0;
  max-width: 23.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-service__item-content {
    max-width: 100%;
  }
}

.p-service__item-label {
  position: absolute;
  top: -1rem;
  left: -1.5rem;
  text-align: center;
}

.p-service__item:nth-of-type(even) .p-service__item-label {
  left: unset;
  right: -1.5rem;
}

.p-service__item-label-text {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-service__item-label-text {
    font-size: 1.75rem;
  }
}

.p-service__item-label-number {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-service__item-label-number {
    font-size: 3rem;
  }
}

.p-service__item-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-service__item-title {
    font-size: 1.5rem;
  }
}

.p-service__item-subtitle {
  font-weight: 500;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-service__item-subtitle {
    font-size: 1.125rem;
  }
}

.p-service__item-text {
  margin-top: 2.5rem;
  font-weight: 500;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-service__item-text {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.p-service__item-img {
  margin-bottom: -5rem;
  flex-shrink: 0;
  max-width: 27.5rem;
  aspect-ratio: 440/330;
  border-radius: 1.875rem;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 767px) {
  .p-service__item-img {
    max-width: 25rem;
  }
}

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

.p-service__attention {
  margin-top: 5rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service__attention {
    margin-top: 3.75rem;
    font-size: 0.875rem;
  }
}

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

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

.p-title__label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  color: #de6c38;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-title__label {
    font-size: 1.125rem;
  }
}

.p-title__heading {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-title__heading {
    font-size: 1.5rem;
  }
}

.p-voice {
  padding: 5rem 0;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-voice {
    padding: 3.75rem 0;
  }
}

.p-voice__intro {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  text-align: center;
  color: #00205b;
}
@media screen and (max-width: 767px) {
  .p-voice__intro {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.p-voice__cards {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.625rem, 1fr));
}
@media screen and (max-width: 767px) {
  .p-voice__cards {
    margin-top: 2.5rem;
    gap: 1.5rem 0.5rem;
    display: grid;
  }
}

.p-voice__card {
  position: relative;
  margin-inline: auto;
  border-radius: 1.25rem;
  max-width: 18.625rem;
  width: 100%;
  padding-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-voice__card {
    border-radius: 1rem;
  }
}

.p-voice__card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6.25rem;
  z-index: 20;
}
.p-voice__card-image img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  width: 5.4375rem;
  aspect-ratio: 87/83.9473648071;
  display: block;
  border-radius: 0 1.805625rem 1.805625rem 1.805625rem;
  box-shadow: 0 0 0.381875rem rgba(0, 0, 0, 0.25);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-voice__card-image img {
    width: 4.5rem;
    border-radius: 0 1.25rem 1.25rem 1.25rem;
  }
}

.p-voice__card-label {
  padding: 0.75rem 1.25rem;
  position: absolute;
  right: 1.25rem;
  bottom: 0;
  z-index: 40;
  min-width: 13.9375rem;
  font-weight: 500;
  font-size: 0.875rem;
  color: #ffffff;
  background-color: #505eb7;
  border-radius: 0 0.9375rem 0 0.9375rem;
  text-align: center;
}

.p-voice__card-label span {
  font-size: 0.75rem;
  font-weight: 400;
}

.p-voice__card-text {
  position: relative;
  height: 100%;
  padding: 3.75rem 1.25rem 1.25rem;
  font-size: 1.125rem;
  background-color: #f5f3ee;
  border-radius: 0.75rem;
  quotes: none;
}
@media screen and (max-width: 767px) {
  .p-voice__card-text {
    padding: 3.75rem 1rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 0.5rem;
  }
}

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