@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap");

/* ============================
/* Color
/* ========================= */

:root {
  --theme-base-bg: var(--theme-bg-sky-blue);
  --theme-base-text: var(--theme-black);
  --theme-base-reverse-text: var(--theme-white);
  --theme-base-subtext: var(--theme-gray);
  --theme-base-brown-text: var(--theme-brown);
  --theme-base-blue-text: var(--theme-blue-4);
  --theme-link-text: #3e289b;
  --theme-bg-sky-blue: #d9eef4;
  --theme-bg-blue: #00b6dc;
  --theme-bg-white: #ffffff;
  --theme-bg-lightgray: #f3f4f6;
  --theme-bg-footer: #3f3f3f;
  --theme-bg-footer-nav: #595959;
  --theme-black: #333333;
  --theme-white: #ffffff;
  --theme-white-2: #fafafa;
  --theme-brown: #4d430a;
  --theme-gray: #555555;
  --theme-gray-2: #999999;
  --theme-gray-3: #dddddd;
  --theme-lightgray: #f3f4f6;
  --theme-lightgray-2: #f9f9f9;
  --theme-blue-1: #00a4c5;
  --theme-blue-2: #0282ba;
  --theme-blue-3: #00b6dc;
  --theme-blue-4: #0386a0;
  --theme-blue-5: #0190ad;
  --theme-blue-6: #00a4c5;
  --theme-blue-7: #0386a0;
  --theme-blue-8: #006c9a;
  --theme-skyblue: #9ad3e2;
  --theme-skyblue-2: #65ceea;
  --theme-yellow-1: #f7df03;
  --theme-yellow-2: #fff762;
  --theme-yellow-3: #fbef81;
  --theme-yellow-4: #ffdc74;
  --theme-button-primary: #f7a603;
  --theme-button-primary-rgb: 224 63 23;
  --theme-button-secondary-rgb: 42 110 152;
  --theme-black-rgb: 11 1 10;

  --theme-red-1: #d20a16;
  --theme-red-2: #b10010;
  --theme-pink: #9ad3e2;
  --theme-white-3: #4d430a;
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

/* ============================
/* base
/* ========================= */

html {
  font-size: 16px;
}

body {
  background-color: var(--theme-base-bg);
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: max(0.875rem, 12px);
  line-height: 2;
  letter-spacing: 0;
  color: var(--theme-base-text);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

body .scroll-hint-icon {
  height: auto;
  z-index: 2;
}

body .paragraph + .paragraph {
  margin-top: 1lh;
}

body .paragraph + .paragraph.paragraph--sp {
  margin-top: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a[href^="tel:"] {
  pointer-events: none;
}

/* ============================
/* Reset
/* ========================= */

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
  padding: 0;
}

/* Remove default margin */

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

/* Set core root defaults */

/* Set core body defaults */

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  background-color: #d9eef4;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */

img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.f_bold {
  font-weight: bold !important;
}
.f12 {
  font-size: 0.625vw !important;
} /* ≒ 12px */
.f14 {
  font-size: 0.73vw !important;
} /* ≒ 14px */
.f16 {
  font-size: 0.83vw !important;
} /* ≒ 16px */
.f18 {
  font-size: 0.94vw !important;
} /* ≒ 18px */
.f20 {
  font-size: 1.04vw !important;
} /* ≒ 20px */
.f22 {
  font-size: 1.15vw !important;
} /* ≒ 22px */
.f24 {
  font-size: 1.25vw !important;
} /* ≒ 24px */
.f26 {
  font-size: 1.35vw !important;
} /* ≒ 26px */
.f28 {
  font-size: 1.46vw !important;
} /* ≒ 28px */
.f30 {
  font-size: 1.56vw !important;
} /* ≒ 30px */

@media screen and (max-width: 768px) {
  .f12 {
    font-size: 12px !important;
  }
  .f14 {
    font-size: 10px !important;
  }
  .f16 {
    font-size: 12px !important;
  }
  .f18 {
    font-size: 10px !important;
  }
  .f20 {
    font-size: 12px !important;
  }
  .f22 {
    font-size: 14px !important;
  }
  .f24 {
    font-size: 16px !important;
  }
  .f26 {
    font-size: 18px !important;
  }
  .f28 {
    font-size: 20px !important;
  }
  .f30 {
    font-size: 22px !important;
  }
}

/* form reset */

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

button {
  padding: 0;
}

input[type="checkbox"],
input[type="radio"] {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  vertical-align: middle;
}

input[type="checkbox"]:focus-visible + span,
input[type="radio"]:focus-visible + span {
  outline: -webkit-focus-ring-color auto 5px;
}

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

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

.l-footer {
  width: 100%;
}

.l-header {
  width: 100%;
}

.l-inner {
  max-width: 65.5rem;
  width: 100%;
  padding-inline: 4rem;
  margin-inline: auto;
}

.l-inner.l-inner--wide {
  max-width: 75.5rem;
}

.l-main {
  width: 100%;
}

.c-blue-text {
  color: var(--theme-base-blue-text);
}

.tableStyle04 tbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}

.tableStyle04 tr th,
.tableStyle04 tr td {
  padding: 0;
  border: none;
}

.tableStyle04 tr th {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
}

.tableStyle04 tr th .form_require {
  padding: 0.1875rem 0.5rem;
  background-color: var(--theme-yellow-1);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.625rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--theme-base-brown-text);
  text-align: center;
}

.tableStyle04 tr td {
  margin-top: 0.5rem;
  display: block;
  width: 100%;
}

.tableStyle04 tr td input {
  width: 40rem;
  max-width: 100%;
  border: 0.0625rem solid var(--theme-gray-3);
  padding: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0;
  background-color: var(--theme-bg-white);
}

.tableStyle04 tr textarea {
  padding: 1.625rem 1.25rem 0;
  width: 40rem;
  max-width: 100%;
  border: 0.0625rem solid var(--theme-gray-3);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
  background-color: var(--theme-bg-white);
}

tr td input[type="checkbox"] {
  cursor: pointer;
  width: 100%;
  height: 100%;
}

tr td input[type="checkbox"] + a {
  position: relative;
  display: inline-block;
  color: var(--theme-blue-4);
  text-decoration-line: underline;
  margin-left: 1.875rem;
}

tr td input[type="checkbox"] + a:hover {
  text-decoration-line: none;
}

tr td:has(input[type="checkbox"]) {
  width: 100%;
  display: block;
  position: relative;
}

tr td:has(input[type="checkbox"])::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0.5625rem;
  left: 0;
  display: block;
  width: 0.9375rem;
  height: 0.9375rem;
  aspect-ratio: 1/1;
  background-color: var(--theme-bg-white);
  border: 0.0625rem solid var(--theme-gray-3);
  border-radius: 0.25rem;
}

tr td:has(input[type="checkbox"])::after {
  pointer-events: none;
  content: "";
  position: absolute;
  display: block;
  opacity: 0;
  top: 0.6875rem;
  left: 0.125rem;
  width: 0.59375rem;
  height: 0.34375rem;
  border-left: 1.5px solid var(--theme-black);
  border-bottom: 1.5px solid var(--theme-black);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

tr td:has(input[type="checkbox"]:checked)::after {
  opacity: 1;
}

.button_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: calc(10 / 16 * 1rem);
  margin-inline: auto;
  margin-top: 3.5rem;
  background-color: var(--theme-button-primary);
  border-radius: 2.25rem;
  width: max-content;
  max-width: 100%;
  padding-block: 1rem;
  padding-inline: calc(34 / 16 * 1rem) calc(8 / 16 * 1rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--theme-black);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  &::after {
    content: "";
    display: block;
    width: calc(24 / 16 * 1rem);
    aspect-ratio: 1/1;
    background-image: url(./lib/images/top/icon_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.button_wrap:hover {
  opacity: 0.7;
}

.p-case-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
  width: 38.9375rem;
  max-width: 100%;
}

.p-case-list__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1rem;
}

.p-case-list__content:nth-child(5) {
  grid-column: 2/4;
}

.p-case-list__content:last-child {
  grid-column: 1/-1;
}

.p-case-list__term {
  color: var(--theme-base-reverse-text);
  padding: 0.0625rem 0.625rem;
  width: 6.625rem;
  background-color: var(--theme-blue-2);
  text-align: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-case-list__term2 {
  color: var(--theme-base-reverse-text);
  padding: 0.0625rem 0.625rem;
  width: 9.625rem;
  background-color: var(--theme-blue-2);
  text-align: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-case-list__term,
.p-case-list__term2,
.p-case-list__detail {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  font-size: 1rem;
}

.p-case {
  margin-top: 0rem;
  padding-top: 0rem;
  padding-bottom: 6.25rem;
  position: relative;
  background-color: var(--theme-blue-1);
}

.p-case::before {
  z-index: 0;
  pointer-events: none;
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(./lib/images/top/section-bg.png);
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
  mix-blend-mode: multiply;
}

.p-case__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3rem;
}

.p-case__title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.875rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--theme-base-reverse-text);
}

.p-case__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3rem;
}

.p-case__item {
  position: relative;
  height: 20.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-case__item:nth-child(odd) {
  padding-left: 7.5rem;
  background-image: url(./lib/images/top/case-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-filter: drop-shadow(1.5rem 1.5rem 0 var(--theme-blue-5));
  filter: drop-shadow(1.5rem 1.5rem 0 var(--theme-blue-5));
}

.p-case__item:nth-child(odd) .p-case__item-img {
  top: 2.0625rem;
  left: 48rem;
}

.p-case__item:nth-child(even) {
  padding-left: 18.75rem;
  background-image: url(./lib/images/top/case-2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-filter: drop-shadow(-1.5rem 1.5rem 0 var(--theme-blue-5));
  filter: drop-shadow(-1.5rem 1.5rem 0 var(--theme-blue-5));
}

.p-case__item:nth-child(even) .p-case__item-img {
  top: 2.625rem;
  left: 4.375rem;
}

.p-case__item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}

.p-case__item-heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--theme-blue-2);
}

.p-case__item-img {
  position: absolute;
  max-width: 100%;
  width: 12.5rem;
  height: auto;
}

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

.p-contact {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  background-color: var(--theme-blue-1);
}

.p-contact::before {
  z-index: 0;
  pointer-events: none;
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(./lib/images/top/section-bg.png);
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
  mix-blend-mode: multiply;
}

.p-contact__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}

.p-contact__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}

.p-contact__heading-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.875rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--theme-base-reverse-text);
}

.p-contact__heading-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.p-contact__heading-text,
.p-contact__heading-text-small {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--theme-base-reverse-text);
}

.p-contact__heading-text {
  font-weight: 700;
  font-size: 1.25rem;
}

.p-contact__heading-text-small {
  font-weight: 500;
  font-size: 1rem;
}

.p-contact__content {
  position: relative;
  z-index: 1;
  padding: 5rem 8.75rem;
  background-color: var(--theme-white-2);
}

.p-faq {
  padding-bottom: 6.25rem;
}

.p-faq__heading {
  margin-inline: auto;
  background-image: url(./lib/images/top/fukidashi-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 57.5rem;
  height: 13.9375rem;
  max-width: 100%;
}

.p-faq__heading-text {
  padding-top: 3.125rem;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--theme-base-reverse-text);
}

.p-faq__container {
  background-color: var(--theme-bg-white);
  padding: 4rem 6.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
}

.p-faq__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.875rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--theme-gray);
}

.p-faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
}

.p-faq__item {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

.p-faq__item + .p-faq__item {
  padding-top: 0.5rem;
  border-top: 1px solid var(--theme-lightgray);
}

.p-faq__question {
  position: relative;
}

.p-faq__question-text,
.p-faq__answer-text {
  padding: 1rem 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
}

.p-faq__question-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
}

.p-faq__question-text::before {
  content: "Q";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-top: 0.5rem;
  text-align: center;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.125;
  letter-spacing: 0;
  color: var(--theme-base-reverse-text);
  background-color: var(--theme-blue-6);
  width: 2.25rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.p-faq-list__switch {
  position: absolute;
  display: block;
  top: 50%;
  right: 1.5rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1rem;
  aspect-ratio: 1/1;
}

.p-faq-list__switch > span {
  width: 100%;
  height: 0.125rem;
  border-radius: 100vh;
  background-color: var(--theme-gray-2);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

.p-faq-list__switch > span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-faq__item.is-open .p-faq-list__switch > span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
  opacity: 0;
}

.p-faq__answer {
  overflow: hidden;
  height: 0;
}

.p-faq__answer-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.5rem;
  font-weight: 500;
}

.p-faq__answer-text::before {
  content: "A";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-top: 0.5rem;
  text-align: center;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.125;
  letter-spacing: 0;
  color: var(--theme-base-reverse-text);
  background-color: var(--theme-yellow-1);
  width: 2.25rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.p-flow {
  padding-top: 6.25rem;
  padding-bottom: 3.5625rem;
}

.p-flow__container {
  background-color: var(--theme-bg-white);
  padding: 4rem 6.25rem;
}

.p-flow__title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.875rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--theme-gray);
}

.p-flow__list {
  margin-top: 3.5rem;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 2rem 3rem;
}

.p-flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}

.p-flow__item:not(:last-child)::after {
  content: "";
  display: block;
  background-color: var(--theme-blue-6);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  max-width: 100%;
  width: 2.1875rem;
  height: 1.125rem;
}

.p-flow-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2rem;
  height: 100%;
}

.p-flow__item-img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 100%;
  width: 10rem;
  aspect-ratio: 1/1;
  -webkit-box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.08);
}

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

.p-flow__item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
}

.p-flow__heading-wrap {
  display: contents;
}

.p-flow__item-num {
  -webkit-clip-path: polygon(0.5625rem 0rem, 100% 0rem, calc(100% - 0.5625rem) 100%, 0rem 100%);
  clip-path: polygon(0.5625rem 0rem, 100% 0rem, calc(100% - 0.5625rem) 100%, 0rem 100%);
  background-color: var(--theme-yellow-1);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3125rem 1.125rem;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--theme-white-3);
}

.p-flow__item-text,
.p-flow__item-heading {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}

.p-flow__item-heading {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1;
}

.p-flow__item-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
}


.p-footer-menu {
  padding-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 38.125rem;
  gap: 0.5rem 2.5rem;
}

.p-footer-menu a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--theme-base-reverse-text);
  -webkit-transform: color 0.3s;
          transform: color 0.3s;
}

.p-footer-menu a:hover {
  color: var(--theme-link-text);
}

.p-footer-copy {
  padding: 1.5rem;
  background-color: var(--theme-bg-footer);
}

.p-footer-copy__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--theme-base-reverse-text);
  text-align: center;
}

.p-footer {
  padding-top: 2.5rem;
  background-color: var(--theme-bg-footer-nav);
}

.p-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7.5rem;
  padding-bottom: 2.875rem;
}

.p-footer__logo {
  max-width: 100%;
  width: 12.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

.p-footer__body-term {
  padding: 0.125rem 0.3125rem;
  width: 7rem;
  background-color: var(--theme-bg-white);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--theme-gray);
}

/*
.p-footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 48.125rem;
  gap: 0.5rem 2.5rem;
}

.p-footer-menu a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--theme-base-reverse-text);
  -webkit-transform: color 0.3s;
  transform: color 0.3s;
}

.p-footer-menu a:hover {
  color: var(--theme-skyblue);
}

.p-footer-copy {
  padding: 1.5rem;
  background-color: var(--theme-bg-footer);
}

.p-footer-copy__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--theme-base-reverse-text);
  text-align: center;
}

.p-footer {
  padding-top: 2.5rem;
  background-color: var(--theme-bg-footer-nav);
}

.p-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 3rem;
}

.p-footer__logo {
  max-width: 100%;
  width: 12.5rem;
}

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

.p-footer__content {
  margin-left: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.5rem;
}

.p-footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.5rem;
}

.p-footer__body-term {
  padding: 0.125rem 0.3125rem;
  width: 7rem;
  background-color: var(--theme-bg-white);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--theme-gray);
}
*/

.p-fv {
  position: relative;
  width: calc(1080 / 16 * 1rem);
  max-width: 1080px;
  margin-inline: auto;
  padding-bottom: calc(80 / 16 * 1rem);
  height: 46.875vw;
  max-height: 675px;
}

.p-fv__inner {
  height: inherit;
  padding-top: calc(142 / 16 * 1rem);
  padding-left: calc(30 / 16 * 1rem);
}

.p-fv__img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  max-width: 100%;
  width: calc(471 / 16 * 1rem);
}

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

.p-fv__text {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  position: relative;
  background-color: var(--theme-yellow-2);
  padding: calc(8 / 16 * 1rem) calc(24 / 16 * 1rem) calc(8 / 16 * 1rem) calc(8 / 16 * 1rem);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: calc(24 / 16 * 1rem);
  line-height: 1.3;
  .tight {
    letter-spacing: -0.32em;
  }
}

.p-fv__title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  margin-top: calc(32 / 16 * 1rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(3 / 16 * 1rem);
  font-size: calc(66 / 16 * 1rem);
  line-height: calc(79 / 66);
  color: var(--theme-base-reverse-text);
  text-shadow: 0 0 0.5555555556vw var(--theme-blue-2);
  span {
    display: block;
  }
}

.p-fv__point {
  margin-top: calc(54 / 16 * 1rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(12 / 16 * 1rem);
}

.p-fv__point-item {
  position: relative;
  background-color: var(--theme-white);
  width: calc(122 / 16 * 1rem);
  aspect-ratio: 1/1;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.p-fv__point-item::after {
  position: absolute;
  content: "";
  inset: calc(4 / 16 * 1rem);
  border-radius: 50%;
  border: calc(2 / 16 * 1rem) solid var(--theme-blue-1);
  pointer-events: none;
}

.p-fv__point-img {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translate(-50%, -50%);
  max-width: 100%;
  width: calc(44 / 16 * 1rem);
  aspect-ratio: 1/1;
}

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

.p-fv__point-text {
  width: 100%;
  text-align: center;
  font-size: calc(17 / 16 * 1rem);
  line-height: 1.1;
}

.p-fv__point-text .blue-text {
  font-size: calc(22.5 / 16 * 1rem);
  line-height: 1.3;
  letter-spacing: -3%;
  color: var(--theme-blue-4);
}
.p-fv__point-text .blue-text2 {
  font-size: calc(18 / 16 * 1rem);
  line-height: 1.1;
  letter-spacing: -3%;
  color: var(--theme-blue-4);
}
.p-fv__point-text .blue-text3 {
  font-size: calc(30 / 16 * 1rem);
  line-height: 1.1;
  letter-spacing: -3%;
  color: var(--theme-blue-4);
}
.p-fv__point-text .blue-text4 {
  font-size: calc(13 / 16 * 1rem);
  line-height: 1;
}

.p-fv__point-text.p-fv__point-text--pt {
  padding-top: calc(6 / 16 * 1rem);
}

.p-fv__img-list {
  width: calc(670 / 16 * 1rem);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
}

.p-fv__img-item {
  max-width: 100%;
  height: calc(337.5 / 16 * 1rem);
  overflow: hidden;
}

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

.p-fv__btn {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2.2222222222vw;
}

.p-fv__btn a {
  background-color: var(--theme-yellow-2);
  border-radius: 0.5555555556vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.7638888889vw;
  padding: 0.6944444444vw 1.0416666667vw;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.p-fv__btn a:hover {
  -webkit-animation: moveLeftRight 1.2s ease-in-out infinite;
  animation: moveLeftRight 1.2s ease-in-out infinite;
  background-color: var(--theme-yellow-4);
}

.p-fv__btn-subtext {
  background-color: var(--theme-white);
  border-radius: 0.2777777778vw;
  padding: 0 0.6944444444vw 0.347222vw;
  font-size: 2.6388888889vw;
  line-height: 1.1;
}

.p-fv__btn-subtext .blue-text {
  font-size: 4.1666666667vw;
  color: var(--theme-blue-6);
}

.p-fv__btn-text {
  font-size: 2.9166666667vw;
  line-height: 1.4;
  color: var(--theme-light-brown);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.25vw;
}

.p-fv__btn-text::after {
  content: "";
  display: block;
  width: 1.8055555556vw;
  aspect-ratio: 1/1;
  background-image: url(./lib/images/top/arrow.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

@-webkit-keyframes moveLeftRight {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }
}

@keyframes moveLeftRight {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }
}

.p-header {
  position: absolute;
  top: 0;
  left: 0;
  padding-block: calc(16 / 16 * 1rem);
  z-index: 5;
}

.p-header__inner {
  padding-inline: calc(32 / 16 * 1rem);
  width: 100%;
  max-width: calc(1080 / 16 * 1rem);
  margin-inline: auto;
}

.p-header__img {
  max-width: 100%;
  width: calc(329 / 16 * 1rem);
}

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

.p-plan-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  width: 100%;
}

.p-plan-list__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
}

.p-plan-list__term {
  width: 8.75rem;
  max-width: 100%;
  background-color: var(--theme-skyblue-2);
  padding: 0.4375rem 0.1875rem;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--theme-base-reverse-text);
}

.p-plan-list__detail {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
}

.p-plan {
  padding-block: 5rem;
  background-color: var(--theme-bg-white);
}

.p-plan__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3rem;
}

.p-plan__title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.875rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--theme-gray);
}

.p-plan__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 0.5rem 3rem;
}

.p-plan__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

.p-plan__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1.5rem 1.5rem;
  border: 0.1875rem solid var(--theme-blue-3);
}

.p-plan__item-heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1875;
  letter-spacing: 0;
  color: var(--theme-blue-3);
}

.p-plan__item-img {
  max-width: 100%;
  width: 10.5rem;
  height: 9.5625rem;
}

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

.p-plan__price {
  width: 100%;
  background-color: var(--theme-bg-blue);
  text-align: center;
  padding: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 3.125rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--theme-yellow-1);
}

.p-plan__item-list {
  background-color: var(--theme-lightgray-2);
  padding: 1.5rem 1rem;
}

.p-plan__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.214;
  letter-spacing: 0;
}

.p-point__container {
  position: relative;
  z-index: 2;
  padding-block: 3.5rem 5.4375rem;
  background-color: var(--theme-bg-white);
}

.p-point__title {
  padding-block: 1.125rem 0.9375rem;
  background-color: var(--theme-bg-blue);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.625rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--theme-base-reverse-text);
}

.p-point__list_hosoku {
  padding-top: 5px;
  padding-inline: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: right;
  -webkit-box-align: right;
  -ms-flex-align: right;
  align-items: right;
  gap: 3.5rem;
}

.p-point__list {
  padding-top: 4.5rem;
  padding-inline: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.5rem;
}

.p-point__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.75rem;
}

.p-point__item:nth-last-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-point__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
}

.p-point__num {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--theme-blue-2);
}

.p-point__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0;
}

.p-point__heading .marker {
  line-height: 1.4;
  padding: 0.1875rem;
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-color: var(--theme-yellow-2);
}

.p-point__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
}

.p-point__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 100%;
  width: 30.5rem;
  -webkit-clip-path: polygon(1.6875rem 0rem, 30.4375rem 0rem, 28.75rem 16.0625rem, 0rem 16.0625rem);
  clip-path: polygon(1.6875rem 0rem, 30.4375rem 0rem, 28.75rem 16.0625rem, 0rem 16.0625rem);
}

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

.p-point__btn {
  width: 100%;
  max-width: calc(752 / 16 * 1rem);
  margin-inline: auto;
  margin-top: calc(188 / 16 * 1rem);
}

.p-point__link {
  z-index: 1;
  position: relative;
  padding-inline: calc(174 / 16 * 1rem) calc(159 / 16 * 1rem);
  padding-bottom: calc(38 / 16 * 1rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.9375rem;
}

.p-point__btn-heading {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  gap: 0.125rem;
}

.p-point__btn-heading-small,
.p-point__btn-heading-large {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--theme-base-brown-text);
}

.p-point__btn-heading-small {
  font-size: 2.625rem;
  line-height: 1.2;
}

.p-point__btn-heading-large {
  margin-left: calc(-7 / 16 * 1rem);
  font-size: 3.75rem;
  line-height: 1.2;
}

.p-point__bg-left {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 100%;
  width: calc(150 / 16 * 1rem);
}

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

.p-point__bg-right {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 100%;
  width: calc(135 / 16 * 1rem);
}

.p-point__bg-right img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: cover;
}

.p-trouble {
  padding-top: 5rem;
  padding-bottom: 7.1875rem;
}

.p-trouble__container {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 5rem;
  padding-inline: 5rem;
  background-color: var(--theme-bg-lightgray);
}

.p-trouble__container::after {
  content: "";
  display: block;
  -webkit-clip-path: polygon(51% 100%, 0 0, 100% 0);
  clip-path: polygon(51% 100%, 0 0, 100% 0);
  width: 7.5rem;
  height: 4.6875rem;
  background-color: var(--theme-bg-lightgray);
  position: absolute;
  bottom: 0.0625rem;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
}

.p-trouble__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.8125rem;
}

.p-trouble__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.625rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.p-trouble__title span {
  position: relative;
}

.p-trouble__title span::before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 0.5rem;
  aspect-ratio: 1/1;
  background-color: var(--theme-base-blue-text);
  border-radius: 50%;
}

.p-trouble__content {
  display: flex;
  flex-direction: column;
  gap: calc(48 / 16 * 1rem);
}

.p-trouble__list {
  margin-top: 4rem;
  width: 100%;
  display: grid;
  grid-template-areas: "item1 item3" "item2 item4";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 2.625rem;
}

.p-trouble__list [data-grid-area="item1"] {
  grid-area: item1;
}

.p-trouble__list [data-grid-area="item2"] {
  grid-area: item2;
}

.p-trouble__list [data-grid-area="item3"] {
  grid-area: item3;
}

.p-trouble__list [data-grid-area="item4"] {
  grid-area: item4;
}

.p-trouble__list [data-grid-area="item5"] {
  grid-area: item5;
}

.p-trouble__item {
  width: 20.8125rem;
  max-width: 100%;
  aspect-ratio: 333/115;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--theme-white);
  -webkit-box-shadow: 0px 0px 1.25rem rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 1.25rem rgba(0, 0, 0, 0.08);
}

.p-trouble__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.3125rem;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}

.p-trouble__item:nth-child(1) {
  -webkit-clip-path: polygon(
    2.0625rem 0rem,
    100% 0rem,
    calc(100% - 2.0625rem) 7.1875rem,
    0rem 7.1875rem
  );
  clip-path: polygon(2.0625rem 0rem, 100% 0rem, calc(100% - 2.0625rem) 7.1875rem, 0rem 7.1875rem);
}

.p-trouble__item:nth-child(2) {
  -webkit-transform: translateX(-1.75rem);
  transform: translateX(-1.75rem);
  -webkit-clip-path: polygon(
    2.0625rem 0rem,
    100% 0rem,
    calc(100% - 2.0625rem) 7.1875rem,
    0rem 7.1875rem
  );
  clip-path: polygon(2.0625rem 0rem, 100% 0rem, calc(100% - 2.0625rem) 7.1875rem, 0rem 7.1875rem);
}

.p-trouble__item:nth-child(3) {
  margin-left: auto;
  -webkit-clip-path: polygon(
    calc(100% - 2.0625rem) 0rem,
    0rem 0rem,
    2.0625rem 7.1875rem,
    100% 7.1875rem
  );
  clip-path: polygon(calc(100% - 2.0625rem) 0rem, 0rem 0rem, 2.0625rem 7.1875rem, 100% 7.1875rem);
}

.p-trouble__item:nth-child(4) {
  -webkit-transform: translateX(1.75rem);
  transform: translateX(1.75rem);
  margin-left: auto;
  -webkit-clip-path: polygon(
    calc(100% - 2.0625rem) 0rem,
    0rem 0rem,
    2.0625rem 7.1875rem,
    100% 7.1875rem
  );
  clip-path: polygon(calc(100% - 2.0625rem) 0rem, 0rem 0rem, 2.0625rem 7.1875rem, 100% 7.1875rem);
}

.p-trouble__item:nth-child(5) {
  margin-inline: auto;
  -webkit-clip-path: polygon(
    2.0625rem 0rem,
    calc(100% - 2.0625rem) 0rem,
    100% 7.1875rem,
    0rem 7.1875rem
  );
  clip-path: polygon(2.0625rem 0rem, calc(100% - 2.0625rem) 0rem, 100% 7.1875rem, 0rem 7.1875rem);
}

.p-trouble__bg {
  position: absolute;
  top: 15.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 100%;
  width: 13.75rem;
  aspect-ratio: 220/240;
}

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

.u-sp {
  display: none;
}

.u-sp-flex {
  display: none;
}

.u-mt-0 {
  margin-top: 0;
}

.u-mr-0 {
  margin-right: 0;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-ml-0 {
  margin-left: 0;
}

.u-ttu {
  text-transform: uppercase;
}

.u-ttc {
  text-transform: capitalize;
}

.u-ttl {
  text-transform: lowercase;
}

@media screen and (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}

@media screen and (max-width: 1439px) {
  html {
    font-size: 1.11vw;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }

  body .paragraph + .paragraph.paragraph--sp {
    margin-top: 1lh;
  }

  a[href^="tel:"] {
    pointer-events: auto;
  }

  .l-inner {
    max-width: 28.75rem;
    padding-inline: 1.25rem;
  }

  .l-inner.l-inner--wide {
    max-width: 28.75rem;
  }

  .tableStyle04 tbody {
    gap: 1.5rem;
  }

  .tableStyle04 tr th {
    font-size: 0.9375rem;
    line-height: 1.4;
  }

  .tableStyle04 tr td input {
    width: 100%;
    font-size: 0.875rem;
    padding: 0.375rem 0.625rem;
  }

  .tableStyle04 tr textarea {
    padding: 0.9375rem 0.9375rem 0;
    width: 100%;
    font-size: 0.9375rem;
  }

  .p-case-list {
    grid-template-columns: 1fr;
    gap: 0.75rem 0.5rem;
    padding: 0px 20px;
    width: calc(100% - 0px);
    /* width: 19.4375rem;*/
  }

  .p-case-list__content {
    gap: 0.5rem;
  }

  .p-case-list__content:nth-child(5) {
    grid-column: 1/-1;
  }

  .p-case-list__content:last-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-case-list__term,
  .p-case-list__term2 {
    width: 5rem;
  }

  .p-case-list__term,
  .p-case-list__term2,
  .p-case-list__detail {
    font-size: 0.9375rem;
  }

  .p-case {
    margin-top: 0rem;
    padding-top: 0rem;
    padding-bottom: 2.25rem;
  }

  .p-case__inner {
    gap: 1rem;
  }

  .p-case__title {
    font-size: 2rem;
    line-height: 1.4;
  }

  .p-case__list {
    gap: 1rem;
  }

  .p-case__item {
    height: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    background-color: var(--theme-bg-white);
  }

  .p-case__item:nth-child(odd) {
    background-image: none;
    -webkit-filter: none;
    filter: none;
    padding-left: 0;
  }

  .p-case__item:nth-child(odd) .p-case__item-img {
    top: 4.1875rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .p-case__item:nth-child(even) {
    background-image: none;
    -webkit-filter: none;
    filter: none;
    padding-left: 0;
  }

  .p-case__item:nth-child(even) .p-case__item-img {
    top: 4.1875rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .p-case__item-body {
    gap: 9.25rem;
    padding-top: 1.5rem;
    margin-inline: auto;
    padding-bottom: calc(24 / 16 * 1rem);
  }

  .p-case__item-heading {
    font-size: 1.1875rem;
    text-align: center;
  }

  .p-case__item-img {
    width: 6.875rem;
  }

  .p-contact {
    padding-block: 2.5rem;
  }

  .p-contact__heading {
    gap: 1.25rem;
  }

  .p-contact__heading-title {
    font-size: 2rem;
    line-height: 1.4;
  }

  .p-contact__heading-text {
    font-size: 1rem;
  }

  .p-contact__heading-text-small {
    font-size: 0.875rem;
  }

  .p-contact__content {
    width: 100%;
    padding: 2rem 1rem;
  }

  .p-faq {
    padding-bottom: 1rem;
  }

  .p-faq__heading {
    width: 23.4375rem;
    height: 10.5rem;
    background-image: url(./lib/images/top/fukidashi-bg-sp.png);
  }

  .p-faq__heading-text {
    padding-top: 2.5rem;
    padding-left: 3.125rem;
    font-size: 1rem;
    text-align: left;
  }

  .p-faq__container {
    padding: 2rem 1rem;
    gap: 1.5rem;
  }

  .p-faq__title {
    font-size: 2rem;
    line-height: 1.4;
  }

  .p-faq__question-text,
  .p-faq__answer-text {
    padding: 0.75rem 1rem 0.75rem 0.5rem;
    font-size: 0.9375rem;
  }

  .p-faq__question-text {
    gap: 1rem;
    margin-right: 0.5rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-faq__question-text::before {
    width: 1.75rem;
    padding-top: 0.1875rem;
    font-size: 0.9375rem;
    line-height: 1.4;
  }

  .p-faq-list__switch {
    top: 1.375rem;
    right: 0;
  }

  .p-faq__answer-text {
    gap: 1rem;
    margin-right: 0.5rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    color: #4d430a;
  }

  .p-faq__answer-text::before {
    width: 1.75rem;
    padding-top: 0.1875rem;
    font-size: 0.9375rem;
    line-height: 1.4;
  }

  .p-flow {
    padding-top: 2.5rem;
  }

  .p-flow__container {
    padding: 1.5rem 1rem;
  }

  .p-flow__title {
    font-size: 2rem;
    line-height: 1.4;
  }

  .p-flow__list {
    margin-top: 1.5rem;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
    gap: 1.5rem;
  }

  .p-flow__item:not(:last-child)::after {
    gap: 1.5rem;
  }

  .p-flow-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
  }

  .p-flow__item-img {
    width: 7.5rem;
  }

  .p-flow__heading-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
  }

  .p-flow__item-num {
    font-size: 1.125rem;
  }

  .p-flow__item-heading {
    font-size: 1.25rem;
  }

  .p-flow__item-text {
    font-size: 0.9375rem;
  }
	
.p-footer-menu {
    width: 100%;
    gap: 0.3125rem 1.25rem;
  }

.p-footer {
    padding-top: 1.25rem;
  }

.p-footer__inner {
    padding-inline: 0.9375rem;
    margin-inline: auto;
  }

.p-footer__container {
    gap: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 1.5rem;
  }

.p-footer__logo {
    width: 10rem;
  }
/*
  .p-footer-menu {
    width: 100%;
    gap: 0.3125rem 1.25rem;
  }

  .p-footer {
    padding-top: 1.25rem;
  }

  .p-footer__container {
    padding-bottom: 1.5rem;
  }

  .p-footer__logo {
    width: 10rem;
  }

  .p-footer__content {
    margin-left: 1.25rem;
    gap: 1.875rem;
  }

  .p-footer__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.625rem;
  }
*/
  .p-fv {
    padding-bottom: 8vw;
    width: 100%;
    overflow: hidden;
    height: 178.13vw;
    max-height: initial;
  }

  .p-fv__inner {
    padding-top: 58.67vw;
    padding-inline: 0;
  }

  .p-fv__img {
    top: 66.9vw;
    bottom: auto;
    right: 0;
    width: 100vw;
  }

  .p-fv__img img {
    width: 100%;
    height: auto;
  }

  .p-fv__text {
    width: 105%;
    -webkit-transform: translateX(-2.5%) rotate(-6deg);
    transform: translateX(-2.5%) rotate(-6deg);
    font-size: 4vw;
    text-align: center;
    padding-block: 1.6vw;
    line-height: 1.3;
  }

  .p-fv__title {
    margin-top: 2vw;
    font-size: 11.2vw;
    -webkit-transform: rotate(-6deg);
    transform: rotate(-6deg);
    text-align: center;
    gap: 1.3333333333333335vw;
  }

  .p-fv__title .small {
    font-size: 7.4666666667vw;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }

  .p-fv__point {
    margin-top: 43.47vw;
    gap: 2.1333333333vw;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-fv__point-item {
    width: 24.8vw;
  }

  .p-fv__point-item::after {
    inset: 0.8vw;
  }

  .p-fv__point-img {
    width: 8vw;
  }

  .p-fv__point-text {
    padding: 3px 0px 0px;
    font-size: 3.5vw;
    line-height: 1.2;
  }

  .p-fv__point-text .blue-text {
    font-size: 4.6vw;
  }
  .p-fv__point-text .blue-text2 {
    display: inline-block;
    margin-top: 0.52vw;
    font-size: 4vw; /* 1.5472222222 × 1.732 */
    line-height: 1.1;
  }
  .p-fv__point-text .blue-text3 {
    font-size: 5.867vw; /* 2.8472222222 × 1.732 */
  }
  .p-fv__point-text .blue-text4 {
    line-height: 1;
    margin-top: -0.26vw;
    font-size: 2.93vw; /* 1.2472222222 × 1.732 */
  }

  .p-fv__point-text.p-fv__point-text--pt {
    padding-top: 1.347222vw;
    line-height: 0.9;
  }

  .p-fv__img-list {
    width: 100%;
    grid-template-rows: 68.5333333333vw 80vw;
    gap: 29.6vw 0;
  }

  .p-fv__img-item {
    height: 100%;
  }

  .p-fv__btn {
    margin-top: 1.3333333333vw;
    margin-inline: auto;
  }

  .p-fv__btn a {
    padding: 1.0666666666666667vw 3.633333vw;
    gap: 1.8666666667vw;
    border-radius: 2.1333333333vw;
  }

  .p-fv__btn a:hover {
    -webkit-animation: none;
    animation: none;
    opacity: 1;
  }

  .p-fv__btn-subtext {
    padding: 0.25rem 0.5rem;
    font-size: 4vw;
    line-height: 1;
    border-radius: 1.0666666667vw;
  }

  .p-fv__btn-subtext .red-text {
    font-size: 6.4vw;
  }

  .p-fv__btn-text {
    font-size: 6.1333333333vw;
    gap: 3.7333333333vw;
  }

  .p-fv__btn-text::after {
    width: 4.2666666667vw;
  }

  .p-header {
    padding-top: 0.75rem;
  }

  .p-header__inner {
    padding-inline: calc(8 / 16 * 1rem);
  }

  .p-header__img {
    width: 10.3125rem;
    height: 1.8125rem;
  }

  .p-plan-list {
    gap: 1rem;
  }

  .p-plan-list__term {
    font-size: 1rem;
  }

  .p-plan-list__detail {
    font-size: 0.9375rem;
  }

  .p-plan {
    padding-block: 2.5rem;
  }

  .p-plan__container {
    gap: 1.5rem;
  }

  .p-plan__title {
    font-size: 2rem;
    line-height: 1.4;
  }

  .p-plan__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
  }

  .p-plan__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }

  .p-plan__content {
    padding: 1rem;
  }

  .p-plan__item-heading {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .p-plan__price {
    font-size: 2.5rem;
  }

  .p-plan__item-list {
    padding: 1rem;
  }

  .p-plan__text {
    line-height: 1.4;
  }

  .p-point__container {
    padding-block: 1.5rem;
  }

  .p-point__title {
    padding-block: 0.625rem;
    font-size: 2rem;
    line-height: 1.4;
  }

  .p-point__list {
    padding: 1.875rem;
    gap: 1.25rem;
  }

  .p-point__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .p-point__item:nth-last-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .p-point__item:nth-last-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: column-reverse;
  }

  .p-point__num {
    font-size: 1.375rem;
  }

  .p-point__heading {
    font-size: 1rem;
  }

  .p-point__text {
    font-size: 0.875rem;
  }

  .p-point__img {
    width: 100%;
    -webkit-clip-path: none;
    clip-path: none;
  }

  .p-point__btn {
    padding-top: 0;
    margin-inline: auto;
    margin-top: calc(24 / 16 * 1rem);
  }

  .p-point__link {
    padding-inline: calc(42 / 16 * 1rem);
    padding-block: 0 calc(32 / 16 * 1rem);
    width: 100%;
    max-width: calc(319 / 16 * 1rem);
    margin-inline: auto;
  }
  .p-point__btn-heading {
    margin-inline: auto;
  }
  .p-point__btn-heading-small {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .p-point__btn-heading-large {
    font-size: 2rem;
    line-height: 1.4;
  }

  .p-point__btn-content {
    border-radius: 0.5rem;
    gap: 0.5625rem;
    padding: 0.25rem 0.5rem;
  }

  .p-point__btn-subtext {
    border-radius: 0.25rem;
    padding: 0.1875rem 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.4;
  }

  .p-point__btn-subtext span {
    font-size: 1.5rem;
  }

  .p-point__btn-text {
    font-size: 1.25rem;
    line-height: 1.4;
    gap: 0.5rem;
  }

  .p-point__btn-text::after {
    width: 0.8125rem;
  }

  .p-point__bg-left {
    bottom: calc(40 / 16 * 1rem);
    left: calc(-8 / 16 * 1rem);
    width: calc(56 / 16 * 1rem);
  }

  .p-point__bg-right {
    bottom: calc(24 / 16 * 1rem);
    right: calc(0 / 16 * 1rem);
    width: calc(56 / 16 * 1rem);
  }

  .p-trouble {
    padding-top: 1.5rem;
    padding-bottom: 6rem;
  }

  .p-trouble__container {
    padding: 2rem 1rem;
  }

  .p-trouble__container::after {
    width: 6.25rem;
    height: 3.75rem;
  }

  .p-trouble__heading {
    gap: 0.5rem;
  }

  .p-trouble__title {
    font-size: 1.1375rem;
    line-height: 1;
  }
  .p-trouble__content {
    gap: calc(24 / 16 * 1rem);
  }
  .p-trouble__title span::before {
    width: 0.25rem;
  }

  .p-trouble__list {
    margin-top: 1.5rem;
    padding-inline: 0.75rem;
    grid-template-areas: "item1" "item2" "item3" "item4";
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 0.75rem;
  }

  .p-trouble__item {
    width: 100%;
    aspect-ratio: 287/77;
  }

  .p-trouble__text {
    font-size: 0.9375rem;
  }

  .p-trouble__item:nth-child(1) {
    margin-inline: auto;
    -webkit-clip-path: polygon(
      2.5rem 0rem,
      100% 0rem,
      calc(100% - 2.5rem) 7.1875rem,
      0rem 7.1875rem
    );
    clip-path: polygon(2.5rem 0rem, 100% 0rem, calc(100% - 2.5rem) 7.1875rem, 0rem 7.1875rem);
  }

  .p-trouble__item:nth-child(2) {
    margin-inline: auto;
    -webkit-clip-path: polygon(
      calc(100% - 2.5rem) 0rem,
      0rem 0rem,
      2.5rem 7.1875rem,
      100% 7.1875rem
    );
    clip-path: polygon(calc(100% - 2.5rem) 0rem, 0rem 0rem, 2.5rem 7.1875rem, 100% 7.1875rem);
    -webkit-transform: none;
    transform: none;
  }

  .p-trouble__item:nth-child(3) {
    margin-inline: auto;
    -webkit-clip-path: polygon(
      2.5rem 0rem,
      100% 0rem,
      calc(100% - 2.5rem) 7.1875rem,
      0rem 7.1875rem
    );
    clip-path: polygon(2.5rem 0rem, 100% 0rem, calc(100% - 2.5rem) 7.1875rem, 0rem 7.1875rem);
  }

  .p-trouble__item:nth-child(4) {
    margin-inline: auto;
    -webkit-transform: none;
    transform: none;
    -webkit-clip-path: polygon(
      calc(100% - 2.5rem) 0rem,
      0rem 0rem,
      2.5rem 7.1875rem,
      100% 7.1875rem
    );
    clip-path: polygon(calc(100% - 2.5rem) 0rem, 0rem 0rem, 2.5rem 7.1875rem, 100% 7.1875rem);
  }

  .p-trouble__item:nth-child(5) {
    margin-inline: auto;
    -webkit-clip-path: polygon(
      2.5rem 0rem,
      100% 0rem,
      calc(100% - 2.5rem) 7.1875rem,
      0rem 7.1875rem
    );
    clip-path: polygon(2.5rem 0rem, 100% 0rem, calc(100% - 2.5rem) 7.1875rem, 0rem 7.1875rem);
  }

  .p-trouble__bg {
    position: static;
    -webkit-transform: none;
    transform: none;
    margin-top: 0.5rem;
    margin-inline: auto;
  }

  .u-sp {
    display: block;
  }

  .u-sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .u-pc {
    display: none;
  }

  .u-dib-sp {
    display: inline-block;
  }
}

@media screen and (max-width: 374px) {
  html {
    font-size: 4.2666666667vw;
  }
}
/*# sourceMappingURL=style.css.map */

.p-content {
  margin-top: -9.625rem;
  padding-top: 16.625rem;
  padding-bottom: 1.25rem;
  position: relative;
  background-color: var(--theme-blue-1);
}
.p-content::before {
  z-index: 0;
  pointer-events: none;
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(./lib/images/top/section-bg.png);
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
  mix-blend-mode: multiply;
}
.p-content h2 {
  margin-bottom: 30px;
}
.p-content__container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(48 / 16 * 1rem) calc(80 / 16 * 1rem);
  background-color: var(--theme-bg-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(40 / 16 * 1rem);
}
.p-content__title {
  padding-block: 1.125rem 0.9375rem;
  background-color: var(--theme-bg-blue);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.625rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--theme-base-reverse-text);
}
.p-content__list {
  padding-top: 4.5rem;
  padding-inline: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.5rem;
}
.p-content__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0.75rem;
}
.p-content__item:nth-last-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.p-content__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
}
.p-content__num {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--theme-blue-2);
}
.p-content__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0;
}
.p-content__heading .marker {
  line-height: 1.4;
  padding: 0.1875rem;
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-color: var(--theme-yellow-2);
}
.p-content__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
}
.p-content__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 100%;
  width: 30.5rem;
  -webkit-clip-path: polygon(1.6875rem 0rem, 30.4375rem 0rem, 28.75rem 16.0625rem, 0rem 16.0625rem);
  clip-path: polygon(1.6875rem 0rem, 30.4375rem 0rem, 28.75rem 16.0625rem, 0rem 16.0625rem);
}
.p-content__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-content__btn {
  padding-top: 7.25rem;
  margin-left: 5.0625rem;
}
.p-content__link {
  z-index: 1;
  position: relative;
  display: block;
  background-color: var(--theme-yellow-2);
  padding-block: 2.1875rem 1.375rem;
  width: 55.625rem;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.9375rem;
  -webkit-box-shadow: 1.8125rem 1.0625rem 0 var(--theme-yellow-4);
  box-shadow: 1.8125rem 1.0625rem 0 var(--theme-yellow-4);
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}
.p-content__link:hover {
  -webkit-transform: translate(1.8125rem, 1.0625rem);
  transform: translate(1.8125rem, 1.0625rem);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.p-content__btn-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.125rem;
}
.p-content__btn-heading-small,
.p-content__btn-heading-large {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--theme-base-brown-text);
}
.p-content__btn-heading-small {
  font-size: 2.625rem;
  line-height: 1.2;
}
.p-content__btn-heading-large {
  font-size: 3.75rem;
  line-height: 1.2;
}

.p-content__btn-content {
  background-color: var(--theme-yellow-1);
  border-radius: 0.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.8125rem;
  padding: 0.5rem 1rem 0.5rem 1.5rem;
}

.p-content__btn-subtext {
  background-color: var(--theme-bg-white);
  border-radius: 0.15625rem;
  padding-inline: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.21;
  letter-spacing: 0;
}
.p-content__btn-subtext span {
  font-size: 2.375rem;
}

.p-content__btn-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--theme-base-brown-text);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2.3125rem;
}

.p-content__btn-text::after {
  content: "";
  display: block;
  width: 1rem;
  aspect-ratio: 1/1;
  background-image: url(./lib/images/top/arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-content__bg-left {
  position: absolute;
  top: -2.875rem;
  left: 1.625rem;
  max-width: 100%;
  width: 9.375rem;
}
.p-content__bg-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-content__bg-right {
  position: absolute;
  top: -3.9375rem;
  left: 46.25rem;
  max-width: 100%;
  width: 8.375rem;
}
.p-content__bg-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .p-content {
    padding-top: 13.625rem;
  }
  .p-content__container {
    padding: calc(24 / 16 * 1rem) calc(24 / 16 * 1rem);
  }
  .p-content__title {
    padding-block: 0.625rem;
    font-size: 2rem;
    line-height: 1.4;
  }
  .p-content__list {
    padding: 1.875rem;
    gap: 1.25rem;
  }
  .p-content__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .p-content__item:nth-last-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .p-content__num {
    font-size: 1.375rem;
  }
  .p-content__heading {
    font-size: 1rem;
  }
  .p-content__text {
    font-size: 0.875rem;
  }
  .p-content__img {
    width: 100%;
    -webkit-clip-path: none;
    clip-path: none;
  }
  .p-content__btn {
    padding-top: 3.75rem;
    margin-inline: auto;
  }
  .p-content__link {
    padding-block: 1.5rem 1rem;
    width: 19.375rem;
    -webkit-box-shadow: 0.5rem 0.5rem 0 var(--theme-yellow-4);
    box-shadow: 0.5rem 0.5rem 0 var(--theme-yellow-4);
    margin-inline: auto;
  }
  .p-content__link:hover {
    -webkit-transform: none;
    transform: none;
    -webkit-box-shadow: none;
    box-shadow: 0.5rem 0.5rem 0 var(--theme-yellow-4);
  }
  .p-content__btn-heading-small {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  .p-content__btn-heading-large {
    font-size: 2rem;
    line-height: 1.4;
  }
  .p-content__btn-content {
    border-radius: 0.5rem;
    gap: 0.5625rem;
    padding: 0.25rem 0.5rem;
  }
  .p-content__btn-subtext {
    border-radius: 0.25rem;
    padding: 0.1875rem 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.4;
  }
  .p-content__btn-subtext span {
    font-size: 1.5rem;
  }
  .p-content__btn-text {
    font-size: 1.25rem;
    line-height: 1.4;
    gap: 0.5rem;
  }
  .p-content__btn-text::after {
    width: 0.8125rem;
  }
  .p-content__bg-left {
    top: -4.5rem;
    left: -0.875rem;
    width: 4.375rem;
  }
  .p-content__bg-right {
    top: -4.5rem;
    left: 15.9375rem;
    width: 4.5rem;
  }
}

/* 全体の背景を白にし、中央寄せ */
.supervision-content {
  background: #fff;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: calc(32 / 16 * 1rem);
}
.supervision-content h2 {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}
.content-box {
  display: flex;
  align-items: flex-start;
  gap: calc(40 / 16 * 1rem);
}
.content-image {
  width: calc(280 / 16 * 1rem);
  max-width: 100%;
  height: auto;
}
.content-text {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
}
.check-icon {
  color: #ffd700;
  font-weight: bold;
  margin-right: calc(5 / 16 * 1rem);
}
.check-icon img {
  width: calc(40 / 16 * 1rem);
  float: left;
  font-size: 1rem;
}
.content-text h3 {
  font-size: 1.625rem;
  font-weight: bold;
  margin: calc(-7 / 16 * 1rem) 0px calc(10 / 16 * 1rem);
  color: #0282ba;
}
.content-text img {
  margin-top: calc(3 / 16 * 1rem);
}
.content-text p {
  font-size: calc(15 / 16 * 1rem);
  line-height: 1.8;
  color: #333;
}
.note-box {
  width: 100%;
  background: #0282ba;
  color: #ffffff;
  line-height: calc(30 / 16);
  font-weight: bold;
  font-size: calc(22 / 16 * 1rem);
  padding: calc(16 / 16 * 1rem) 20px;
  text-align: center;
}

@media (max-width: 1100px) {
  .note-box {
    background: #0282ba;
    color: #ffffff;
    line-height: calc(30 / 16);
    font-weight: bold;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .check-icon img {
    width: calc(24 / 16 * 1rem);
    float: left;
    font-size: 1rem;
  }
  .content-text h3 {
    font-size: calc(20 / 16 * 1rem);
    font-weight: bold;
    margin: 0;
    color: #0282ba;
  }
  .content-text p {
    margin-top: calc(8 / 16 * 1rem);
  }

  .supervision-content {
    width: 100%;
  }
  .content-box {
    flex-direction: column;
    gap: calc(18 / 16 * 1rem);
  }
  .content-image {
    margin-inline: auto;
  }
  .note-box {
    line-height: calc(20 / 16);
    font-weight: bold;
    font-size: calc(16 / 16 * 1rem);
    padding: calc(14 / 16 * 1rem);
    text-align: center;
  }
}

.p-k-case-section {
  padding: 0px 20px;
  color: #333;
}
.p-k-case-container {
  max-width: 1100px;
  margin: 0 auto;
}
.p-k-case-title {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
}

.p-k-case-card {
  position: relative;
  margin-bottom: 3rem;
  -webkit-filter: drop-shadow(1.5rem 1.5rem 0 var(--theme-blue-5));
}
.p-k-case-card::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(var(--theme-blue-8) 0% 4.125rem, #fff 4.125rem 100%);
  transform: skewX(-10deg);
}
.p-k-case-card:has(.estate)::before {
  background-image: linear-gradient(var(--theme-blue-8) 0% 4.125rem, #fff 4.125rem 100%);
}
.p-k-case-card2 {
  position: relative;
  margin-bottom: 3rem;
  -webkit-filter: drop-shadow(-1.5rem 1.5rem 0 var(--theme-blue-5));
}
.p-k-case-card2::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(var(--theme-blue-8) 0% 4.125rem, #fff 4.125rem 100%);
  transform: skewX(10deg);
}

.p-k-case-label {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  padding: 7px 0.75rem;
}
.p-k-case-card .p-k-case-label .p-k-case-label_title {
  font-weight: 700;
  font-size: 1.625rem;
}
.p-k-case-card2 .p-k-case-label .p-k-case-label_title {
  font-weight: 700;
  font-size: 1.625rem;
}

.p-k-case-card .p-k-case-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3rem 5rem 3rem 6rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.p-k-case-card2 .p-k-case-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3rem 6rem 3rem 5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.p-k-case-text {
  flex: 1 1 60%;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.p-k-case-subtitle {
  color: #007ca5;
  font-weight: bold;
  margin: -6px 0px 10px;
  font-size: 1.225rem;
}
.p-k-case-photo {
  flex: 0 0 160px;
  text-align: center;
  line-height: 20px;
}
.p-k-case-photo img {
  width: 160px;
  object-fit: cover;
}
.position {
  font-weight: bold;
  color: #007ca5;
  margin-top: 0.5rem;
  font-size: 15px;
}
.name {
  font-weight: bold;
  margin-top: 5px;
  font-size: 16px;
}

.p-k-case-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.p-k-case-photo {
  order: 2;
}
.p-k-case-text {
  order: 1;
}
.p-k-case-card2 .p-k-case-photo {
  order: 1;
}
.p-k-case-card2 .p-k-case-text {
  order: 2;
}

@media (max-width: 768px) {
  .p-k-case-photo,
  .p-k-case-text {
    order: unset;
  }
}

@media (max-width: 768px) {
  .p-k-case-section {
    padding: 0px 0px;
    color: #333;
  }
  .p-k-case-card {
    transform: skewX(0deg);
    background-color: #fff;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    overflow: hidden;
    -webkit-filter: drop-shadow(0rem 0rem 0 var(--theme-blue-5));
  }
  .p-k-case-card::before {
    display: none;
  }
  .p-k-case-card2 {
    transform: skewX(0deg);
    background-color: #fff;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    overflow: hidden;
    -webkit-filter: drop-shadow(0rem 0rem 0 var(--theme-blue-5));
  }
  .p-k-case-card2::before {
    display: none;
  }
  .p-k-case-label {
    background-color: var(--theme-blue-8);
  }
  .p-k-case-label.tax {
    background-color: var(--theme-blue-8);
  }
  .p-k-case-label.estate {
    background-color: var(--theme-blue-8);
  }

  .p-k-case-card .p-k-case-label .p-k-case-label_title {
    font-weight: 700;
    font-size: 1.625rem;
  }
  .p-k-case-card2 .p-k-case-label .p-k-case-label_title {
    font-weight: 700;
    font-size: 1.625rem;
  }

  .p-k-case-card .p-k-case-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: calc(24 / 16 * 1rem);
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .p-k-case-card2 .p-k-case-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: calc(24 / 16 * 1rem);
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .p-k-case-text {
    flex: 1 1 60%;
    line-height: 1.8;
    line-height: 18px;
  }
  .p-k-case-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .p-k-case-photo {
    text-align: center;
    margin-inline: auto;
  }
}

/*
*/
.p-k-case-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
  width: 38.9375rem;
  max-width: 100%;
}
.p-k-case-list__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1rem;
}
.p-k-case-list__content:nth-child(5) {
  grid-column: 2/4;
}
.p-k-case-list__content:last-child {
  grid-column: 1/-1;
}
.p-k-case-list__term {
  color: var(--theme-base-reverse-text);
  padding: 0.0625rem 0.625rem;
  width: 6.625rem;
  background-color: var(--theme-blue-2);
  text-align: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.p-k-case-list__term2 {
  color: var(--theme-base-reverse-text);
  padding: 0.0625rem 0.625rem;
  width: 9.625rem;
  background-color: var(--theme-blue-2);
  text-align: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-k-case-list__term,
.p-k-case-list__term2,
.p-k-case-list__detail {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  font-size: 1rem;
}
.p-k-case {
  margin-top: -9.625rem;
  padding-top: 14.625rem;
  padding-bottom: 6.25rem;
  position: relative;
  background-color: var(--theme-blue-1);
}
.p-k-case::before {
  z-index: 0;
  pointer-events: none;
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(./lib/images/top/section-bg.png);
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
  mix-blend-mode: multiply;
}
.p-k-case__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3rem;
}
.p-k-case__title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.875rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--theme-base-reverse-text);
}
.p-k-case__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3rem;
}
.p-k-case__item {
  position: relative;
  height: 20.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-k-case__item:nth-child(odd) {
  padding-left: 7.5rem;
  background-image: url(./lib/images/top/case-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-filter: drop-shadow(1.5rem 1.5rem 0 var(--theme-blue-5));
  filter: drop-shadow(1.5rem 1.5rem 0 var(--theme-blue-5));
}
.p-k-case__item:nth-child(odd) .p-k-case__item-img {
  top: 2.0625rem;
  left: 48rem;
}
.p-k-case__item:nth-child(even) {
  padding-left: 18.75rem;
  background-image: url(./lib/images/top/case-2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-filter: drop-shadow(-1.5rem 1.5rem 0 var(--theme-blue-5));
  filter: drop-shadow(-1.5rem 1.5rem 0 var(--theme-blue-5));
}
.p-k-case__item:nth-child(even) .p-k-case__item-img {
  top: 2.625rem;
  left: 4.375rem;
}
.p-k-case__item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}
.p-k-case__item-heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--theme-blue-2);
}
.p-k-case__item-img {
  position: absolute;
  max-width: 100%;
  width: 12.5rem;
  height: auto;
}
.p-k-case__item-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .p-k-case-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 0.5rem;
    width: 19.4375rem;
  }
  .p-k-case-list__content {
    gap: 0.5rem;
  }
  .p-k-case-list__content:nth-child(5) {
    grid-column: 1/-1;
  }
  .p-k-case-list__content:last-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .p-k-case-list__term,
  .p-k-case-list__term2 {
    width: 5rem;
  }
  .p-k-case-list__term,
  .p-k-case-list__term2,
  .p-k-case-list__detail {
    font-size: 0.9375rem;
  }
  .p-k-case {
    margin-top: -7.5rem;
    padding-top: 10rem;
    padding-bottom: 2.25rem;
  }
  .p-k-case__inner {
    gap: 1rem;
  }
  .p-k-case__title {
    font-size: 2rem;
    line-height: 1.4;
  }
  .p-k-case__list {
    gap: 1rem;
  }
  .p-k-case__item {
    height: 32.5rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    background-color: var(--theme-bg-white);
  }
  .p-k-case__item:nth-child(odd) {
    background-image: none;
    -webkit-filter: none;
    filter: none;
    padding-left: 0;
  }
  .p-k-case__item:nth-child(odd) .p-k-case__item-img {
    top: 4.1875rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .p-k-case__item:nth-child(even) {
    background-image: none;
    -webkit-filter: none;
    filter: none;
    padding-left: 0;
  }
  .p-k-case__item:nth-child(even) .p-k-case__item-img {
    top: 4.1875rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .p-k-case__item-body {
    gap: 9.25rem;
    padding-top: 1.5rem;
    margin-inline: auto;
  }
  .p-k-case__item-heading {
    font-size: 1.1875rem;
    text-align: center;
  }
  .p-k-case__item-img {
    width: 6.875rem;
  }
}

.supervision-box {
  width: 100%;
  margin-bottom: 2rem;
}

.supervision-box__header {
  position: relative;
  overflow: hidden;
  height: 3rem;
}

.supervision-box__header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background-color: #9ad3e2;
  transform: skewX(-20deg);
  transform-origin: top left;
  z-index: 1;
}

.supervision-box__header-text {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.25rem;
  padding: 0.75rem 1rem;
  z-index: 2;
}

.case-section {
  background: #fff;
  padding: 60px 20px;
  font-family: "Helvetica Neue", sans-serif;
}
.case-card {
  position: relative;
  background: #f5fafe;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  overflow: hidden;
}
.diagonal-background {
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: #00a2d9;
  transform: rotate(-5deg);
  transform-origin: top left;
  z-index: 1;
}
.card-content {
  position: relative;
  padding: 20px;
  z-index: 2;
  color: #fff;
}
.card-content h3 {
  margin: 0 0 10px;
  font-size: 20px;
}
.card-content p {
  margin: 0;
  font-size: 16px;
}

.price-plan {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.875rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 40px;
}
.section-sub {
  color: #333;
  margin-bottom: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  font-size: 1.1rem;
}
.section-sub .note {
  font-size: 14px;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 100%;
  width: calc(960 / 16 * 1rem);
  margin-inline: auto;
}
.price-item {
  padding: 10px;
  box-sizing: border-box;
  line-height: 120%;
  margin-bottom: 10px;
}
.price-img-wrap {
  padding: 0px;
  margin-bottom: 7px;
}
.price-img {
  width: 100%;
  height: auto;
  display: block;
}

.price-label {
  font-size: calc(17 / 16 * 1rem);
  font-weight: bold;
  color: #0386a0;
  margin-bottom: calc(10 / 16 * 1rem);
}
.price-value {
  font-size: calc(20 / 16 * 1rem);
  font-weight: 600;
  color: #000;
}

@media (max-width: 768px) {
  .price-plan {
    background: #fff;
    text-align: center;
  }
  .price-plan .section-title {
    font-size: calc(32 / 16 * 1rem);
  }
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-plan .container {
    max-width: 100%;
    margin: 0 auto;
    padding-inline: 0rem;
  }
  .price-plan_in {
    padding: 0rem 0px 4rem;
  }
  .price-item {
    padding: calc(5 / 16 * 1rem);
    box-sizing: border-box;
    line-height: 18px;
  }

  .price-label {
    font-size: calc(15 / 16 * 1rem);
    font-weight: bold;
    color: #0386a0;
    margin-bottom: calc(10 / 16 * 1rem);
  }
  .price-value {
    font-size: calc(24 / 16 * 1rem);
    font-weight: 600;
    color: #000;
  }
}
