@charset "UTF-8";

:root {
  --scrollbar: 0;
}

html {
  font-size: 0.694vw;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}

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

*,
*::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;
  line-height: 1.5;
}

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

/* フォームリセット */

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

textarea {
  resize: vertical;
}

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

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

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

.l-inner {
  width: 113rem;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  margin-inline: auto;
}

.l-inner.l-inner--wide {
  width: 100%;
  max-width: 129rem;
}

.l-outer {
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
}

.l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-flex-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-flex-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-flex-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-cta {
  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;
}

.c-cta__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #333333;
}

.c-cta__text::before,
.c-cta__text::after {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 1px;
  background-color: #333333;
}

.c-cta__text::before {
  -webkit-transform: rotate(70deg);
          transform: rotate(70deg);
}

.c-cta__text::after {
  -webkit-transform: rotate(110deg);
          transform: rotate(110deg);
}

.c-cta__button {
  display: inline-block;
  min-height: 12.5rem;
  background-color: #0b8762;
  border: 3px solid #071b13;
  border-radius: 1.5rem;
  overflow: hidden;
  -webkit-filter: drop-shadow(0px 0px 2rem rgba(16, 39, 30, 0.22));
          filter: drop-shadow(0px 0px 2rem rgba(16, 39, 30, 0.22));
}

.c-cta__button-link {
  display: inline-block;
  position: relative;
  width: 100%;
  min-height: inherit;
}

.c-cta__button-link::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-cta__button-link:hover::before {
  left: 100%;
}

.c-cta__button-link:hover {
  opacity: 1;
}

.c-cta__button-link::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 75%);
  -webkit-animation: shiny-btn1 3s ease-in-out infinite;
          animation: shiny-btn1 3s ease-in-out infinite;
}

@-webkit-keyframes shiny-btn1 {
  0% {
    -webkit-transform: scale(0) rotate(135deg);
            transform: scale(0) rotate(135deg);
    opacity: 0;
  }

  80% {
    -webkit-transform: scale(0) rotate(135deg);
            transform: scale(0) rotate(135deg);
    opacity: 0.5;
  }

  81% {
    -webkit-transform: scale(4) rotate(135deg);
            transform: scale(4) rotate(135deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(50) rotate(135deg);
            transform: scale(50) rotate(135deg);
    opacity: 0;
  }
}

@keyframes shiny-btn1 {
  0% {
    -webkit-transform: scale(0) rotate(135deg);
            transform: scale(0) rotate(135deg);
    opacity: 0;
  }

  80% {
    -webkit-transform: scale(0) rotate(135deg);
            transform: scale(0) rotate(135deg);
    opacity: 0.5;
  }

  81% {
    -webkit-transform: scale(4) rotate(135deg);
            transform: scale(4) rotate(135deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(50) rotate(135deg);
            transform: scale(50) rotate(135deg);
    opacity: 0;
  }
}

.c-cta__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: inherit;
}

.c-cta__button-arrow {
  min-height: inherit;
  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: #21503d;
  padding-right: 3rem;
  padding-left: 3rem;
}

.c-cta__button-image {
  width: 4rem;
  aspect-ratio: 1/1;
}

.c-cta__button-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-cta__button-body {
  min-height: inherit;
  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;
  padding-right: 3rem;
  padding-left: 3rem;
}

.c-cta__button-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 100%;
  letter-spacing: 0.1em;
  color: #ffffff;
  white-space: nowrap;
}

.c-result-item {
  padding: 3rem 2rem 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #ffffff;
  border: 2px solid #f1643b;
  border-radius: 0.5rem;
  background-image: url(../img/common/about_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.c-result-item__title {
  padding: 1rem 4rem;
  background-color: #fffbea;
  border: 2px solid #6f5347;
  border-radius: 0.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #6f5347;
}

.c-result-item__body {
  position: relative;
}

.c-result-item__body::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  right: 1.4rem;
  width: 4rem;
  aspect-ratio: 40/25;
  background-image: url(../img/common/common_arrow-up_wide.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.c-result-item__body::after {
  content: "";
  position: absolute;
  bottom: -2.7rem;
  left: -3.5rem;
  width: 22.8rem;
  aspect-ratio: 228/36;
  background-image: url(../img/common/common_line.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.c-result-item__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 120%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #f1643b;
}

.c-result-item__text .c-result-item__text-strong {
  font-size: 8rem;
  line-height: 120%;
}

.p-result__case-caution {
  margin-top: 2rem;
  margin-left: auto;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.45;
  letter-spacing: 0.05em;
  color: #333333;
}

.p-header {
  width: 100%;
}

.p-header__inner {
  width: 100%;
  max-width: 129rem;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  margin-inline: auto;
}

.p-header__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-header__left {
  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;
  padding-top: 1.7rem;
  padding-bottom: 1.6rem;
}

.p-header__logo {
  width: 21.4rem;
  aspect-ratio: 214/50;
}

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

.p-header__title {
  color: #979797;
  font-weight: 400;
  font-size: max(1.2rem, 10px);
  line-height: 100%;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.p-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 3rem;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.p-header__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.p-header__tel-icon {
  width: 4rem;
  aspect-ratio: 40/40;
}

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

.p-header__tel-text-wrapper {
  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.3rem;
}

.p-header__tel-number {
  font-weight: 500;
  font-size: max(2.4rem, 10px);
  line-height: 100%;
  color: #f98523;
}

.p-header__tel-time {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: max(1.2rem, 10px);
  line-height: 1.4166666667;
  color: #f98523;
}

.p-header__cta-button {
  display: inline-block;
  background-color: #189e67;
  border-radius: 10rem;
  overflow: hidden;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-header__cta-button:hover {
  opacity: 0.8;
}

.p-header__cta-button a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.5rem 5rem 1.6rem 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: max(1.4rem, 10px);
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.p-header__cta-button a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: max(1.4rem, 10px);
  aspect-ratio: 1/1;
  background-image: url(../img/common/arrow_small.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-mv {
  width: 100%;
  position: relative;
  aspect-ratio: 1440/720;
}

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

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

.p-mv_body {
  position: absolute;
  top: 10.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-mv__title {
  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;
}

.p-mv__text-small {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 150%;
  color: #4d4846;
}

.p-mv__text-small .p-mv__text-small-frame {
  display: inline-block;
  margin-left: 1rem;
  margin-right: 1rem;
  padding: 0.4rem 1.9rem;
  background-color: #fffaef;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 4.2rem;
  line-height: 100%;
  letter-spacing: 0.05em;
  border: 1px solid #6f5347;
  color: #6f5347;
}

.p-mv__text-small .p-mv__text-small-frame:first-child {
  margin-left: 0;
}

.p-mv__text-small .p-mv__text-small-frame.p-mv__text-small-frame--deco {
  background-image: url(../img/common/common_arrow-up-transparent.webp);
  background-size: 9.5rem auto;
  background-repeat: no-repeat;
  background-position: calc(100% + 0.6rem) 0.5rem;
}

.p-mv__text-small .p-mv__text-small-frame .p-mv__text-small-strong {
  font-size: 6.4rem;
  line-height: 100%;
  letter-spacing: 0.1em;
}

.p-mv__text-small .p-mv__text-small-frame .p-mv__text-small-strong.p-mv__text-small-strong--ls0 {
  letter-spacing: 0;
}

.p-mv__text-main {
  margin-top: 1.5rem;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 10.8rem;
  line-height: 100%;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left bottom, left top, from(#f9815e), color-stop(36.11%, #ed592e), color-stop(88.89%, #f9815e));
  background: linear-gradient(0deg, #f9815e 0%, #ed592e 36.11%, #f9815e 88.89%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-mv__text-main .p-mv__text-main-small {
  font-size: 8rem;
  line-height: 100%;
}

.p-mv__text-main .p-mv__text-main-org {
  position: relative;
  background: -webkit-gradient(linear, left bottom, left top, from(#f9815e), color-stop(36.11%, #ed592e), color-stop(88.89%, #f9815e));
  background: linear-gradient(0deg, #f9815e 0%, #ed592e 36.11%, #f9815e 88.89%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 2;
}

.p-mv__text-main .p-mv__text-main-copied {
  position: absolute;
  top: 0;
  left: 0;
  color: #ffffff;
  text-shadow: 0px 0px 20px rgba(22, 18, 15, 0.12);
  -webkit-text-stroke-width: 1rem;
  -webkit-text-stroke-color: #fff;
}

.p-mv__text-medium {
  margin-top: 2.5rem;
  font-weight: 700;
  font-size: 5rem;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #4d4846;
}

.p-mv__points {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}

.p-mv__point {
  position: relative;
  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.7rem;
  min-width: 14rem;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #f77c18 0%, #fe9d3e 100%);
  border-radius: 50%;
  padding: 2.3rem 1.2rem;
}

.p-mv__point::after {
  content: "";
  position: absolute;
  width: calc(100% - 0.4rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #ffffff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-mv__point-icon {
  width: 4rem;
  aspect-ratio: 40/30;
}

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

.p-mv__point-text {
  font-weight: 700;
  font-size: 2rem;
  line-height: 110%;
  text-align: center;
  color: #ffffff;
}

.p-mv__point-text-strong {
  font-size: 2.4rem;
  line-height: 110%;
}

.p-mv__point-text.p-mv__point-text--lh-large,
.p-mv__point-text-strong.p-mv__point-text-strong--lh-large {
  line-height: 120%;
}

.p-mv__catch {
  margin-top: 1.8rem;
  padding: 0.5rem 3rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(6.59%, #ffffff), color-stop(47.5%, #ffffff), color-stop(91.96%, #ffffff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #ffffff 6.59%, #ffffff 47.5%, #ffffff 91.96%, rgba(255, 255, 255, 0) 100%);
}

.p-mv__catch-text {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 150%;
  text-align: center;
  color: #333333;
  text-shadow: 0px 0px 20px rgba(22, 18, 15, 0.12);
}

.p-mv__catch-text-strong {
  font-weight: 700;
}

/*
 上書きスタイル soujya02
---------------------*/

.p-mv__title--v2 {
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
  margin-left: 2.6rem;
}

.p-mv__title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
}

.p-mv__title-container02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.p-mv__title-speech01 {
  background: linear-gradient(135deg, #f77c18 0%, #fe9d3e 100%);
  color: #ffffff;
  letter-spacing: 0.05em;
  border-radius: 0.9rem;
  font-size: 4.6em;
  padding: 1.4rem 0.8rem;
  font-weight: 700;
  line-height: 1;
}

.p-mv__title-speech02 {
  font-size: 3.2rem;
  color: #333333;
  font-weight: 700;
  line-height: 1;
}

.p-mv__title-speech02-strong {
  font-size: 5.6rem;
}

.p-mv__title-speech02-medium {
  font-size: 4.2rem;
}

.p-mv__text-copy {
  font-size: 4.2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0.6rem;
  font-weight: 700;
  line-height: 1;
  padding-left: 1rem;
  padding-right: 1rem;
  color: #333333;
}

.p-mv__text-copy-strong:first-child {
  font-size: 5.6rem;
}

.p-mv__text-copy-strong:nth-child(2) {
  font-size: 4.5rem;
}

.p-mv__text-copy-strong:nth-child(3) {
  font-size: 5rem;
}

.p-mv__text-main--v2 {
  margin-top: 1rem;
  font-size: 8.4rem;
}

.p-mv__text-main--v2 .p-mv__text-main-org {
  line-height: 1;
  white-space: nowrap;
}

.p-mv__point--v2 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 16rem;
  margin-right: -1rem;
  padding: 0;
}

.p-mv__point-text--v2 {
  font-size: 2.9rem;
  font-family: "Noto Sans JP", sans-serif;
}

.p-mv__point-text-head {
  font-size: 1.8rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background: #ffffff;
  color: #fc9130;
  border-radius: 0.9rem;
  line-height: 1;
  padding: 0.55rem 0.9rem;
}

.p-mv__point-text-strong--v2 {
  font-size: 3.6rem;
}

.p-mv__text-small--v2 {
  margin-top: 1.5rem;
  min-height: 8.8rem;
}

.p-mv__text-small-bg {
  position: relative;
}

.p-mv__text-small-arrow {
  position: absolute;
  display: inline-block;
  z-index: 1;
  top: 50%;
  left: 60%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 8.7rem;
}

.p-mv__text-small-arrow img {
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 110/84;
  height: 100%;
  width: auto;
}

.mv__text-small-wrapper {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  line-height: 1;
}

.p-mv__text-small-frame--v2 {
  position: absolute;
  content: "";
  width: 59rem;
  height: 8.7rem;
}

.mv__text-small-wrapper {
  font-size: 4.5rem;
}

.p-mv__text-small .p-mv__text-small-frame--v2 {
  border: 0.35rem solid #6f5347;
  white-space: nowrap;
  padding: 0;
  font-size: 7rem;
}

.p-mv__text-small .p-mv__text-small-frame .p-mv__text-small-strong--v2 {
  letter-spacing: 0;
  font-size: 7rem;
}

.p-mv__text-small .p-mv__text-small-frame .p-mv__text-small-strong--v2:first-child {
  letter-spacing: -0.7rem;
}

.p-mv__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.p-mv__item {
  font-size: 2.1rem;
  letter-spacing: 0.05rem;
  background: #ffffff;
  padding: 0.8rem 0.35rem;
  font-weight: 500;
}

.p-mv__catch--v2 {
  margin-top: 3rem;
}

.p-cta {
  width: 100%;
}

.p-cta__heading-area {
  padding: 3rem 2rem;
  background-color: #573b2f;
}

.p-cta__heading-area.p-cta__heading-area--first {
  background-color: #f98523;
}

.p-cta__heading-area.p-cta__heading-area--fukidashi {
  position: relative;
  padding-top: 7rem;
}

.p-cta__heading-fukidashi {
  position: absolute;
  width: 8rem;
  aspect-ratio: 80/90;
  top: -3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-filter: drop-shadow(0px 10px 30px rgba(52, 31, 9, 0.1));
          filter: drop-shadow(0px 10px 30px rgba(52, 31, 9, 0.1));
}

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

.p-cta__heading {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-align: center;
  color: #ffffff;
}

.p-cta__heading .p-cta__heading-frame {
  display: inline-block;
  margin-right: 0.2em;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  color: #f98523;
  background-color: #ffffff;
}

.p-cta__heading .p-cta__heading-line {
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  color: #ffefaf;
}

.p-cta__heading .p-cta__heading-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2.4px;
  background-color: #ffefaf;
  left: 0;
  right: 0;
  bottom: -0.3rem;
}

.p-cta__content {
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fffbea;
}

.p-cta__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}

.p-cta__item-num {
  width: 8rem;
  aspect-ratio: 80/45;
  margin-inline: auto;
}

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

.p-cta__item-body {
  min-width: 34.5rem;
  height: calc(100% - 2.4rem);
  margin-top: -2rem;
  padding: 4rem;
  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;
  background-color: #ffffff;
  border: 2px solid #6f5347;
  border-radius: 0.5rem;
}

.p-cta__item-title {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.4545454545;
  letter-spacing: 0.05em;
  text-align: center;
  color: #6f5347;
}

.p-cta__item-title .p-cta__item-title-frame {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #f98523;
  font-size: 3.1rem;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.p-cta__item-title .p-cta__item-title-frame .p-cta__item-title-frame-large {
  font-size: 4.5rem;
  line-height: 100%;
}

.p-cta__item-caution {
  margin-top: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(1.6rem, 10px);
  line-height: 1.4375;
  letter-spacing: 0.05em;
}

.p-cta__item-caution + .p-cta__item-caution {
  margin-top: 1rem;
}

.p-cta__item-before {
  min-width: 20rem;
  aspect-ratio: 200/60;
  padding: 0.6rem 1rem;
  background-image: url(../img/common/cta_item_bg.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-weight: 700;
  font-size: max(1.6rem, 10px);
  line-height: 110%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #6f5347;
}

.p-cta__item-before .p-cta__item-before-large {
  font-size: 2.2rem;
  line-height: 110%;
}

.p-cta__item-price {
  position: relative;
  margin-left: auto;
  padding-bottom: 2.1rem;
  font-weight: 700;
  font-size: 3rem;
  line-height: 120%;
  letter-spacing: 0.05em;
  color: #f98523;
  z-index: 1;
}

.p-cta__item-price::before,
.p-cta__item-price::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.p-cta__item-price::before {
  width: 10.3rem;
  aspect-ratio: 103/105;
  top: -3.6rem;
  left: -8.2rem;
  background-image: url(../img/common/cta_fukidashi.webp);
}

.p-cta__item-price::after {
  width: 22.8rem;
  aspect-ratio: 228/33;
  bottom: 0;
  left: -0.5rem;
  background-image: url(../img/common/common_line.webp);
}

.p-cta__item-price .p-cta__item-price-large {
  font-size: 6.2rem;
  line-height: 120%;
}

.p-cta__button {
  margin-top: 3.6rem;
}

.p-trouble {
  position: relative;
  width: 100%;
  background-image: url(../img/common/trouble_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.p-trouble__heading {
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 130%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #ffffff;
}

.p-trouble__heading .p-trouble__heading-large {
  font-size: 4rem;
  line-height: 130%;
}

.p-trouble__heading .p-trouble__heading-large .p-trouble__heading-strong {
  font-family: "Noto Serif JP", serif;
  font-size: 5.5rem;
  line-height: 130%;
  color: #ec7b2a;
}

.p-trouble__content {
  position: relative;
  margin-top: 6rem;
  padding-bottom: 8rem;
}

.p-trouble__content::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35rem;
  aspect-ratio: 350/176;
  background-image: url(../img/common/trouble_illust.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-trouble__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.p-trouble__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3rem 2rem 2.4rem 3rem;
  background-color: rgba(255, 255, 255, 0.94);
  border-radius: 1rem;
  font-weight: 400;
  font-size: max(1.8rem, 10px);
  line-height: 130%;
  letter-spacing: 0.05em;
  color: #333333;
}

.p-trouble__item::before {
  content: "";
  position: absolute;
  top: -0.8rem;
  left: -0.8rem;
  width: 6rem;
  aspect-ratio: 1/1;
  background-image: url(../img/common/icon_check.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-trouble__item .p-trouble__item-danger {
  font-weight: 700;
  color: #d4341f;
}

.p-trouble__next {
  position: absolute;
  left: 50%;
  bottom: 2.6rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  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-trouble__next span {
  width: 4rem;
  height: 1.6rem;
  background-color: #ffffff;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.p-appeal {
  width: 100%;
}

.p-appeal__heading {
  width: 100%;
  padding-top: 3.3rem;
  padding-bottom: 6rem;
  background-color: #f98523;
  -webkit-clip-path: polygon(50% 100%, 100% 80%, 100% 0, 0 0, 0 80%);
          clip-path: polygon(50% 100%, 100% 80%, 100% 0, 0 0, 0 80%);
  margin-bottom: -4.3rem;
}

.p-appeal__heading-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 1rem 2rem;
  background-color: #ffff00;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333333;
}

.p-appeal__heading-title {
  margin-top: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-align: center;
}

.p-appeal__heading-title .p-appeal__heading-title-strong {
  font-size: 6rem;
  line-height: 100%;
  position: relative;
}

.p-appeal__heading-title .p-appeal__heading-title-strong::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ffff00;
}

.p-appeal__content {
  width: 100%;
}

.p-appeal__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-appeal__image {
  width: 47rem;
  aspect-ratio: 470/500;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

.p-appeal__body {
  width: 100%;
  padding-top: 7.8rem;
}

.p-appeal__body-title {
  font-weight: 700;
  font-size: 5rem;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  background: -webkit-gradient(linear, left bottom, left top, from(#f9815e), color-stop(36.11%, #ed592e), color-stop(88.89%, #f9815e));
  background: linear-gradient(0deg, #f9815e 0%, #ed592e 36.11%, #f9815e 88.89%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-appeal__body-title .p-appeal__body-title-small {
  font-size: 4.4rem;
  line-height: 100%;
}

.p-appeal__body-text {
  margin-top: 2rem;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333333;
}

.p-appeal__body-text .p-appeal__body-text-strong {
  font-weight: 700;
}

.p-appeal__points {
  margin-top: 2rem;
}

.p-appeal__items {
  width: 100%;
  max-width: 36.5rem;
  margin-inline: auto;
  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-appeal__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  padding: 1.5rem 4rem;
  background-color: #fffbea;
  border: 1px solid #6f5347;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 130%;
  letter-spacing: 0.05em;
  color: #6f5347;
}

.p-appeal__item::before {
  content: "";
  display: inline-block;
  width: 4.5rem;
  aspect-ratio: 45/30;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-appeal__item:nth-child(1)::before {
  background-image: url(../img/common/common_icon_1.webp);
}

.p-appeal__item:nth-child(2)::before {
  background-image: url(../img/common/common_icon_2.webp);
}

.p-appeal__item:nth-child(3)::before {
  background-image: url(../img/common/common_icon_3.webp);
}

.p-appeal__cta {
  width: 100%;
  background-image: url(../img/common/appeal_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.p-appeal__cta-fukidashi {
  margin-inline: auto;
}

.p-appeal__cta-text {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 3.1rem;
  margin-inline: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.4375;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333333;
}

.p-appeal__cta-text + .p-appeal__cta-text {
  margin-top: 1.6rem;
}

.p-appeal__cta-text .p-appeal__cta-text-large {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}

.p-appeal__cta-text .p-appeal__cta-text-large .p-appeal__cta-text-strong {
  font-size: 5rem;
  line-height: 1.18;
}

.p-appeal__cta-text-deco {
  position: absolute;
  top: 0.2rem;
  right: -5.6rem;
  width: 5.4rem;
  aspect-ratio: 54/41;
  background-image: url(../img/common/common_arrow-up.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-appeal__cta-button {
  margin-top: 3rem;
}

.p-about {
  width: 100%;
  background-color: #ffffff;
}

.p-about__heading {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 2rem;
  background-color: #fffaef;
  border: 2px solid #6f5347;
  border-radius: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-align: center;
  color: #6f5347;
}

.p-about__content {
  position: relative;
  margin-top: 5rem;
  z-index: 2;
}

.p-about__content::after {
  content: "";
  position: absolute;
  top: -18.9rem;
  right: 1.3rem;
  width: 20rem;
  height: 20rem;
  background-image: url(../img/common/about_illust.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

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

.p-about__item {
  padding: 4rem 5rem;
  background-image: url(../img/common/about_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 4rem;
  border-radius: 1rem;
}

.p-about__item:nth-child(1) {
  border: 2px solid #f06339;
  background-color: #fff5f2;
}

.p-about__item:nth-child(1) .p-about__item-title {
  color: #f06339;
}

.p-about__item:nth-child(2) {
  border: 2px solid #f98523;
  background-color: #fffbea;
}

.p-about__item:nth-child(2) .p-about__item-title {
  color: #f98523;
}

.p-about__item:nth-child(3) {
  border: 2px solid #5aa320;
  background-color: #f5ffed;
}

.p-about__item:nth-child(3) .p-about__item-title {
  color: #5aa320;
}

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

.p-about__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;
  width: 100%;
  gap: 2.3rem;
}

.p-about__item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.4333333333;
  letter-spacing: 0.05em;
}

.p-about__item-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: max(1.6rem, 10px);
  line-height: 200%;
  letter-spacing: 0;
  color: #333333;
}

.p-about__item-image {
  width: 42rem;
  aspect-ratio: 420/210;
  border-radius: 1rem;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

.p-point {
  width: 100%;
  background-color: #f5f5f5;
}

.p-point__fukidashi {
  margin-inline: auto;
}

.p-point__heading {
  margin-top: 4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333333;
}

.p-point__heading .p-point__heading-large {
  font-size: 5rem;
  line-height: 130%;
}

.p-point__heading .p-point__heading-large .p-point__heading-strong {
  font-size: 6.4rem;
  line-height: 130%;
}

.p-point__content {
  margin-top: 3.4rem;
}

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

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

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

.p-point__item-image {
  width: 47.6851851852%;
  aspect-ratio: 515/350;
  border-radius: 1rem;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

.p-point__item-body {
  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;
}

.p-point__item-num {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 150%;
  color: #ffffff;
  -webkit-text-stroke-width: 0.1rem;
  -webkit-text-stroke-color: #f98523;
}

.p-point__item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #333333;
}

.p-point__item-title .p-point__item-strong {
  font-size: 4rem;
  line-height: 150%;
}

.p-point__item-detail {
  margin-top: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: max(1.6rem, 10px);
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #333333;
}

.p-point__item-detail + .p-point__item-detail {
  margin-top: 1.5em;
}

.p-point__other {
  position: relative;
  margin-top: 10rem;
  width: 100%;
  max-width: 90rem;
  margin-inline: auto;
  border: 2px solid #f98523;
  border-radius: 1rem;
  background-color: #ffffff;
  background-image: url(../img/common/point_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
}

.p-point__other::before {
  content: "";
  position: absolute;
  top: -5rem;
  left: -5rem;
  width: 16.1rem;
  aspect-ratio: 161/152;
  background-image: url(../img/common/point_illust_1.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-point__other::after {
  content: "";
  position: absolute;
  bottom: -2rem;
  right: -6rem;
  width: 20.8rem;
  aspect-ratio: 208/124;
  background-image: url(../img/common/point_illust_2.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-point__other-wrapper {
  padding-bottom: 3.5rem;
}

.p-point__other-fukidashi {
  margin-inline: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-point__other-text {
  margin-top: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-point__other-text .p-point__other-text-large {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 150%;
}

.p-point__other-points {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-point__other-item {
  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: 1rem;
  background-color: #fffbea;
  border: 2px solid #6f5347;
  border-radius: 1rem;
  padding-top: 1.4rem;
  padding-bottom: 1.6rem;
}

.p-point__other-item::before {
  content: "";
  display: block;
  width: 4.5rem;
  aspect-ratio: 45/30;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-point__other-item:nth-child(1) {
  position: relative;
  padding-right: 4rem;
  padding-left: 3rem;
}

.p-point__other-item:nth-child(1)::before {
  background-image: url(../img/common/common_icon_1.webp);
}

.p-point__other-item:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.3rem;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 4.5rem;
  aspect-ratio: 1/1;
  background-image: url(../img/common/point_by.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-point__other-item:nth-child(2) {
  padding-right: 3rem;
  padding-left: 4rem;
}

.p-point__other-item:nth-child(2)::before {
  background-image: url(../img/common/common_icon_2.webp);
}

.p-point__other-item-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 130%;
  letter-spacing: 0.05em;
  color: #6f5347;
}

.p-point__other-points + .p-point__other-text {
  margin-top: 1.2rem;
}

.p-student-yes {
  width: 100%;
  background-image: url(../img/common/student_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

.p-student-yes__heading {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.4642857143;
  text-align: center;
  color: #333333;
}

.p-student-yes__heading::before {
  content: "";
  position: absolute;
  bottom: 0.3rem;
  left: -2rem;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  width: 4.8rem;
  aspect-ratio: 48/67;
  background-image: url(../img/common/student_illust_heading_1.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-student-yes__heading::after {
  content: "";
  position: absolute;
  bottom: 0.3rem;
  right: -2rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 8.4rem;
  aspect-ratio: 84/65;
  background-image: url(../img/common/student_illust_heading_2.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-student-yes__heading .p-student-yes__heading-frame {
  display: inline-block;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-right: 0.2em;
  font-size: 4rem;
  line-height: 1.45;
  color: #ffffff;
  background-color: #f98523;
}

.p-student-yes__content {
  margin-top: 5rem;
}

.p-student-yes__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.p-student-yes__item {
  padding: 3rem 2rem;
  background-color: #fffbea;
  border: 2px solid #6f5347;
  border-radius: 1rem;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
  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;
}

.p-student-yes__item-illust {
  height: 9.8rem;
}

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

.p-student-yes__item-title {
  margin-top: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 200%;
  letter-spacing: 0.05em;
  color: #6f5347;
  text-align: center;
}

.p-student-yes__item-text {
  margin-top: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: max(1.6rem, 10px);
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #333333;
}

.p-student-no {
  width: 100%;
  background-color: #9d9d9d;
}

.p-student-no__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.4642857143;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-align: center;
}

.p-student-no__heading .p-student-no__heading-large {
  font-size: 4rem;
  line-height: 1.45;
}

.p-student-no__content {
  margin-top: 7.6rem;
}

.p-student-no__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}

.p-student-no__item {
  width: 100%;
  position: relative;
  padding: 4.5rem 2rem 4rem;
  background-color: #ffffff;
  border: 2px solid #666666;
  border-radius: 1rem;
  background-size: 10.2rem 9.5rem;
  background-repeat: no-repeat;
  background-position: right bottom;
  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;
}

.p-student-no__item:nth-child(1) {
  background-image: url(../img/common/student_illust_bg_1.webp);
}

.p-student-no__item:nth-child(2) {
  background-image: url(../img/common/student_illust_bg_2.webp);
}

.p-student-no__item:nth-child(3) {
  background-image: url(../img/common/student_illust_bg_3.webp);
}

.p-student-no__item-num {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 5rem;
  aspect-ratio: 1/1;
  background-color: #d2d2d2;
  border: 2px solid #666666;
  border-radius: 100%;
  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;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 100%;
  text-align: center;
  color: #666666;
}

.student-no__item-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333333;
}

.p-flow {
  width: 100%;
  background-color: #ffffff;
}

.p-flow__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.4642857143;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333333;
}

.p-flow__heading .p-flow__heading-frame span {
  margin-top: 1rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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: #fffaef;
  border: 2px solid #6f5347;
  border-radius: 0.5rem;
  width: 1.45em;
  height: 1.45em;
  font-size: 4rem;
  line-height: 1.45;
  color: #6f5347;
}

.p-flow__heading span + span {
  margin-left: 0.5rem;
}

.p-flow__content {
  margin-top: 6.5rem;
}

.p-flow__steps {
  width: 100%;
  max-width: 58rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8.5rem;
}

.p-flow__step {
  position: relative;
  margin-left: auto;
  padding: 1.7rem 1rem 2.7rem 10rem;
  width: 100%;
  max-width: 48rem;
  background-color: #fffaef;
  border: 2px solid #6f5347;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
}

.p-flow__step + .p-flow__step::before {
  content: "";
  position: absolute;
  left: 18.9rem;
  top: -3.5rem;
  -webkit-transform: translate(0%, -100%);
          transform: translate(0%, -100%);
  width: 4rem;
  height: 1.5rem;
  background-color: #6f5347;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.p-flow__step-image {
  position: absolute;
  top: 50%;
  left: -10.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0.5rem;
  background-color: #ffffff;
  border: 2px solid #f98523;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(43, 29, 18, 0.12);
          box-shadow: 0px 0px 20px 0px rgba(43, 29, 18, 0.12);
}

.p-flow__step-image img {
  border-radius: 0.5rem;
  width: 18rem;
  height: auto;
  aspect-ratio: 180/120;
}

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

.p-flow__step-num {
  padding: 0.3rem 1rem;
  background-color: #f98523;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: max(1.2rem, 10px);
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-transform: uppercase;
}

.p-flow__step-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.45;
  letter-spacing: 0.05em;
  color: #f98523;
}

.p-result {
  width: 100%;
}

.p-result__heading-area {
  position: relative;
  padding-top: 5.8rem;
  padding-bottom: 14.8rem;
  background-color: #f98523;
}

.p-result__fukidashi {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 1.2rem 5rem 0.8rem;
  background-color: #ffffff;
  border: 1px solid #f98523;
  border-radius: 5rem;
  -webkit-filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.17));
          filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.17));
}

.p-result__fukidashi::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  border-style: solid;
  border-right: 1rem solid transparent;
  border-left: 1rem solid transparent;
  border-top: 1.5rem solid #ffffff;
  border-bottom: 0;
}

.p-result__fukidashi::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 110%);
          transform: translate(-50%, 110%);
  border-style: solid;
  border-right: 1rem solid transparent;
  border-left: 1rem solid transparent;
  border-top: 1.5rem solid #f98523;
  border-bottom: 0;
}

.p-result__container--example02 .p-result__fukidashi {
  width: 52rem;
}

.p-result__fukidashi--example {
  margin-inline: auto;
}

.p-result__fukidashi-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.4642857143;
  letter-spacing: 0.05em;
  text-align: center;
  color: #f98523;
}

.p-result__fukidashi-text--example {
  line-height: 110%;
}

.p-result__fukidashi-text .p-result__fukidashi-text-strong {
  font-size: 3.2rem;
  line-height: 1.4375;
}

.p-result__fukidashi-text .p-result__fukidashi-text-strong span {
  position: relative;
}

.p-result__fukidashi-text .p-result__fukidashi-text-strong span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.5rem;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: #f98523;
}

.p-result__heading {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 5.6rem;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #ffff00;
}

.p-result__heading::before {
  content: "";
  position: absolute;
  left: -8rem;
  bottom: -4rem;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  width: 11.5rem;
  height: 14rem;
  background-image: url(../img/common/case_illust_heading_1.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-result__heading::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -4rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 10.9rem;
  height: 14rem;
  background-image: url(../img/common/case_illust_heading_2.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-result__heading--example {
  margin-top: 4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333333;
}

.p-result__heading--example .p-result__heading-large--example {
  font-size: 5rem;
  line-height: 130%;
}

.p-result__heading--example .p-result__heading-large--example .p-result__heading-strong--example {
  font-size: 6.4rem;
  line-height: 130%;
}

.p-result__container {
  width: 100%;
  padding-bottom: 8rem;
  background-color: #fff1e5;
  background-image: url(../img/common/case_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.p-result__container--example {
  background: #fffbea;
  padding-bottom: 10rem;
}

.p-result__container--example02 {
  position: relative;
}

.p-result__content {
  position: relative;
  margin-top: -11rem;
  width: 100%;
  background-color: #fff6f4;
  border: 5px solid #f1643b;
  border-radius: 5rem;
  padding: 4rem 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.6rem;
}

.p-result__content--example {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 5rem;
  margin-top: 4.3rem;
  gap: 4rem;
}

.p-result__content--example02 {
  width: 100%;
  max-width: 60rem;
  margin-inline: auto;
  border: 3px solid #6f5347;
  border-radius: 2rem;
  padding: 10rem 0 4rem;
}

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

.p-result__case-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 1.3rem 2rem;
  background-color: #ffffff;
  border: 2px solid #6f5347;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333333;
}

.p-result__case-items {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.2rem;
}

.p-result__case-item {
  width: 345rem;
  max-width: 34.5rem;
}

.c-result-item {
  padding: 3rem 2rem 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #ffffff;
  border: 2px solid #f1643b;
  border-radius: 0.5rem;
  background-image: url(../img/common/about_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.c-result-item__title {
  padding: 1rem 4rem;
  background-color: #fffbea;
  border: 2px solid #6f5347;
  border-radius: 0.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #6f5347;
}

.c-result-item__body {
  position: relative;
}

.c-result-item__body::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  right: 1.4rem;
  width: 4rem;
  aspect-ratio: 40/25;
  background-image: url(../img/common/common_arrow-up_wide.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.c-result-item__body::after {
  content: "";
  position: absolute;
  bottom: -2.7rem;
  left: -3.5rem;
  width: 22.8rem;
  aspect-ratio: 228/36;
  background-image: url(../img/common/common_line.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.c-result-item__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 120%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #f1643b;
}

.c-result-item__text .c-result-item__text-strong {
  font-size: 8rem;
  line-height: 120%;
}

.p-result__case-caution {
  margin-top: 2rem;
  margin-left: auto;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.45;
  letter-spacing: 0.05em;
  color: #333333;
}

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

.p-result__item--example {
  text-align: center;
}

.p-result__item-title {
  font-size: 2.8rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #f98523;
}

.p-result__item-text {
  font-size: 3.2rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.p-access {
  width: 100%;
}

.p-access__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.4642857143;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333333;
}

.p-access__heading .p-access__heading-large {
  font-size: 4rem;
  line-height: 1.45;
}

.p-access__content {
  margin-top: 3rem;
}

.p-access__info {
  width: 100%;
  max-width: 85rem;
  margin-inline: auto;
}

.p-access__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
}

.p-access__body {
  padding-top: 5rem;
}

.p-access__logo {
  width: 21.9rem;
  aspect-ratio: 219/50;
}

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

.p-access__name {
  margin-top: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: max(1.4rem, 10px);
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #333333;
}

.p-access__text {
  margin-top: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: max(1.4rem, 10px);
  line-height: 160%;
  letter-spacing: 0.05em;
  color: #333333;
  text-transform: uppercase;
}

.p-access__image {
  width: 50rem;
  aspect-ratio: 500/300;
  border-radius: 1rem;
  overflow: hidden;
}

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

.p-access__map {
  margin-top: 5rem;
  width: 100%;
  aspect-ratio: 1080/300;
  border-radius: 1rem;
  overflow: hidden;
}

.p-access__map iframe {
  width: 100%;
  height: 100%;
}

.p-contact {
  position: relative;
  width: 100%;
  background-color: #fffbea;
}

.p-contact__fukidashi {
  margin-top: -7.4rem;
  margin-inline: auto;
}

.p-contact__heading {
  margin-top: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #333333;
  text-align: center;
}

.p-contact__heading .p-contact__heading-large .p-contact__heading-strong {
  font-size: 6.4rem;
  line-height: 100%;
  letter-spacing: 0.1em;
}

.p-contact__content {
  margin-top: 6rem;
  margin-inline: auto;
  width: 100%;
  max-width: 80rem;
}

.p-contact__item {
  width: 100%;
  background-color: #ffffff;
  border: 2px solid #6f5347;
  border-radius: 1rem;
}

.p-contact__item + .p-contact__item {
  margin-top: 5rem;
}

.p-tel a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 3.4rem;
}

.p-tel__wrapper {
  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: 2rem;
}

.p-tel__image {
  width: 12rem;
  aspect-ratio: 120/132;
}

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

.p-tel__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: 1.5rem;
}

.p-tel__body-text {
  padding: 0.5rem 1rem;
  background-color: #6f5347;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: max(1.6rem, 10px);
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #ffffff;
}

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

.p-tel__body-num-icon {
  width: 8rem;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

.p-tel__body-num-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-tel__body-num-body-text {
  font-weight: 700;
  font-size: 5rem;
  line-height: 100%;
  color: #f98523;
}

.p-tel__body-num-body-time {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.4583333333;
  color: #6f5347;
}

.p-form {
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.05);
}

.p-form__inner {
  width: 100%;
  max-width: 60rem;
  margin-inline: auto;
}

.p-form__title {
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333333;
}

.p-form__title .p-form__title-large {
  font-size: 4rem;
  line-height: 150%;
}

.p-form__text {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #fffbea;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: max(1.6rem, 10px);
  line-height: 150%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333333;
}

.p-form__body {
  margin-top: 3.8rem;
}

.p-form__wrapper {
  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-form__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: 1.3rem;
}

.p-form__label-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  font-weight: 400;
  font-size: max(1.6rem, 10px);
  line-height: 1.625;
}

.p-form__label-text .p-form__required {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background-color: #f98523;
  font-weight: 700;
  font-size: max(1.2rem, 10px);
  line-height: 100%;
  color: #ffffff;
}

.p-form__input-text {
  width: 100%;
  border: 1px solid #aaaaaa;
  border-radius: 0.5rem;
  padding: 0.7rem 1.8rem 0.7rem;
  font-weight: 400;
  font-size: max(1.4rem, 10px);
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
  color: #333333;
}

.p-form__input-text::-webkit-input-placeholder {
  color: #979797;
}

.p-form__input-text::-moz-placeholder {
  color: #979797;
}

.p-form__input-text:-ms-input-placeholder {
  color: #979797;
}

.p-form__input-text::-ms-input-placeholder {
  color: #979797;
}

.p-form__input-text::placeholder {
  color: #979797;
}

.p-form__input-text.p-form__input-text--textarea {
  height: 15rem;
}

.p-form__button {
  position: relative;
  margin-top: 5rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
}

.p-form__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2rem;
  aspect-ratio: 1/1;
  background-image: url(../img/common/arrow_reverse.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-form__input-button {
  padding: 2.5rem 10rem 2.5rem 6rem;
  border-radius: 5rem;
  background-color: #ffffff;
  border: 2px solid #0b8762;
  color: #0b8762;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 100%;
  letter-spacing: 0em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-form__input-button:hover {
  opacity: 0.8;
}

.p-form__button .wpcf7-spinner {
  display: none;
}

.p-form .wpcf7-response-output {
  display: none;
}

.p-form__privacy-text {
  margin-top: 4rem;
  font-weight: 400;
  font-size: max(1.5rem, 10px);
  line-height: 150%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333333;
}

.p-form__privacy-text a {
  color: #285eac;
  text-decoration: underline;
  -webkit-transition: -webkit-text-decoration 0.3s;
  transition: -webkit-text-decoration 0.3s;
  transition: text-decoration 0.3s;
  transition: text-decoration 0.3s, -webkit-text-decoration 0.3s;
}

.p-form__privacy-text a:hover {
  text-decoration: none;
}

.p-footer {
  width: 100%;
  background-color: #333333;
}

.p-footer__inner {
  padding-top: 10rem;
  padding-bottom: 3rem;
}

.p-footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-footer__info {
  margin-top: 1rem;
}

.p-footer__logo {
  width: 25rem;
  aspect-ratio: 255/60;
}

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

.p-footer__name {
  margin-top: 1rem;
  margin-left: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: max(1.6rem, 10px);
  line-height: 200%;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.p-footer__text-area {
  margin-top: 2rem;
  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-footer__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: max(1.7rem, 10px);
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-transform: uppercase;
}

.p-footer__icons {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.p-footer__icon a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-footer__icon a:hover {
  opacity: 0.7;
}

.p-footer__icon a img {
  width: 4rem;
  height: auto;
}

.p-footer__link-items {
  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-footer__link {
  display: inline-block;
  padding: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: max(1.6rem, 10px);
  line-height: 100%;
  color: #ffffff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-footer__link:hover {
  opacity: 0.7;
}

.p-footer__copy {
  margin-top: 6.7rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: max(1.6rem, 10px);
  line-height: 200%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #ffffff;
}

.p-thanks {
  width: 100%;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.p-thanks__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #333333;
  text-align: center;
}

.p-thanks__content {
  margin-top: 5rem;
}

.p-thanks__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: max(1.6rem, 10px);
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #333333;
  text-align: center;
}

.p-thanks__text p + p {
  margin-top: 1em;
}

.p-thanks__button {
  position: relative;
  margin-top: 6rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
}

.p-thanks__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2rem;
  aspect-ratio: 1/1;
  background-image: url(../img/common/arrow_reverse.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-thanks__button a {
  display: inline-block;
  padding: 2.5rem 10rem 2.5rem 6rem;
  border-radius: 5rem;
  background-color: #ffffff;
  border: 2px solid #0b8762;
  color: #0b8762;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 100%;
  letter-spacing: 0em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-thanks__button a:hover {
  opacity: 0.8;
}

.p-page-text {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background-color: #fffbea;
}

.p-page-text__heading {
  position: relative;
  margin-top: 2.4rem;
  padding-bottom: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #333333;
  text-align: center;
}

.p-page-text__heading::after {
  content: "";
  width: 6rem;
  height: 0.2rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #f98523;
}

.p-page-text__content {
  margin-top: 5rem;
  margin-bottom: 10rem;
  width: 100%;
  border-radius: 1rem;
  padding: 5rem 8rem;
  background-color: #ffffff;
}

.p-page-text__content h2 {
  margin-top: 4rem;
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 100%;
  letter-spacing: 0.05em;
}

.p-page-text__content h3 {
  margin-top: 4rem;
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 2rem;
  line-height: 100%;
  letter-spacing: 0.05em;
}

.p-page-text__content p,
.p-page-text__content li {
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: max(1.6rem, 10px);
  line-height: 200%;
  letter-spacing: 0.05em;
}

.p-page-text__content li {
  list-style: disc;
  margin-left: 1em;
}

.p-page-text__content p + p {
  margin-top: 1rem;
}

.u-md-show {
  display: none;
}

* > span.u-color-accent-primary {
  color: #ffff00;
}

* > span.u-color-accent-secondary {
  color: #fbf07d;
}

* > span.u-color-accent-danger {
  color: #ec7b2a;
}

* > span.u-color-main-primary {
  color: #f98523;
}

* > span.u-color-main-secondary {
  color: #ed592e;
}

.u-section-pt {
  padding-top: 5rem;
}

.u-section-pt.u-section-pt--result {
  padding-top: 5rem;
}

.u-section-pt.u-section-pt--about {
  padding-top: 10rem;
}

.u-section-pt.u-section-pt--contact {
  padding-top: 5rem;
}

.u-section-pb {
  padding-bottom: 5rem;
}

.u-section-pb.u-section-pb--result {
  padding-bottom: 10rem;
}

.u-section-pb.u-section-pb--about {
  padding-bottom: 10rem;
}

.u-section-pb.u-section-pb--point {
  padding-bottom: 10.5rem;
}

.u-section-pb.u-section-pb--flow {
  padding-bottom: 14.7rem;
}

.u-section-pb.u-section-pb--access {
  padding-bottom: 12.4rem;
}

.u-section-pb.u-section-pb--contact {
  padding-bottom: 10rem;
}

* > span.u-font-weight-bold {
  font-weight: 700;
}

.u-fukidashi {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 27.5rem;
  padding: 1rem 2.1rem;
  border-radius: 5rem;
  background-color: #f98523;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-align: center;
  color: #ffffff;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(43, 29, 18, 0.12);
          box-shadow: 0px 0px 20px 0px rgba(43, 29, 18, 0.12);
}

.u-fukidashi::after {
  content: "";
  position: absolute;
  bottom: -3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.9rem;
  height: 3rem;
  background-image: url(../img/common/heading_line.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.u-fukidashi--gray {
  background-color: #474747;
  padding: 1rem 4rem;
  font-family: "Noto Sans JP", sans-serif;
}

.u-fukidashi--gray::before,
.u-fukidashi--gray::after {
  content: "";
  position: absolute;
  left: 50%;
}

.u-fukidashi--gray::before {
  width: 0.1rem;
  height: 2rem;
  background: #474747;
  bottom: 0;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}

.u-fukidashi--gray::after {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.9rem;
  height: 0.9rem;
  background-color: #474747;
  background-image: none;
  border-radius: 100vh;
  bottom: -2.1rem;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

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

  .l-inner {
    width: 100%;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .l-flex-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .l-flex-center-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .l-flex-start-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .l-flex-end-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .l-flex-vertical-sp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .c-cta__text {
    gap: 1rem;
    font-size: 1.6rem;
  }

  .c-cta__text::before,
  .c-cta__text::after {
    width: 2rem;
  }

  .c-cta__button {
    min-height: 7rem;
    border-radius: 0.8rem;
    -webkit-filter: drop-shadow(0px 0px 1rem rgba(16, 39, 30, 0.22));
            filter: drop-shadow(0px 0px 1rem rgba(16, 39, 30, 0.22));
  }

  .c-cta__button-arrow {
    padding-right: 1.65rem;
    padding-left: 1.65rem;
  }

  .c-cta__button-image {
    width: 2.2rem;
  }

  .c-cta__button-body {
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }

  .c-cta__button-text {
    font-size: 1.8rem;
  }

  .c-result-item {
    padding: 2rem 2rem 2.4rem;
    gap: 0.3rem;
    background-image: url(../img/common/about_bg-sp.webp);
  }

  .c-result-item__title {
    padding: 0.3rem 1rem;
    border: 1px solid #6f5347;
    border-radius: 0.3rem;
    font-size: 1.4rem;
  }

  .c-result-item__body::before {
    top: 1rem;
    right: 0.8rem;
    width: 2.4rem;
  }

  .c-result-item__body::after {
    bottom: -1.4rem;
    left: -1.8rem;
    width: 12.1rem;
  }

  .c-result-item__text {
    font-size: 1.6rem;
  }

  .c-result-item__text .c-result-item__text-strong {
    font-size: 4.2rem;
  }

  .p-result__case-caution {
    font-size: 1.6rem;
  }

  .p-header__inner {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .p-header__wrapper {
    position: relative;
  }

  .p-header__left {
    gap: min(13px, 1rem);
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .p-header__logo {
    max-width: 212.8px;
    width: 16rem;
  }

  .p-header__title {
    font-size: clamp(10px, 1.2rem, 16px);
    margin-top: 1rem;
  }

  .p-header__right {
    position: absolute;
    padding: 0;
    top: 2.2rem;
    right: 0;
  }

  .p-header__cta-button a {
    padding: 1rem 3.2rem 1rem 1.5rem;
    font-size: clamp(10px, 1.2rem, 16px);
  }

  .p-header__cta-button a::after {
    right: 1.5rem;
    width: clamp(10px, 1.2rem, 16px);
  }

  .p-mv {
    aspect-ratio: 375/569;
  }

  .p-mv_body {
    top: 3.7rem;
    width: 100%;
  }

  .p-mv__text-small {
    font-size: 2.2rem;
  }

  .p-mv__text-small .p-mv__text-small-frame {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 0.3rem;
    font-size: 2.6rem;
  }

  .p-mv__text-small .p-mv__text-small-frame:first-child {
    margin-left: 0;
  }

  .p-mv__text-small .p-mv__text-small-frame.p-mv__text-small-frame--deco {
    background-size: 6.2rem auto;
    background-position: calc(100% + 0.3rem) 0.1rem;
  }

  .p-mv__text-small .p-mv__text-small-frame .p-mv__text-small-strong {
    font-size: 4rem;
  }

  .p-mv__text-small .p-mv__text-small-frame .p-mv__text-small-strong.p-mv__text-small-strong--ls0 {
    letter-spacing: 0;
  }

  .p-mv__text-main {
    font-size: 5.6rem;
  }

  .p-mv__text-main .p-mv__text-main-small {
    font-size: 4rem;
  }

  .p-mv__text-main .p-mv__text-main-copied {
    -webkit-text-stroke-width: 0.6rem;
  }

  .p-mv__text-medium {
    margin-top: 1.5rem;
    font-size: 3.2rem;
  }

  .p-mv__points {
    margin-top: 2rem;
    gap: 0.8rem;
  }

  .p-mv__point {
    padding: 1.3rem 0.8rem;
    gap: 0.1rem;
    min-width: 8.4rem;
  }

  .p-mv__point::after {
    width: calc(100% - 0.5rem);
  }

  .p-mv__point-icon {
    width: 2.7rem;
  }

  .p-mv__point-text {
    font-size: 1.2rem;
  }

  .p-mv__point-text-strong {
    font-size: 1.4rem;
    line-height: 110%;
  }

  .p-mv__point-text.p-mv__point-text--lh-large,
  .p-mv__point-text-strong.p-mv__point-text-strong--lh-large {
    line-height: 130%;
  }

  .p-mv__catch {
    width: 100%;
    padding: 0.5rem 1rem;
    background: #ffffff;
  }

  .p-mv__catch-text {
    font-size: 1.8rem;
  }

  .p-mv_inner {
    max-width: 34.5rem;
    margin-inline: auto;
  }

  .p-mv__title--v2 {
    margin-left: 0;
  }

  .p-mv__title-container02 {
    gap: 0.3rem;
    margin-top: 1.5rem;
  }

  .p-mv__title-speech01 {
    font-size: 2.6rem;
    padding: 0.8rem 0.5rem;
    border-radius: 0.5rem;
  }

  .p-mv__title-speech02 {
    font-size: 1.8rem;
  }

  .p-mv__title-speech02-strong {
    font-size: 3.2rem;
  }

  .p-mv__title-speech02-medium {
    font-size: 2.4rem;
  }

  .p-mv__text-copy {
    background: inherit;
    font-size: 2.4rem;
    padding: 0;
  }

  .p-mv__text-copy-strong:first-child {
    font-size: 3.2rem;
  }

  .p-mv__text-copy-strong:nth-child(2) {
    font-size: 2.6rem;
  }

  .p-mv__text-copy-strong:nth-child(3) {
    font-size: 2.8rem;
  }

  .p-mv__text-main--v2 {
    font-size: 4.8rem;
    margin-top: 0.5rem;
  }

  .p-mv__point--v2 {
    min-width: 8.8rem;
  }

  .p-mv__point-text--v2 {
    font-size: 1.6rem;
    margin-top: 0.2rem;
  }

  .p-mv__point-text-head {
    font-size: 1rem;
    padding: 0.3rem 0.5rem;
    border-radius: 0.5rem;
  }

  .p-mv__point-text-strong--v2 {
    line-height: 110%;
    font-size: 2rem;
  }

  .p-mv__text-small--v2 {
    min-height: 5rem;
  }

  .p-mv__text-small-arrow {
    height: 5rem;
  }

  .p-mv__text-small-frame--v2 {
    width: 34rem;
    height: 5rem;
  }

  .mv__text-small-wrapper {
    font-size: 2.6rem;
  }

  .p-mv__text-small .p-mv__text-small-frame--v2 {
    border: 0.2rem solid #6f5347;
    font-size: 4rem;
  }

  .p-mv__text-small .p-mv__text-small-frame .p-mv__text-small-strong--v2 {
    font-size: 4rem;
  }

  .p-mv__text-small .p-mv__text-small-frame .p-mv__text-small-strong--v2:first-child {
    letter-spacing: -0.4rem;
  }

  .p-mv__items {
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  .p-mv__item {
    font-size: 1.27rem;
    padding: 0.5rem 0.26rem;
  }

  .p-mv__catch-text--v2 {
    font-size: 1.6rem;
  }

  .p-cta__heading-area {
    padding: 1.5rem;
  }

  .p-cta__heading-area.p-cta__heading-area--fukidashi {
    padding-top: 4rem;
  }

  .p-cta__heading-fukidashi {
    width: 6.4rem;
    -webkit-filter: drop-shadow(0px 7.5px 22.5px rgba(52, 31, 9, 0.1));
            filter: drop-shadow(0px 7.5px 22.5px rgba(52, 31, 9, 0.1));
    top: -3.7rem;
  }

  .p-cta__heading {
    font-size: 2rem;
    line-height: 140%;
  }

  .p-cta__heading .p-cta__heading-frame {
    margin-right: 0.1em;
    margin-bottom: 0.1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 2.8rem;
    line-height: 1.4642857143;
  }

  .p-cta__heading .p-cta__heading-line {
    margin-bottom: 0.1rem;
    font-size: 2.8rem;
    line-height: 140%;
  }

  .p-cta__heading .p-cta__heading-line::after {
    height: 2px;
    bottom: -0.1rem;
  }

  .p-cta__content {
    padding-top: 1.8rem;
    padding-bottom: 5rem;
  }

  .p-cta__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .p-cta__item-body {
    min-width: initial;
    width: 100%;
  }

  .p-cta__item-price {
    margin-top: 1rem;
  }

  .p-cta__button {
    margin-top: 3rem;
  }

  .p-trouble {
    background-image: url(../img/common/trouble_bg-sp.webp);
  }

  .p-trouble__heading {
    font-size: 2.2rem;
  }

  .p-trouble__heading .p-trouble__heading-large {
    font-size: 2.2rem;
  }

  .p-trouble__heading .p-trouble__heading-large .p-trouble__heading-strong {
    font-size: 3.6rem;
  }

  .p-trouble__content {
    margin-top: 3.4rem;
    padding-bottom: 0;
  }

  .p-trouble__content::after {
    width: 15rem;
    bottom: -3.6rem;
    right: -1.5rem;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }

  .p-trouble__items {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .p-trouble__item {
    padding: 1.5rem;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    line-height: 140%;
  }

  .p-trouble__item::before {
    width: 3rem;
    top: -0.4rem;
    left: -0.4rem;
  }

  .p-trouble__next {
    bottom: 2rem;
  }

  .p-appeal__heading {
    padding-top: 2rem;
    padding-bottom: 4rem;
    margin-bottom: -4.3rem;
  }

  .p-appeal__heading-text {
    font-size: 1.6rem;
  }

  .p-appeal__heading-title {
    font-size: 2.2rem;
  }

  .p-appeal__heading-title .p-appeal__heading-title-strong {
    font-size: 4rem;
    line-height: 100%;
  }

  .p-appeal__heading-title .p-appeal__heading-title-margin {
    display: block;
    margin-top: 2rem;
  }

  .p-appeal__wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .p-appeal__image {
    width: 50%;
  }

  .p-appeal__body {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    padding-top: 2rem;
  }

  .p-appeal__body-title {
    font-size: 4.8rem;
  }

  .p-appeal__body-title .p-appeal__body-title-small {
    font-size: 3.6rem;
  }

  .p-appeal__body-text {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }

  .p-appeal__points {
    margin-top: 2.2rem;
  }

  .p-appeal__items {
    max-width: 34.5rem;
  }

  .p-appeal__item {
    gap: 2.3rem;
    padding: 1.3rem 1rem 1.4rem 3.8rem;
    border: 2px solid #6f5347;
  }

  .p-appeal__cta {
    background-image: url(../img/common/appeal_bg-sp.webp);
  }

  .p-appeal__cta-text {
    margin-top: 2.5rem;
    font-size: 2.4rem;
    line-height: 1.4583333333;
  }

  .p-appeal__cta-text + .p-appeal__cta-text {
    margin-top: 2.5rem;
  }

  .p-appeal__cta-text .p-appeal__cta-text-large {
    font-size: 2.8rem;
    line-height: 1.4642857143;
  }

  .p-appeal__cta-text .p-appeal__cta-text-large .p-appeal__cta-text-strong {
    font-size: 4.4rem;
    line-height: 1.2045454545;
  }

  .p-appeal__cta-text-deco {
    display: inline-block;
    position: static;
    margin-bottom: -0.2rem;
  }

  .p-about__heading {
    padding: 1rem;
    font-size: 2.8rem;
    line-height: 1.4642857143;
  }

  .p-about__content {
    margin-top: 3rem;
  }

  .p-about__content::after {
    display: none;
  }

  .p-about__item {
    padding: 3rem 2rem;
    background-image: url(../img/common/about_bg-sp.webp);
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2rem;
  }

  .p-about__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .p-about__item-body {
    gap: 2rem;
  }

  .p-about__item-title {
    font-size: 2.2rem;
    line-height: 1.4545454545;
    text-align: center;
  }

  .p-about__item-text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }

  .p-about__item-image {
    width: 100%;
    aspect-ratio: 304/210;
  }

  .p-point__heading {
    margin-top: 2.5rem;
    font-size: 2.2rem;
    line-height: 150%;
  }

  .p-point__heading .p-point__heading-large {
    font-size: 3.6rem;
    line-height: 100%;
  }

  .p-point__heading .p-point__heading-large .p-point__heading-strong {
    font-size: 5rem;
    line-height: 100%;
  }

  .p-point__content {
    margin-top: 3.5rem;
  }

  .p-point__items {
    gap: 4rem;
  }

  .p-point__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }

  .p-point__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .p-point__item-image {
    width: 100%;
    aspect-ratio: 345/220;
  }

  .p-point__item-body {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .p-point__item-num {
    text-align: center;
  }

  .p-point__item-title {
    font-size: 2rem;
    line-height: 100%;
    text-align: center;
  }

  .p-point__item-title .p-point__item-strong {
    font-size: 2.8rem;
    line-height: 100%;
  }

  .p-point__item-detail {
    margin-top: 2.4rem;
    font-size: 1.4rem;
  }

  .p-point__other {
    margin-top: 7rem;
    background-image: url(../img/common/point_bg-sp.webp);
  }

  .p-point__other::before {
    left: 2.7rem;
    top: auto;
    bottom: -5.1rem;
    width: 12rem;
  }

  .p-point__other::after {
    right: 1.5rem;
    bottom: -4.9rem;
    width: 18.3rem;
  }

  .p-point__other-wrapper {
    padding-bottom: 8.7rem;
  }

  .p-point__other-text {
    margin-top: 0.5rem;
  }

  .p-point__other-text .p-point__other-text-sp-strong {
    color: #f98523;
    font-weight: 700;
  }

  .p-point__other-text .p-point__other-text-large {
    font-weight: 400;
    font-size: 2rem;
  }

  .p-point__other-points {
    margin-top: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }

  .p-point__other-item {
    min-width: 26rem;
    border: 1px solid #6f5347;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }

  .p-point__other-item:nth-child(1) {
    padding-right: 1rem;
    padding-top: 1.4rem;
    padding-bottom: 1.8rem;
    padding-left: 1rem;
  }

  .p-point__other-item:nth-child(1)::after {
    top: auto;
    bottom: -0.5rem;
    left: 50%;
    right: auto;
    width: 4rem;
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
    background-image: url(../img/common/point_by-sp.webp);
  }

  .p-point__other-item:nth-child(2) {
    padding-right: 1rem;
    padding-top: 1.8rem;
    padding-bottom: 1.4rem;
    padding-left: 1rem;
  }

  .p-point__other-item-text {
    font-size: 2rem;
  }

  .p-point__other-points + .p-point__other-text {
    margin-top: 2rem;
  }

  .p-student-yes {
    background-image: url(../img/common/student_bg-sp.webp);
  }

  .p-student-yes__heading {
    font-size: 2.2rem;
  }

  .p-student-yes__heading::before {
    display: none;
  }

  .p-student-yes__heading::after {
    display: none;
  }

  .p-student-yes__heading .p-student-yes__heading-frame {
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    font-size: 3rem;
    line-height: 1.4333333333;
  }

  .p-student-yes__heading .p-student-yes__heading-sp-large {
    font-size: 3rem;
    line-height: 1.4333333333;
  }

  .p-student-yes__content {
    margin-top: 3rem;
  }

  .p-student-yes__items {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .p-student-yes__item-title {
    margin-top: 2rem;
    font-size: 2rem;
    line-height: 150%;
  }

  .p-student-yes__item-text {
    font-size: 1.4rem;
  }

  .p-student-no__heading {
    font-size: 2.2rem;
    line-height: 1.4545454545;
  }

  .p-student-no__heading .p-student-no__heading-large {
    font-size: 3rem;
    line-height: 1.4333333333;
  }

  .p-student-no__content {
    margin-top: 6.5rem;
  }

  .p-student-no__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5rem;
  }

  .p-student-no__item {
    padding: 4rem 2rem;
  }

  .student-no__item-text {
    font-size: 1.6rem;
  }

  .p-flow__heading {
    font-size: 2.2rem;
    line-height: 1.4545454545;
  }

  .p-flow__heading .p-flow__heading-frame span {
    margin-top: 0.5rem;
    width: 1.4444444444em;
    height: 1.4444444444em;
    font-size: 3.6rem;
    line-height: 1.4444444444;
  }

  .p-flow__content {
    margin-top: 3rem;
  }

  .p-flow__steps {
    gap: 5.5rem;
  }

  .p-flow__step {
    padding: 2rem 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.5rem;
  }

  .p-flow__step + .p-flow__step::before {
    top: -2rem;
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
            transform: translate(-50%, -100%);
  }

  .p-flow__step-image {
    position: static;
    -webkit-transform: none;
            transform: none;
    padding: 0.75rem;
    border-radius: 0.75rem;
  }

  .p-flow__step-image img {
    border-radius: 0.75rem;
    width: 27rem;
    height: auto;
    aspect-ratio: 270/180;
  }

  .p-result__heading-area {
    padding-top: 4.6rem;
    padding-bottom: 6.1rem;
  }

  .p-result__fukidashi {
    width: calc(100% - 3rem);
    margin-inline: auto;
    padding: 1.2rem 2rem 0.8rem;
  }

  .p-result__container--example02 .p-result__fukidashi {
    width: 31.5rem;
  }

  .p-result__fukidashi-text {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }

  .p-result__fukidashi-text--example {
    line-height: 110%;
  }

  .p-result__fukidashi-text .p-result__fukidashi-text-strong {
    font-size: 2.4rem;
    line-height: 1.4583333333;
  }

  .p-result__fukidashi-text .p-result__fukidashi-text-strong span::before {
    top: -0.3rem;
  }

  .p-result__heading {
    width: 100%;
    font-size: 3.6rem;
    line-height: 130%;
  }

  .p-result__heading::before {
    left: 0;
    bottom: -3rem;
    -webkit-transform: none;
            transform: none;
    width: 7.5rem;
    height: 9.1rem;
  }

  .p-result__heading::after {
    right: 0;
    bottom: -3rem;
    -webkit-transform: none;
            transform: none;
    width: 6.7rem;
    height: 8.6rem;
  }

  .p-result__heading--example {
    margin-top: 2.5rem;
    font-size: 2.2rem;
    line-height: 150%;
  }

  .p-result__heading--example .p-result__heading-large--example {
    font-size: 3.6rem;
    line-height: 100%;
  }

  .p-result__heading--example .p-result__heading-large--example .p-result__heading-strong--example {
    font-size: 5rem;
    line-height: 100%;
  }

  .p-result__container {
    padding-bottom: 7.5rem;
    background-image: url(../img/common/case_bg-sp.webp);
  }

  .p-result__container--example {
    padding-bottom: 6.4rem;
  }

  .p-result__content {
    margin-top: -4rem;
    border: 3px solid #f1643b;
    border-radius: 3rem;
    padding: 4rem 1.5rem;
    gap: 4rem;
  }

  .p-result__content--example {
    gap: 2.5rem;
  }

  .p-result__content--example02 {
    max-width: 34.5rem;
    border-radius: 1rem;
    padding: 6.7rem 0 3rem;
  }

  .p-result__case-title {
    font-size: 2rem;
  }

  .p-result__case-items {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .p-result__case-item {
    width: 150rem;
    max-width: 15rem;
  }

  .c-result-item {
    padding: 2rem 2rem 2.4rem;
    gap: 0.3rem;
    background-image: url(../img/common/about_bg-sp.webp);
  }

  .c-result-item__title {
    padding: 0.3rem 1rem;
    border: 1px solid #6f5347;
    border-radius: 0.3rem;
    font-size: 1.4rem;
  }

  .c-result-item__body::before {
    top: 1rem;
    right: 0.8rem;
    width: 2.4rem;
  }

  .c-result-item__body::after {
    bottom: -1.4rem;
    left: -1.8rem;
    width: 12.1rem;
  }

  .c-result-item__text {
    font-size: 1.6rem;
  }

  .c-result-item__text .c-result-item__text-strong {
    font-size: 4.2rem;
  }

  .p-result__case-caution {
    font-size: 1.6rem;
  }

  .p-result__items--example {
    gap: 2rem;
  }

  .p-result__item-title {
    font-size: 1.8rem;
  }

  .p-result__item-text {
    font-size: 2rem;
  }

  .p-access__heading {
    font-size: 2.2rem;
    line-height: 1.4545454545;
  }

  .p-access__heading .p-access__heading-large {
    font-size: 3rem;
    line-height: 1.4333333333;
  }

  .p-access__content {
    margin-top: 2.4rem;
  }

  .p-access__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 3rem;
  }

  .p-access__body {
    padding-top: 0;
  }

  .p-access__name {
    margin-top: 2rem;
  }

  .p-access__text {
    margin-top: 1rem;
  }

  .p-access__image {
    width: 100%;
    aspect-ratio: 344/220;
  }

  .p-access__map {
    margin-top: 3rem;
    aspect-ratio: 344/250;
  }

  .p-contact__fukidashi {
    margin-top: -4.5rem;
  }

  .p-contact__heading {
    margin-top: 0.5rem;
    font-size: 3rem;
    line-height: 150%;
  }

  .p-contact__heading .p-contact__heading-large {
    font-size: 3.6rem;
    line-height: 150%;
  }

  .p-contact__heading .p-contact__heading-large .p-contact__heading-strong {
    font-size: 5rem;
    line-height: 150%;
  }

  .p-contact__content {
    margin-top: 4rem;
  }

  .p-contact__item + .p-contact__item {
    margin-top: 4rem;
  }

  .p-tel a {
    padding: 2.3rem;
  }

  .p-tel__body {
    display: block;
  }

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

  .p-tel__body-text-wrap::before {
    content: "";
    display: block;
    width: 5.4rem;
    aspect-ratio: 54/60;
    background-image: url(../img/common/tel_illust.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .p-tel__body-text {
    padding: 0.3rem 1rem;
    font-size: 1.4rem;
  }

  .p-tel__body-num-icon {
    width: 5rem;
  }

  .p-tel__body-num-body-text {
    font-size: 3.2rem;
  }

  .p-tel__body-num-body-time {
    margin-top: -0.2rem;
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }

  .p-form {
    padding-top: 3rem;
    padding-bottom: 5rem;
  }

  .p-form__inner {
    max-width: 30.5rem;
  }

  .p-form__title {
    font-size: 3rem;
  }

  .p-form__title .p-form__title-large {
    font-size: 3.6rem;
  }

  .p-form__title .p-form__title-large .p-form__title-strong {
    font-size: 5rem;
    line-height: 150%;
  }

  .p-form__text {
    font-size: 1.4rem;
    text-align: left;
  }

  .p-form__body {
    margin-top: 3rem;
  }

  .p-form__label-text {
    margin-left: -0.2rem;
  }

  .p-form__button {
    margin-top: 1.5rem;
  }

  .p-form__button::after {
    width: 1.7rem;
    right: 4.8rem;
  }

  .p-form__input-button {
    width: 100%;
    padding: 2rem 8rem 2rem 4.8rem;
    font-size: 1.8rem;
  }

  .p-form__privacy-text {
    margin-top: 4.5rem;
  }

  .p-footer__inner {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }

  .p-footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 5rem;
  }

  .p-footer__info {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .p-footer__name {
    margin-left: 0;
    font-size: 1.4rem;
    text-align: center;
  }

  .p-footer__text-area {
    gap: 1rem;
  }

  .p-footer__text {
    font-size: 1.4rem;
  }

  .p-footer__icons {
    gap: 1rem;
  }

  .p-footer__icon a img {
    width: 3rem;
  }

  .p-footer__copy {
    margin-top: 4rem;
    font-size: 1.4rem;
  }

  .p-thanks {
    padding-top: 5rem;
    padding-bottom: 10rem;
  }

  .p-thanks__heading {
    font-size: 2.4rem;
    line-height: 150%;
  }

  .p-thanks__content {
    margin-top: 4rem;
  }

  .p-thanks__text p {
    font-size: 1.4rem;
  }

  .p-thanks__button {
    margin-top: 4rem;
  }

  .p-thanks__button::after {
    width: 1.7rem;
    right: 4.8rem;
  }

  .p-thanks__button a {
    width: 100%;
    padding: 2rem 8rem 2rem 4.8rem;
    font-size: 1.8rem;
  }

  .p-page-text {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .p-page-text__heading {
    margin-top: 0.5rem;
    font-size: 3rem;
    line-height: 150%;
  }

  .p-page-text__content {
    margin-top: 3rem;
    margin-bottom: 7rem;
    padding: 2.5rem 2rem 3.5rem;
  }

  .p-page-text__content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    line-height: 150%;
  }

  .p-page-text__content h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    line-height: 150%;
  }

  .p-page-text__content p,
  .p-page-text__content li {
    font-size: 1.5rem;
  }

  .p-page-text__content p + p {
    margin-top: 0.6rem;
  }

  .u-md-none {
    display: none;
  }

  .u-md-show {
    display: block;
  }

  .u-section-pt.u-section-pt--result {
    padding-top: 4rem;
    padding-top: 3rem;
  }

  .u-section-pt.u-section-pt--trouble {
    padding-top: 4rem;
  }

  .u-section-pt.u-section-pt--appeal {
    padding-top: 4rem;
  }

  .u-section-pt.u-section-pt--about {
    padding-top: 5rem;
  }

  .u-section-pt.u-section-pt--point {
    padding-top: 6rem;
  }

  .u-section-pt.u-section-pt--contact {
    padding-top: 2.5rem;
  }

  .u-section-pb.u-section-pb--result {
    padding-bottom: 2rem;
  }

  .u-section-pb.u-section-pb--trouble {
    padding-bottom: 12rem;
  }

  .u-section-pb.u-section-pb--about {
    padding-bottom: 4rem;
  }

  .u-section-pb.u-section-pb--point {
    padding-bottom: 10rem;
  }

  .u-section-pb.u-section-pb--flow {
    padding-bottom: 8rem;
  }

  .u-section-pb.u-section-pb--access {
    padding-bottom: 7rem;
  }

  .u-section-pb.u-section-pb--contact {
    padding-bottom: 5rem;
  }

  .u-fukidashi {
    padding: 0.7rem 2rem;
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }

  .u-fukidashi::after {
    bottom: -2rem;
    height: 2rem;
    background-image: url(../img/common/heading_line-sp.webp);
  }

  .u-fukidashi--gray {
    padding: 0.7rem 3rem;
  }

  .u-fukidashi--gray::after {
    height: 0.9rem;
    background-image: none;
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  .p-tel__body-num {
    margin-top: 1.4rem;
    gap: 0.4rem;
  }
}
/*# sourceMappingURL=style.css.map */