@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: 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-weight: 400;
  color: #000000;
  letter-spacing: 0;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
}

button {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0;
  line-height: 1.4;
  text-decoration: none;
  border: none;
  outline: none;
  cursor: pointer;
}

main {
  flex-grow: 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 fadeInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInFromBottom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.l-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

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

.c-button {
  padding: 1rem 2rem;
  background-color: #d6e3f1;
  outline: 1px solid rgba(25, 25, 25, 0.3);
  outline-offset: -1px;
  border-radius: 2.25rem;
  font-size: 1.25rem;
  display: inline-block;
  width: 100%;
  max-width: 15.3125rem;
  text-align: center;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .c-button {
    font-size: 1.125rem;
  }
}
.c-button:hover {
  opacity: 0.7;
}

.c-title {
  font-weight: 500;
  font-size: 2.3125rem;
  color: #050a30;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 1.375rem;
  }
}

.p-404 {
  padding: 12.5rem 0 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-404 {
    padding: 7.5rem 0 2.5rem;
  }
}

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

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

.p-company-profile {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-company-profile {
    display: block;
  }
}

.p-company-profile__list-wrap {
  max-width: 37.5rem;
  width: 100%;
  outline: 1px solid #d9d9d9;
  outline-offset: -1px;
}
@media screen and (max-width: 767px) {
  .p-company-profile__list-wrap {
    max-width: initial;
  }
}

.p-company-profile__list {
  display: flex;
  align-items: center;
  background-color: #ebebeb;
}

.p-company-profile__list + .p-company-profile__list {
  border-top: 1px solid #d9d9d9;
}

.p-company-profile__term {
  max-width: 7.5rem;
  width: 100%;
  font-weight: 500;
  text-align: center;
}

.p-company-profile__description {
  padding: 0.625rem 1.25rem;
  flex: 1;
  font-size: 0.9375rem;
  background-color: #ffffff;
  border-left: 1px solid #d9d9d9;
}

.p-company-profile__map-wrap {
  flex: 1;
  max-width: 25rem;
}
@media screen and (max-width: 767px) {
  .p-company-profile__map-wrap {
    margin-top: 2.5rem;
    max-width: initial;
  }
}

.p-company-profile__map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 60%;
}

.p-company-profile__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

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

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

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

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

.p-cta__button-wrap a {
  opacity: 0;
}

.p-cta__button-wrap a.is-active {
  animation: fadeIn 0.3s ease-out forwards;
}

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

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

.p-flow__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
}

.p-flow__step.is-active {
  animation: fadeIn 0.3s ease-out forwards;
}

.p-flow__step-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #050a30;
}
@media screen and (max-width: 767px) {
  .p-flow__step-title {
    font-size: 1rem;
  }
}

.p-flow__step-img {
  margin-top: 1.25rem;
  width: 100%;
  max-width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-flow__step-img {
    max-width: 9.375rem;
    margin-top: 1rem;
  }
}

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

.p-flow__step-text {
  margin-top: 1.25rem;
  color: #050a30;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-flow__step-text {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
}

.p-flow__arrow {
  position: absolute;
  pointer-events: none;
  top: 50%;
  right: -3.125rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 0.125rem;
  background-color: #050a30;
}
@media screen and (max-width: 767px) {
  .p-flow__arrow {
    display: none;
  }
}
.p-flow__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 0.3125rem solid transparent;
  border-bottom: 0.3125rem solid transparent;
  border-left: 0.625rem solid #050a30;
}

.p-footer {
  padding: 2.5rem 0;
  background-color: #f5f4f6;
}

.p-footer__inner {
  max-width: 1250px;
  margin-inline: auto;
  padding: 0 25px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    padding: 0 16px;
  }
}

.p-footer__logo {
  font-family: "Inter", sans-serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: #333;
}

.p-footer__logo a {
  padding: 0.625rem;
}

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

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

.p-footer__nav-item + .p-footer__nav-item {
  border-left: 1px solid #333;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item + .p-footer__nav-item {
    border-left: none;
  }
}

.p-footer__nav-item a {
  padding: 0 1rem;
  font-size: 1.0625rem;
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s;
}
.p-footer__nav-item a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item a {
    display: block;
    font-size: 1rem;
    padding: 0.5rem 0;
  }
}

.p-footer__sns {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}

.p-footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.p-footer__sns-link:hover {
  opacity: 0.7;
}

.p-footer__sns-icon {
  width: 1.875rem;
  height: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__sns-icon {
    width: 1.5625rem;
    height: 1.5625rem;
  }
}

.p-footer__sns-icon--x {
  color: #000000;
}

.p-header {
  height: 5rem;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 3.75rem;
  }
}

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

.p-header__logo {
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: 6.25rem;
  }
}

.p-header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo a {
    font-size: 2rem;
  }
}
.p-header__logo a:hover {
  opacity: 1;
}

.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 a {
  padding: 0 0.9375rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 1.125rem;
}

.p-header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 2.8125rem;
  height: 2.8125rem;
  background-color: #f6efe7;
  border-radius: 50%;
  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: #ccb7a3;
  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 0;
  position: absolute;
  z-index: 900;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100svh;
  background-color: rgba(245, 245, 245, 0.95);
  overflow-y: scroll;
  scrollbar-width: none;
  transition: 0.6s;
}

.p-header__drawer.is-open {
  right: 0;
}

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

.p-header__drawer-item a {
  padding: 1.25rem 0;
  display: block;
  font-size: 1.75rem;
  font-weight: 500;
  color: #ccb7a3;
  text-align: center;
}

.p-hero {
  padding: 6.25rem 0 5rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-hero {
    padding: initial;
    height: auto;
  }
}

.p-hero__inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-hero__inner {
    max-width: 1250px;
    flex-direction: column;
    min-height: 100svh;
    height: auto;
    position: relative;
  }
}

.p-hero__img {
  flex: 1;
  width: 100%;
  max-width: 28.125rem;
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInFromLeft 0.8s ease-out forwards;
}
@media screen and (max-width: 767px) {
  .p-hero__img {
    max-width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.p-hero__img img {
  width: 100%;
  aspect-ratio: 305/450;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-hero__img img {
    height: 100%;
  }
}

.p-hero__content {
  flex: 1;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInFromBottom 0.8s ease-out 0.8s forwards;
}
@media screen and (max-width: 767px) {
  .p-hero__content {
    padding: 5rem 0;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    z-index: 1;
  }
}

@media screen and (max-width: 767px) {
  .p-hero__text-wrap {
    padding: 0.625rem 0.75rem;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.4);
  }
}

.p-hero__title {
  font-size: 2.3125rem;
  font-weight: 500;
  color: #050a30;
}
@media screen and (max-width: 767px) {
  .p-hero__title {
    font-size: 1.75rem;
  }
}

.p-hero__text {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 400;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-hero__text {
    font-size: 1rem;
  }
}

.p-hero__button-wrap {
  margin-top: 3.75rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-hero__button-wrap {
    margin-top: 2rem;
    gap: 1rem;
  }
}

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

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

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

.p-law__profile .p-company-profile__list-wrap {
  max-width: initial;
}

.p-law__profile .p-company-profile__term {
  max-width: 15.625rem;
}
@media screen and (max-width: 767px) {
  .p-law__profile .p-company-profile__term {
    max-width: 8.75rem;
  }
}

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

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

.p-law__description-text,
.p-law .wp-block-paragraph {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.8;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #afafaf;
}
@media screen and (max-width: 767px) {
  .p-law__description-text,
  .p-law .wp-block-paragraph {
    font-size: 1rem;
    padding-bottom: 1.25rem;
  }
}

.p-law .wp-block-heading {
  font-weight: 500;
  margin-top: 2.5rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-law .wp-block-heading {
    margin-top: 2rem;
    font-size: 1.125rem;
  }
}

.p-law .wp-block-list {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.8;
  padding-left: 1.2em;
}
@media screen and (max-width: 767px) {
  .p-law .wp-block-list {
    font-size: 1rem;
  }
}

.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 16px;
    max-width: calc(31.25rem + 32px);
  }
}

.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: #afafaf;
  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: #f5f5f5;
}

.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: #afafaf;
  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-plan {
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .p-plan {
    padding: 2.5rem 0;
  }
}

.p-plan__text {
  margin-top: 1.5rem;
  font-size: 1rem;
  text-align: center;
}

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

.p-plan__section-title {
  font-size: 1.125rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.p-plan__section-title::before,
.p-plan__section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #000000;
}
.p-plan__section-title::before {
  margin-right: 0.75rem;
}
.p-plan__section-title::after {
  margin-left: 0.75rem;
}

.p-plan__plans {
  margin-top: 2.5rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-plan__plans {
    margin-top: 2rem;
    flex-direction: column;
    gap: 1.5rem;
  }
}

.p-plan__plan-box {
  flex: 1;
  max-width: 31.25rem;
  padding: 1.25rem 0;
  background-color: #d6e3f1;
  border: 4px solid #737373;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-plan__plan-box {
    max-width: 100%;
    border: 3px solid #737373;
  }
}

.p-plan__plan-box.is-active {
  animation: fadeIn 0.3s ease-out forwards;
}

.p-plan__plan-name {
  margin-inline: auto;
  padding: 0 1rem 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.25rem;
  font-weight: 400;
  text-align: center;
  border-bottom: 2px dotted #a6a6a6;
}
@media screen and (max-width: 767px) {
  .p-plan__plan-name {
    font-size: 1.125rem;
  }
}

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

.p-plan__plan-list {
  margin-top: 1.5rem;
  padding-bottom: 1.5rem;
  text-align: center;
}

.p-plan__plan-price {
  margin-top: auto;
  padding-top: 1.25rem;
  text-align: center;
  font-size: 1.375rem;
  color: #ff8ca5;
  border-top: 1px solid #a6a6a6;
}
@media screen and (max-width: 767px) {
  .p-plan__plan-price {
    font-size: 1.25rem;
  }
}

.p-plan__plan-price-main,
.p-plan__plan-price-tax {
  display: block;
}

.p-plan__option-text {
  margin-top: 1rem;
  font-size: 1rem;
  text-align: center;
}

.p-plan__options {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-plan__options {
    margin-top: 2rem;
    flex-direction: column;
  }
}

.p-plan__option-box {
  flex: 1;
  max-width: 20rem;
  padding: 1.25rem 0;
  border: 4px solid #737373;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-plan__option-box {
    max-width: 100%;
    border: 3px solid #737373;
  }
}

.p-plan__option-box.is-active {
  animation: fadeIn 0.3s ease-out forwards;
}

.p-plan__option-box:last-child {
  background-color: #d6e3f1;
}

.p-plan__option-name {
  padding: 0 1rem 0.5rem;
  font-weight: 400;
  text-align: center;
  border-bottom: 2px dotted #a6a6a6;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-plan__option-label {
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-plan__option-label {
    margin-top: 1.125rem;
  }
}

.p-plan__option-desc {
  margin-top: 0.5rem;
  padding-bottom: 1.25rem;
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-plan__option-desc {
    padding-bottom: 1.125rem;
  }
}

.p-plan__option-price {
  margin-top: auto;
  padding-top: 1.25rem;
  text-align: center;
  border-top: 1px solid #a6a6a6;
}

.p-plan__option-price-main {
  display: block;
  color: #ff8ca5;
}

.p-plan__option-price-tax {
  display: block;
  color: #ff8ca5;
}

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

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

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

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

.p-privacy__description-text,
.p-privacy .wp-block-paragraph {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.8;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #afafaf;
}
@media screen and (max-width: 767px) {
  .p-privacy__description-text,
  .p-privacy .wp-block-paragraph {
    font-size: 1rem;
    padding-bottom: 1.25rem;
  }
}

.p-privacy .wp-block-heading {
  font-weight: 500;
  margin-top: 2.5rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-privacy .wp-block-heading {
    margin-top: 2rem;
    font-size: 1.125rem;
  }
}

.p-privacy .wp-block-list {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.8;
  padding-left: 1.2em;
}
@media screen and (max-width: 767px) {
  .p-privacy .wp-block-list {
    font-size: 1rem;
  }
}

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

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

.p-strengths__card {
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 2.25rem;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-strengths__card {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
}

.p-strengths__card.is-active {
  animation: fadeIn 0.3s ease-out forwards;
}

.p-strengths__card-img {
  width: 100%;
  max-width: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-strengths__card-img {
    max-width: 1.875rem;
  }
}

.p-strengths__card-img img {
  width: 100%;
  aspect-ratio: 1/1;
}

.p-strengths__card-title {
  margin-top: 0.5rem;
  padding: 0.375rem 0 0.375rem 0.625rem;
  font-weight: 500;
  font-size: 1.125rem;
  color: #050a30;
  border-left: 2px solid #b4b4b4;
}
@media screen and (max-width: 767px) {
  .p-strengths__card-title {
    font-size: 1rem;
  }
}

.p-strengths__card-text {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: #050a30;
}

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

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

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

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

.p-terms__description-text,
.p-terms .wp-block-paragraph {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.8;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #afafaf;
}
@media screen and (max-width: 767px) {
  .p-terms__description-text,
  .p-terms .wp-block-paragraph {
    font-size: 1rem;
    padding-bottom: 1.25rem;
  }
}

.p-terms .wp-block-heading {
  font-weight: 500;
  margin-top: 2.5rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-terms .wp-block-heading {
    margin-top: 2rem;
    font-size: 1.125rem;
  }
}

.p-terms .wp-block-list {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.8;
  padding-left: 1.2em;
}
@media screen and (max-width: 767px) {
  .p-terms .wp-block-list {
    font-size: 1rem;
  }
}

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

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

.p-voice__item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-voice__item {
    gap: 1rem;
  }
}

.p-voice__item.is-active {
  animation: fadeIn 0.3s ease-out forwards;
}

.p-voice__item:nth-child(2n) {
  flex-direction: row-reverse;
}

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

.p-voice__item-header {
  text-align: center;
}

.p-voice__item-rating {
  font-size: 1.125rem;
  font-weight: 500;
  color: #d6e3f1;
}
@media screen and (max-width: 767px) {
  .p-voice__item-rating {
    font-size: 1rem;
  }
}

.p-voice__item-user {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #050a30;
}
@media screen and (max-width: 767px) {
  .p-voice__item-user {
    font-size: 0.75rem;
  }
}

.p-voice__item-img {
  margin-top: 0.5rem;
  width: 100%;
  max-width: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-voice__item-img {
    max-width: 3.75rem;
  }
}

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

.p-voice__item-bubble {
  margin-top: 3rem;
  width: 100%;
  max-width: 37.5rem;
  position: relative;
  padding: 1.25rem 1.5rem;
  border-radius: 2rem;
  border: 1px solid #000000;
}
@media screen and (max-width: 767px) {
  .p-voice__item-bubble {
    margin-top: initial;
    padding: 0.625rem 1rem;
    border-radius: 1.5rem;
    width: 100%;
  }
}
.p-voice__item:not(:nth-child(2n)) .p-voice__item-bubble::before {
  content: "";
  position: absolute;
  left: -0.6875rem;
  top: 1.875rem;
  transform: rotate(45deg);
  width: 1.25rem;
  height: 1.25rem;
  background-color: #ffffff;
  border-left: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
@media screen and (max-width: 767px) {
  .p-voice__item:not(:nth-child(2n)) .p-voice__item-bubble::before {
    left: -0.5625rem;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 1rem;
    height: 1rem;
  }
}
.p-voice__item:nth-child(2n) .p-voice__item-bubble::before {
  content: "";
  position: absolute;
  right: -0.6875rem;
  top: 1.875rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #ffffff;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .p-voice__item:nth-child(2n) .p-voice__item-bubble::before {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    right: -0.5625rem;
    width: 1rem;
    height: 1rem;
  }
}

.p-voice__item-text {
  line-height: 1.8;
  color: #050a30;
}
@media screen and (max-width: 767px) {
  .p-voice__item-text {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

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

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

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

.p-works__content-title {
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #050a30;
  border-bottom: 1px solid #000000;
}
@media screen and (max-width: 767px) {
  .p-works__content-title {
    font-size: 1.25rem;
  }
}

.p-works__content-title-img {
  width: 100%;
  max-width: 2rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .p-works__content-title-img {
    max-width: 1.5rem;
  }
}

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

.p-works__content-description {
  margin-top: 2rem;
  font-size: 1.125rem;
  color: #050a30;
}
@media screen and (max-width: 767px) {
  .p-works__content-description {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.p-works__content-case-title {
  display: block;
  margin-top: 2rem;
  font-size: 1.125rem;
  color: #050a30;
}
@media screen and (max-width: 767px) {
  .p-works__content-case-title {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.p-works__content-img-box {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-works__content-img-box {
    margin-top: 1.25rem;
    gap: 0.625rem;
    flex-direction: column;
  }
}

.p-works__content-item:nth-child(2) .p-works__content-img-box {
  margin-top: 0.5rem;
}

.p-works__content-img {
  padding: 1.25rem 1.25rem 0;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-works__content-img {
    padding: 0.625rem 0.625rem 0;
  }
}

.p-works__content-img--before {
  border: 1px solid #000000;
}

.p-works__content-img--after {
  margin-left: 2rem;
  border: 4px solid #d6e3f1;
}
@media screen and (max-width: 767px) {
  .p-works__content-img--after {
    margin-left: initial;
  }
}

.p-works__content-img img {
  width: 100%;
  aspect-ratio: 550/309;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.p-works__content-img figcaption {
  margin-top: -1.25rem;
  font-family: "Inter", sans-serif;
  font-size: 2.25rem;
}

.p-works__content-img--before figcaption {
  font-weight: 300;
  color: #000000;
  text-shadow:
    -1px -1px 0 #ffffff,
    0 -1px 0 #ffffff,
    1px -1px 0 #ffffff,
    -1px 0 0 #ffffff,
    1px 0 0 #ffffff,
    -1px 1px 0 #ffffff,
    0 1px 0 #ffffff,
    1px 1px 0 #ffffff;
}

.p-works__content-img--after figcaption {
  font-weight: 500;
  color: #d6e3f1;
  text-shadow:
    -1px -1px 0 #ffffff,
    0 -1px 0 #ffffff,
    1px -1px 0 #ffffff,
    -1px 0 0 #ffffff,
    1px 0 0 #ffffff,
    -1px 1px 0 #ffffff,
    0 1px 0 #ffffff,
    1px 1px 0 #ffffff;
}

.p-works__content-arrow {
  display: inline-block;
  width: 5rem;
  height: 3.75rem;
  background: #d6e3f1;
  clip-path: polygon(
    0 27.9%,
    58.7% 27.9%,
    58.7% 0,
    100% 50%,
    58.7% 100%,
    58.7% 72.1%,
    0 72.1%
  );
}
@media screen and (max-width: 767px) {
  .p-works__content-arrow {
    width: 3.125rem;
    height: 3.125rem;
    clip-path: polygon(
      0 54.7%,
      27.9% 54.7%,
      27.9% 0,
      72.1% 0,
      72.1% 54.7%,
      100% 54.7%,
      50% 100%
    );
  }
}

.p-works__content-text-box {
  margin-top: 1.5rem;
  margin-inline: auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 50rem;
  background-color: #d6e3f1;
  border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-works__content-text-box {
    flex-direction: column;
    margin-top: 1.25rem;
    padding: 1rem 1.125rem;
    border-radius: 1.125rem;
  }
}

.p-works__content-text-box h4 {
  flex: 1;
  font-weight: 400;
  font-size: 1.5rem;
  color: #050a30;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-works__content-text-box h4 {
    flex: none;
    font-size: 1.25rem;
  }
}

.p-works__content-text-box p {
  flex: 4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-works__content-text-box p {
    flex: none;
    margin-top: 1rem;
    text-align: left;
  }
}

.p-works__content-title,
.p-works__content-description,
.p-works__content-img,
.p-works__content-arrow,
.p-works__content-case-title,
.p-works__content-text-box {
  opacity: 0;
}

.p-works__content-title.is-active,
.p-works__content-description.is-active,
.p-works__content-img.is-active,
.p-works__content-arrow.is-active,
.p-works__content-case-title.is-active,
.p-works__content-text-box.is-active {
  animation: fadeIn 0.3s ease-out forwards;
}

.p-worry {
  position: relative;
  padding: 3.75rem 0;
  background-color: #eff3f8;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .p-worry {
    padding: 2.5rem 0;
  }
}

.p-worry__bg {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 40.625rem;
  aspect-ratio: 1/1;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-worry__bg {
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 37.5rem;
  }
}

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

.p-worry__content {
  margin-top: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6.25rem;
}

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

.p-worry__item {
  width: 12.5rem;
  height: 12.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 0 1.5rem -0.625rem #000000;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-worry__item {
    width: 9.375rem;
    height: 9.375rem;
    box-shadow: 0 0 1.125rem -0.5rem #000000;
  }
}

.p-worry__item.is-active {
  animation: fadeIn 0.3s ease-out forwards;
}

.p-worry__item-text {
  color: #050a30;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-worry__item-text {
    font-size: 0.875rem;
  }
}

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

.p-worry__img img {
  width: 100%;
  aspect-ratio: 1/2;
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

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