@charset "UTF-8";
/* 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: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #0F172A;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

@keyframes cta-rotate-right {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes cta-rotate-left {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.p-cta-second__deco.p-cta-second__deco--right {
  animation: cta-rotate-right 30s linear infinite;
}

.p-cta-second__deco.p-cta-second__deco--left {
  animation: cta-rotate-left 15s linear 4s infinite;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-cta-first__inner,
.c-section-title,
.p-cta-second__inner,
.p-problem__item,
.p-reason__subtitle,
.p-reason__content,
.p-voice__subtitle,
.p-voice__item,
.p-service__subtitle,
.p-service__content,
.p-plan__subtitle,
.p-plan__table-wrapper,
.p-flow__subtitle,
.p-flow__list,
.p-price__subtitle,
.p-price__card,
.p-price__option,
.p-price__cta,
.p-trust__subtitle,
.p-trust__card,
.p-faq__subtitle,
.p-faq__item {
  opacity: 0;
}

.p-cta-first__inner.is-active,
.c-section-title.is-active,
.p-cta-second__inner.is-active,
.p-problem__item.is-active,
.p-reason__subtitle.is-active,
.p-reason__content.is-active,
.p-voice__subtitle.is-active,
.p-voice__item.is-active,
.p-service__subtitle.is-active,
.p-service__content.is-active,
.p-plan__subtitle.is-active,
.p-plan__table-wrapper.is-active,
.p-flow__subtitle.is-active,
.p-flow__list.is-active,
.p-price__subtitle.is-active,
.p-price__card.is-active,
.p-price__option.is-active,
.p-price__cta.is-active,
.p-trust__subtitle.is-active,
.p-trust__card.is-active,
.p-faq__subtitle.is-active,
.p-faq__item.is-active {
  animation: fadeIn 0.3s 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: calc(80rem + 50px);
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 20px;
    max-width: calc(37.5rem + 40px);
  }
}

.l-site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.l-site main {
  flex: 1;
}

.c-section-title {
  text-align: center;
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: 0.024em;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    font-size: 1.5rem;
  }
}
.c-section-title::before {
  content: attr(data-sub);
  margin-bottom: 1rem;
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #475569;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .c-section-title::before {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
  }
}

.c-section-title.c-section-title--left {
  -moz-text-align-last: left;
       text-align-last: left;
}

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

.p-company__wrap {
  display: grid;
  grid-template-columns: 37.5rem minmax(0, 1fr);
}
@media screen and (max-width: 767px) {
  .p-company__wrap {
    grid-template-columns: minmax(0, 1fr);
  }
}

.p-company__map {
  position: relative;
  min-height: 27.8125rem;
}
@media screen and (max-width: 767px) {
  .p-company__map {
    min-height: 18.75rem;
  }
}
.p-company__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.p-company__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5625rem 3.125rem;
  background-color: #0F172A;
}
@media screen and (max-width: 767px) {
  .p-company__info {
    padding: 2rem 1.25rem;
  }
}

.p-company__label {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #E2E8F0;
}

.p-company__heading {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.2;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-company__heading {
    margin-top: 0.75rem;
    font-size: 2rem;
  }
}

.p-company__list {
  margin-top: 2.625rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-company__list {
    margin-top: 1.5rem;
  }
}

.p-company__row {
  display: flex;
  gap: 0.5rem;
  font-size: 1.125rem;
  line-height: 2.7;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .p-company__row {
    font-size: 1rem;
    line-height: 2.2;
  }
}

.p-company__term {
  flex-shrink: 0;
}
.p-company__term::before {
  content: "・";
}
.p-company__term::after {
  content: "：";
}

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

.p-cta-first__inner {
  text-align: center;
}

.p-cta-first__heading {
  font-weight: 500;
  font-size: 3.25rem;
  line-height: 1.25;
  letter-spacing: 0.028em;
}
@media screen and (max-width: 767px) {
  .p-cta-first__heading {
    font-size: 1.5rem;
  }
}

.p-cta-first__description {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.55;
}
@media screen and (max-width: 767px) {
  .p-cta-first__description {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.p-cta-first__button {
  margin-top: 2rem;
  margin-inline: auto;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-align: center;
  font-weight: 500;
  color: #FFFFFF;
  background-color: #0F172A;
  border-radius: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-cta-first__button {
    margin-top: 1.5rem;
  }
}

.p-cta-second {
  padding: 7.5rem 0;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-cta-second {
    padding: 5rem 0;
  }
}

.p-cta-second__deco {
  position: absolute;
  pointer-events: none;
}
.p-cta-second__deco--right {
  top: 0;
  right: -2.5rem;
  width: 20.625rem;
}
@media screen and (max-width: 767px) {
  .p-cta-second__deco--right {
    width: 12.5rem;
  }
}
.p-cta-second__deco--left {
  bottom: 3.125rem;
  left: 0.625rem;
  width: 14.375rem;
}
@media screen and (max-width: 767px) {
  .p-cta-second__deco--left {
    bottom: 0;
    left: 0;
    width: 10rem;
  }
}

.p-cta-second__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.p-cta-second__heading {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-cta-second__heading {
    font-size: 1.75rem;
    letter-spacing: 0;
  }
}

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

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

.p-cta-second__button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  color: #FFFFFF;
  background-color: #0F172A;
  border: 1px solid #000;
  border-radius: 0.3125rem;
  text-align: center;
}

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

.p-contact__lead {
  margin-top: 1.5rem;
  font-size: 1rem;
  text-align: center;
  color: #64748B;
}
@media screen and (max-width: 767px) {
  .p-contact__lead {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
  }
}

.p-contact__form {
  margin-top: 3rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-contact__form {
    margin-top: 2.5rem;
  }
}

.p-contact__field {
  margin-bottom: 1.5rem;
}

.p-contact__label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.35rem;
  color: #0F172A;
}

.p-contact__required {
  font-size: 0.75rem;
  color: #94A3B8;
  font-weight: 400;
}

.p-contact__input,
.p-contact__textarea {
  width: 100%;
  padding: 0.65rem 0.875rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid #E2E8F0;
  border-radius: 0.3125rem;
  background-color: #FFFFFF;
  color: #0F172A;
}
.p-contact__input:focus,
.p-contact__textarea:focus {
  outline: none;
  border-color: #0F172A;
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.1);
}
.p-contact__textarea {
  resize: vertical;
  min-height: 8rem;
}

.p-contact__submit {
  margin-top: 2rem;
  text-align: center;
}

.p-contact__button {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  color: #FFFFFF;
  background-color: #0F172A;
  border: 1px solid #000;
  border-radius: 0.3125rem;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.3s;
}
.p-contact__button:hover {
  opacity: 0.9;
}

.p-contact__done {
  margin-top: 3rem;
  padding: 2rem;
  background-color: #F8FAFC;
  border-radius: 0.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__done {
    margin-top: 2.5rem;
    padding: 1.5rem;
  }
}

.p-contact__done-text {
  margin: 0;
  font-size: 1rem;
  color: #0F172A;
  line-height: 1.7;
}

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

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

.p-faq__columns {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-faq__columns {
    margin-top: 2.5rem;
    grid-template-columns: minmax(0, 1fr);
  }
}

.p-faq__column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.p-faq__question {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background-color: #0F172A;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .p-faq__question {
    padding: 1.125rem 1rem;
    gap: 0.625rem;
  }
}
.p-faq__item:nth-child(even) .p-faq__question {
  background-color: #475569;
}

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

.p-faq__icon {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.p-faq__icon::before, .p-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.875rem;
  height: 0.125rem;
  background-color: #FFFFFF;
}
.p-faq__icon::before {
  transform: translate(-50%, -50%);
}
.p-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-faq__item.is-open .p-faq__icon {
  transform: rotate(45deg);
}

.p-faq__answer {
  display: none;
  padding: 1.25rem 1.5rem;
  background-color: #E2E8F0;
}
@media screen and (max-width: 767px) {
  .p-faq__answer {
    padding: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-faq__answer p {
    font-size: 0.875rem;
  }
}

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

.p-flow__inner {
  margin-inline: auto;
  padding: 25px;
  width: 100%;
  max-width: calc(48rem + 50px);
}
@media screen and (max-width: 767px) {
  .p-flow__inner {
    padding: 20px;
    max-width: calc(37.5rem + 40px);
  }
}

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

.p-flow__list {
  margin-top: 5rem;
  padding-top: 1rem;
  position: relative;
  padding-left: 5rem;
}
.p-flow__list::before {
  content: "";
  position: absolute;
  left: 0.9375rem;
  top: 0;
  bottom: 0;
  width: 0.1875rem;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .p-flow__list {
    margin-top: 2.5rem;
    padding-left: 1.25rem;
  }
  .p-flow__list::before {
    left: 0.25rem;
  }
}

.p-flow__item {
  position: relative;
  padding: 2rem;
  background-color: #E2E8F0;
  border: 1px solid #000;
}
.p-flow__item::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: -4.5rem;
  width: 0.9375rem;
  height: 1.9375rem;
  background-color: #FFFFFF;
}
.p-flow__item::after {
  content: "";
  position: absolute;
  left: -4.5rem;
  top: 2rem;
  width: 0.9375rem;
  height: 0.9375rem;
  border-radius: 50%;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .p-flow__item {
    padding: 1rem;
  }
  .p-flow__item::before {
    top: 1.03125rem;
    left: -1.4375rem;
    height: 1.5625rem;
  }
  .p-flow__item::after {
    left: -1.34375rem;
    top: 1.5rem;
    width: 0.625rem;
    height: 0.625rem;
  }
}

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

.p-flow__step-num {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #475569;
}
@media screen and (max-width: 767px) {
  .p-flow__step-num {
    font-size: 1.5rem;
  }
}

.p-flow__heading {
  margin-top: 1rem;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-flow__heading {
    margin-top: 0.75rem;
    font-size: 1.25rem;
  }
}

.p-flow__text {
  margin-top: 2rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-flow__text {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.p-footer {
  padding: 10rem 0 4rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 5rem 0 2rem;
  }
}

.p-footer__inner {
  padding-bottom: 5rem;
  display: flex;
  justify-content: center;
  gap: 12.5rem;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
}

.p-footer__logo a {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 3.125rem;
  letter-spacing: 0.05em;
  color: #94A3B8;
}
@media screen and (max-width: 767px) {
  .p-footer__logo a {
    font-size: 2.5rem;
    display: inline-block;
    text-align: center;
  }
}

.p-footer__contents {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 2.5rem;
  width: 100%;
  max-width: 30rem;
}
@media screen and (max-width: 767px) {
  .p-footer__contents {
    margin-top: revert;
    max-width: 31.25rem;
  }
}

.p-footer__nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list {
    gap: 1.5rem;
  }
}

.p-footer__nav-item a {
  font-weight: 500;
  font-size: 0.875rem;
  color: #000;
  text-decoration: underline;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.p-footer__copyright {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    margin-top: 1.5rem;
  }
}

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

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

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

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

.p-header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.1875rem;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-header__logo a {
    font-size: 1.0625rem;
  }
}

.p-header__nav {
  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.p-header__nav-item--login,
.p-header__nav-item.p-header__nav-item--mypage,
.p-header__nav-item.p-header__nav-item--logout {
  margin-left: 1rem;
  display: flex;
  align-items: center;
}

.p-header__logout-form {
  margin: 0;
  display: flex;
  align-items: center;
}

.p-header__logout-btn {
  padding: 0.5rem 1.25rem;
  height: initial;
  border: 1px solid #000;
  border-radius: 0.3125rem;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: uppercase;
  color: #0F172A;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s;
}

.p-header__logout-btn:hover {
  opacity: 0.8;
}

.p-header__nav-item a {
  padding: 0 1rem;
  height: inherit;
  display: flex;
  align-items: center;
  color: #0F172A;
  text-transform: uppercase;
}

.p-header__nav-item.p-header__nav-item--login a,
.p-header__nav-item.p-header__nav-item--mypage a {
  padding: 0.5rem 1.25rem;
  height: initial;
  border: 1px solid #000;
  border-radius: 0.3125rem;
}

.p-header__nav-item.p-header__nav-item--mypage a {
  color: #FFFFFF;
  background-color: #0F172A;
}

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

.p-header__hamburger.is-open {
  background-color: transparent;
}

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

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

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

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

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  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: 7.5rem 1.25rem;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(15, 23, 42, 0.95);
  overflow-y: scroll;
  scrollbar-width: none;
}

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

.p-header__drawer-item a {
  padding: 0.9375rem 0;
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  text-transform: uppercase;
}

.p-header__drawer-item.p-header__drawer-item--login,
.p-header__drawer-item.p-header__drawer-item--mypage,
.p-header__drawer-item.p-header__drawer-item--logout {
  text-align: center;
}

.p-header__drawer-item.p-header__drawer-item--login a,
.p-header__drawer-item.p-header__drawer-item--mypage a {
  margin-top: 2rem;
  padding: 0.9375rem 1.25rem;
  width: 100%;
  max-width: 12.5rem;
  background-color: #FFFFFF;
  display: inline-block;
  color: #000;
  border-radius: 0.3125rem;
  border-bottom: none;
}

.p-header__drawer-item.p-header__drawer-item--logout .p-header__logout-form {
  margin-top: 2rem;
}

.p-header__drawer-item.p-header__drawer-item--logout .p-header__logout-btn {
  padding: 0.9375rem 1.25rem;
  width: 100%;
  max-width: 12.5rem;
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 0.3125rem;
  font-family: inherit;
  font-size: 1.25rem;
  cursor: pointer;
}

.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--bullet > .p-legal-section__item.p-legal-section__item--no-marker {
  padding-left: 0;
}
.p-legal-section__list--bullet > .p-legal-section__item.p-legal-section__item--no-marker::before {
  content: none;
}

.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-mv {
  position: relative;
  background-color: #e1e1e1;
  height: 100svh;
  overflow: hidden;
}

.p-mv__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    flex-direction: column;
  }
}

.p-mv__content {
  width: 100%;
  max-width: 35rem;
  flex-shrink: 0;
}

.p-mv__title {
  font-weight: 500;
  font-size: 3.375rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    font-size: 2rem;
  }
}

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

.p-mv__button {
  margin-top: 3rem;
  display: block;
  padding: 0.75rem 1.5rem;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-weight: 500;
  font-size: 1.3125rem;
  color: #FFFFFF;
  background-color: #0F172A;
  border-radius: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-mv__button {
    margin-top: 2.5rem;
    margin-inline: auto;
  }
}

.p-mv__figure {
  width: 100%;
  max-width: 40.25rem;
}
@media screen and (max-width: 767px) {
  .p-mv__figure {
    display: none;
  }
}

.p-mv__figure img {
  width: 100%;
  aspect-ratio: 644/920;
  border-radius: 0.5rem;
  -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: #0F172A;
  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: #E2E8F0;
  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__intro {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-page-terms__intro {
    margin-top: 2.5rem;
    font-size: 0.875rem;
  }
}

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

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

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

.p-plan__table-wrapper {
  margin-top: 5rem;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .p-plan__table-wrapper {
    margin-top: 2.5rem;
  }
}

.p-plan__table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .p-plan__table {
    min-width: 56.25rem;
  }
}

.p-plan__th {
  padding: 1.5rem 1.625rem;
  background-color: #0F172A;
  font-weight: 700;
  font-size: 1.25rem;
  color: #FFFFFF;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-plan__th {
    padding: 1rem 0.75rem;
    font-size: 1.125rem;
  }
}

.p-plan__row {
  background-color: #e1e1e1;
}

.p-plan__td {
  padding: 1rem 1.5rem;
  font-weight: 700;
  color: #475569;
  text-align: center;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .p-plan__td {
    padding: 0.875rem 0.75rem;
    font-size: 0.875rem;
  }
}
.p-plan__td--feature {
  font-weight: 500;
  color: #0F172A;
  text-align: left;
}

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

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

.p-price__cards {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-price__cards {
    margin-top: 2.5rem;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }
}

.p-price__card {
  position: relative;
  padding: 2.5rem 2rem;
  border: 2px solid #E2E8F0;
  border-radius: 0.625rem;
  background-color: rgba(226, 232, 240, 0.5);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-price__card {
    padding: 2.5rem 1rem;
  }
}

.p-price__card--featured {
  background-color: #FFFFFF;
  border: 1px solid #94A3B8;
  box-shadow: 0 0 0.8125rem #94A3B8;
}

.p-price__card-badge {
  position: absolute;
  top: -2.0625rem;
  left: 0.5rem;
  width: 100%;
  max-width: 8rem;
  flex-shrink: 0;
}
.p-price__card-badge img {
  width: 100%;
  aspect-ratio: 128/96;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-price__card-badge {
    max-width: 6.875rem;
  }
}

.p-price__card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.p-price__plan-name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-price__plan-name {
    font-size: 1.75rem;
  }
}

.p-price__plan-badge {
  width: 100%;
  max-width: 18.75rem;
  padding: 0.125rem 1.25rem;
  font-size: 1.125rem;
  color: #FFFFFF;
  background-color: #0F172A;
  border-radius: calc(infinity * 1px);
}
@media screen and (max-width: 767px) {
  .p-price__plan-badge {
    font-size: 1rem;
  }
}

.p-price__card-price {
  margin-top: 1.875rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #475569;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-price__card-price {
    margin-top: 1.5rem;
  }
}

.p-price__amount {
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-price__amount {
    font-size: 2.75rem;
  }
}

.p-price__yen,
.p-price__tax {
  font-size: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-price__yen,
  .p-price__tax {
    font-size: 1.75rem;
  }
}

.p-price__divider {
  margin: 1.875rem 0;
  border: none;
  border-top: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .p-price__divider {
    margin: 1.5rem 0;
  }
}

.p-price__features {
  padding: 0.5rem 1.25rem;
  text-align: left;
  display: inline-flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-price__features {
    padding: 0 1rem;
    gap: 0.75rem;
  }
}

.p-price__feature {
  position: relative;
  padding-left: 1.875rem;
  color: #000;
}
.p-price__feature::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #000;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-price__feature {
    padding-left: 1.5rem;
  }
}

.p-price__notes {
  text-align: left;
  padding: 0.5rem 1.875rem;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-price__notes {
    padding: 0;
  }
}

.p-price__option {
  margin-top: 2rem;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #E2E8F0;
  border: 1px solid #E2E8F0;
  line-height: 1.2;
  color: #475569;
}
@media screen and (max-width: 767px) {
  .p-price__option {
    padding: 1.25rem 1rem;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.p-price__option-label {
  font-weight: 500;
  font-size: 1.25rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-price__option-label {
    font-size: 1.125rem;
  }
}

.p-price__option-detail {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-price__option-detail {
    font-size: 1rem;
  }
}

.p-price__cta {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-price__cta {
    margin-top: 1.5rem;
  }
}

.p-price__button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: #FFFFFF;
  background-color: #3B82F6;
  border-radius: 1.25rem;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  text-align: center;
  width: 100%;
  max-width: 23.25rem;
}

.p-problem {
  padding: 7.5rem 0 10rem;
  background: linear-gradient(180deg, rgb(226, 232, 240) 0%, rgb(255, 255, 255) 30%, rgb(255, 255, 255) 85%, rgb(226, 232, 240) 100%);
}
@media screen and (max-width: 767px) {
  .p-problem {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgb(226, 232, 240) 0%, rgb(255, 255, 255) 20%, rgb(255, 255, 255) 90%, rgb(226, 232, 240) 100%);
  }
}

.p-problem__list {
  margin-top: 9.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.5rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-problem__list {
    margin-top: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1.25rem;
  }
}

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

.p-problem__figure {
  width: 100%;
  max-width: 13.125rem;
  flex-shrink: 0;
}

.p-problem__figure img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-problem__text {
  font-weight: 500;
  font-size: 1.125rem;
  color: #475569;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-problem__text {
    font-size: 0.875rem;
  }
}

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

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

.p-reason__content {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-reason__content {
    margin-top: 2.5rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.p-reason__figure {
  width: 100%;
  max-width: 40rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-reason__figure {
    margin-inline: auto;
    max-width: 25rem;
  }
}

.p-reason__figure img {
  width: 100%;
  aspect-ratio: 638/742;
  border-radius: 0.3125rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-reason__item {
  padding-top: 1.25rem;
  padding-left: 0.625rem;
  display: flex;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-reason__item {
    padding-top: revert;
    padding-left: revert;
  }
}

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

.p-reason__number {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.3;
  color: #475569;
}
@media screen and (max-width: 767px) {
  .p-reason__number {
    font-size: 1.5rem;
  }
}

.p-reason__heading {
  font-weight: 500;
  font-size: 1.5625rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-reason__heading {
    font-size: 1.25rem;
  }
}

.p-reason__text {
  margin-top: 0.5rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-reason__text {
    margin-top: 0.25rem;
    font-size: 0.875rem;
  }
}

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

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

.p-service__content {
  margin-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-service__content {
    margin-top: 2.5rem;
    flex-direction: column;
    gap: 2.5rem;
  }
}

.p-service__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.p-service__button {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 28.75rem;
}

.p-service__button a {
  display: block;
  padding: 1.375rem 1.5625rem;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.25;
  color: #FFFFFF;
  width: 100%;
  border: 1px solid #3B82F6;
  background-color: #5882c7;
  border-radius: 0.3125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service__button a {
    padding: 1rem 1.25rem;
    font-size: 1.25rem;
    width: 100%;
  }
}

.p-service__list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 25rem;
}
@media screen and (max-width: 767px) {
  .p-service__list {
    margin-top: 1.5rem;
    gap: 1.5rem;
  }
}

.p-service__item {
  padding: 0.625rem 1.25rem;
  font-size: 1.25rem;
  color: #475569;
  text-align: center;
  background-color: #FFFFFF;
  border-radius: 0.3125rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-service__item {
    font-size: 1rem;
  }
}

.p-service__img {
  margin-inline: auto;
  width: 100%;
  max-width: 36rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-service__img {
    max-width: 25rem;
  }
}

.p-service__img img {
  width: 100%;
  aspect-ratio: 576/535;
  -o-object-fit: contain;
     object-fit: contain;
}

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

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

.p-trust__cards {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-trust__cards {
    margin-top: 2.5rem;
    gap: 2.5rem;
  }
}

.p-trust__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 25.625rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-trust__card {
    grid-template-columns: minmax(0, 1fr);
  }
}

.p-trust__card-body {
  padding: 2.5rem 1.25rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(44deg, rgb(15, 23, 42) 0%, rgb(225, 225, 225) 10%, rgb(225, 225, 225) 80%, rgb(15, 23, 42) 100%);
}
@media screen and (max-width: 767px) {
  .p-trust__card-body {
    padding: 2rem 1rem;
    order: 1;
  }
}

.p-trust__heading {
  margin-inline: auto;
  width: 100%;
  max-width: 39.375rem;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-trust__heading {
    font-size: 1.5rem;
  }
}

.p-trust__text {
  margin-top: 1.5rem;
  margin-inline: auto;
  width: 100%;
  max-width: 39.375rem;
}
@media screen and (max-width: 767px) {
  .p-trust__text {
    margin-top: 1.25rem;
    font-size: 0.875rem;
  }
}

.p-trust__card-img {
  width: 100%;
  max-width: 25.625rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-trust__card-img {
    margin-inline: auto;
    max-width: 12.5rem;
    order: 0;
  }
}

.p-trust__card-img img {
  width: 100%;
  aspect-ratio: 410/320;
  -o-object-fit: contain;
     object-fit: contain;
}

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

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

.p-voice__list {
  margin-top: 4.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-voice__list {
    margin-top: 3.5rem;
    grid-template-columns: minmax(0, 1fr);
    gap: 3.75rem;
  }
}

.p-voice__item {
  position: relative;
  padding: 1.25rem 1.875rem;
  border-radius: 0.3125rem;
  box-shadow: 0.1875rem 0.3125rem 0.9375rem rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .p-voice__item {
    padding: 2.5rem 0.625rem 1rem;
  }
}

.p-voice__item-img {
  position: absolute;
  top: 0;
  left: 1.5rem;
  transform: translateY(-50%);
  width: 100%;
  max-width: 4.375rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-voice__item-img {
    left: 1rem;
    max-width: 3.75rem;
  }
}

.p-voice__item-img img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-voice__role {
  font-size: 1.125rem;
  color: #475569;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-voice__role {
    font-size: 1rem;
  }
}

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

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