@charset "UTF-8";
/* リキッドレイアウト対応 */
html {
  scroll-behavior: smooth;
}

body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
@media (any-hover: hover) {
  a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}
*,
*::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 body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements default styles */
a {
  text-decoration: none;
  color: inherit;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  width: 100%;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

picture,
img,
a,
span {
  display: inline-block;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

textarea {
  resize: vertical;
}

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

.l-cta {
  background: url(../images/cta-bg.webp) center/cover no-repeat;
  margin-block: 50px;
  margin-block: 3.125rem;
  z-index: 1;
  position: relative;
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .l-cta {
    margin-block: 6.25rem;
  }
}

.l-cta-03 {
  margin-top: 0;
}

.l-cta__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-cta__inner {
    gap: 2.5rem;
  }
}

.l-cta__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .l-cta__title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .l-cta__title.--type2 {
    margin-inline: calc(50% - 50vw);
    padding-inline: 1.25rem;
  }
}

.l-cta__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .l-cta__text {
    font-size: 1.25rem;
  }
}

.l-cta__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-cta__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.l-cta__box-item {
  width: min(580px, 100%);
  width: min(36.25rem, 100%);
  height: 70px;
  height: 4.375rem;
  border-radius: 1.25rem;
  background: #913231;
  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;
  gap: 16px;
  gap: 1rem;
  border: 5px solid #913231;
  border: 0.3125rem solid #913231;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
@media screen and (min-width: 768px) {
  .l-cta__box-item {
    height: 8.125rem;
  }
}
.l-cta__box-item.--green {
  background: #06C755;
  border: 5px solid #06C755;
  border: 0.3125rem solid #06C755;
}
@media (any-hover: hover) {
  .l-cta__box-item:hover {
    opacity: 1;
    background-color: #fff;
    color: #fff;
  }
  .l-cta__box-item:hover .l-cta__box-text {
    color: #913231;
  }
  .l-cta__box-item:hover .l-cta__box-text.--green {
    color: #06C755;
  }
}

.l-cta__box-text {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
@media screen and (min-width: 768px) {
  .l-cta__box-text {
    font-size: 2rem;
  }
}

.l-cta__box-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 48px;
  width: 3rem;
}
@media screen and (min-width: 768px) {
  .l-cta__box-image {
    width: 6.25rem;
  }
}

.l-cta__info {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  border-radius: 1.25rem;
  border: 3px solid #646464;
  border: 0.1875rem solid #646464;
  background: #fff;
  padding-block: 21px 22px;
  padding-block: 1.3125rem 1.375rem;
}
@media screen and (min-width: 768px) {
  .l-cta__info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.375rem;
  }
}

.l-cta__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .l-cta__info-item {
    gap: 1.375rem;
  }
}

.l-cta__info-image {
  width: 30px;
  width: 1.875rem;
}
@media screen and (min-width: 768px) {
  .l-cta__info-image {
    width: 2.5625rem;
  }
}

.l-cta__info-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .l-cta__info-text {
    font-size: 1.5rem;
  }
}

.l-cta__info-number {
  font-family: "Open Sans", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.28px;
  letter-spacing: 0.08rem;
}
@media screen and (min-width: 768px) {
  .l-cta__info-number {
    font-size: 4rem;
  }
}

.l-cta__info-time {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .l-cta__info-time {
    font-size: 1.25rem;
  }
}

.footer {
  padding-top: 40px;
  padding-top: 2.5rem;
  border-top: 1px solid #7F7F7F;
}

.footer__logo {
  width: 402px;
  width: 25.125rem;
  max-width: 100%;
  margin-inline: auto;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.footer__text-wrapper {
  text-align: center;
  margin-bottom: 36px;
  margin-bottom: 2.25rem;
}

.footer__text {
  font-weight: 400;
  line-height: 1.5;
}
.footer__text + .footer__text {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.footer__text:nth-of-type(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2px;
  gap: 0.125rem;
}
.footer__text:nth-of-type(2)::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 11px;
  width: 0.6875rem;
  aspect-ratio: 1/1;
  background: url(../images/footer-icon.webp) center/contain no-repeat;
}
.footer__text .--link {
  text-decoration: underline;
}

.footer__foot {
  background-color: #000;
  padding-block: 16px;
  padding-block: 1rem;
}

.footer__copyright {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
}

.l-inner {
  width: 100%;
  max-width: 560px;
  max-width: 35rem;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 80.625rem;
    padding-inline: 1.5625rem;
  }
}

.p-about {
  background: url(../images/about-bg.webp) center/cover no-repeat;
  padding-block: 50px;
  padding-block: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-about {
    padding-block: 5rem;
  }
}

.p-about__title {
  width: 320px;
  width: 20rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-about__title {
    width: 51.25rem;
  }
}

.p-about__body {
  max-width: 1058px;
  max-width: 66.125rem;
  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;
  margin: 24px auto 0;
  margin: 1.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-about__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.25rem;
    margin-top: 3.25rem;
  }
}

.p-about__body-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(379px, 100%);
  width: min(23.6875rem, 100%);
}

.p-about__body-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-about__body-text {
    font-size: 1.5rem;
  }
}
.p-about__body-text .--red {
  display: inline;
  color: #8B2829;
  font-weight: 700;
}

.p-about__foot {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about__foot {
    margin-top: 2.5rem;
  }
}

.p-about__foot-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about__foot-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.p-about__foot-item-image {
  width: min(300px, 100%);
  width: min(18.75rem, 100%);
  margin-inline: auto;
}

.p-about__foot-item-title {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-about__foot-item-title {
    font-size: 1.5rem;
  }
}

.p-about__foot-item-text {
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-about__foot-link {
  display: block;
  text-decoration: underline;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about__foot-link {
    font-size: 1.5rem;
    margin-top: 2.5rem;
  }
}

.p-benefits {
  padding-block: 38px 50px;
  padding-block: 2.375rem 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-benefits {
    padding-bottom: 5.4375rem;
  }
}

.p-benefits__title {
  max-width: 345px;
  max-width: 21.5625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-benefits__title {
    max-width: 76.75rem;
  }
}

.p-benefits__lead--large {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 4px auto 0;
  margin: 0.25rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-benefits__lead--large {
    font-size: 2.6875rem;
    margin-top: 0.625rem;
  }
}
.p-benefits__lead--large .--red {
  color: #913231;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .p-benefits__lead--large .--red {
    font-size: 3.125rem;
  }
}
.p-benefits__lead--large::before {
  content: "";
  position: absolute;
  top: 20px;
  top: 1.25rem;
  right: 600px;
  right: 37.5rem;
  width: 232px;
  width: 14.5rem;
  aspect-ratio: 232/256;
  background: url(../images/benefits-image01.webp) center/contain no-repeat;
}
@media screen and (min-width: 1440px) {
  .p-benefits__lead--large::before {
    top: 4.0625rem;
    right: 54.5rem;
  }
}

.p-benefits__lead {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-benefits__lead {
    font-size: 1.5rem;
    padding-left: 2.5rem;
    margin-top: 1.8125rem;
  }
}
.p-benefits__lead .--line {
  -webkit-text-decoration: underline #FDA713;
          text-decoration: underline #FDA713;
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
  text-underline-offset: 0.5rem;
}

.p-benefits__list {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-benefits__list {
    margin-top: 4.9375rem;
  }
}

.p-benefits__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  gap: 1.25rem;
  border-radius: 1.875rem;
  background: rgba(253, 167, 19, .15);
  padding: 20px;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-benefits__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    gap: clamp(2rem, -20.0404411765rem + 32.0588235294vw, 8.8125rem);
    padding: 2.1875rem 1.875rem 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-benefits__item:nth-of-type(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: clamp(2rem, -15.1875rem + 25vw, 7.3125rem);
  }
}
.p-benefits__item + .p-benefits__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-benefits__item + .p-benefits__item {
    margin-top: 3.75rem;
  }
}

.p-benefits__item-content {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-benefits__item-content {
    width: 37.3125rem;
    padding-left: 6rem;
  }
}

.p-benefits__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-benefits__item-title {
    gap: 1.125rem;
    font-size: 2rem;
    margin-left: -6rem;
  }
}
.p-benefits__item-title .--number {
  width: 60px;
  width: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-benefits__item-title .--number {
    width: 4.875rem;
  }
}
.p-benefits__item-title .--number img {
  vertical-align: middle;
}

.p-benefits__item-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-benefits__item-text {
    font-size: 1.25rem;
    margin-top: 0.25rem;
  }
}

.p-benefits__item-image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-benefits__item-image {
    width: 23.25rem;
    margin-top: -3.8125rem;
  }
}
.p-benefits__item-image img {
  border-radius: 0.625rem;
  -webkit-box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, .25);
          box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, .25);
}

.p-choose {
  position: relative;
  background-color: #913231;
  padding-block: 50px;
  padding-block: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-choose {
    background-color: unset;
    padding-block: 5rem 6rem;
  }
}
@media screen and (min-width: 768px) {
  .p-choose::before, .p-choose::after {
    content: "";
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
  }
}
@media screen and (min-width: 768px) {
  .p-choose::before {
    left: 0;
    background-color: #793333;
  }
}
@media screen and (min-width: 768px) {
  .p-choose::after {
    right: 0;
    background-color: #953635;
  }
}

.p-choose__title--sub {
  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;
  gap: 7px;
  gap: 0.4375rem;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-choose__title--sub {
    font-size: 1.9375rem;
  }
}
.p-choose__title--sub::before, .p-choose__title--sub::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 80px;
  width: 5rem;
  height: 1px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-choose__title--sub::before, .p-choose__title--sub::after {
    width: 6.9375rem;
  }
}

.p-choose__title {
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-choose__title {
    font-size: 1.875rem;
  }
}
.p-choose__title .--red {
  width: 273px;
  width: 17.0625rem;
  background-color: #fff;
  color: #913231;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-choose__title .--red {
    translate: 0 0.375rem;
    font-size: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .p-choose__title .--red:nth-of-type(1) {
    margin-right: 0.3125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-choose__title .--red:nth-of-type(2) {
    margin-left: 0.3125rem;
  }
}
.p-choose__title .--large {
  font-size: 24px;
  font-size: 1.5rem;
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-choose__title .--large {
    font-size: 2.5rem;
    margin-top: 1.125rem;
  }
}

.p-choose__lead {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-choose__lead {
    font-size: 1.5rem;
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-choose__lead::before, .p-choose__lead::after {
    content: "";
    position: absolute;
    z-index: -1;
  }
}
@media screen and (min-width: 768px) {
  .p-choose__lead::before {
    bottom: -8.375rem;
    right: clamp(52.5rem, 49.8713235294rem + 3.8235294118vw, 53.3125rem);
    width: clamp(9.375rem, -10.4411764706rem + 28.8235294118vw, 15.5rem);
    aspect-ratio: 248/397;
    background: url(../images/choose-image01.webp) center/contain no-repeat;
  }
}
@media screen and (min-width: 768px) {
  .p-choose__lead::after {
    bottom: -5.75rem;
    left: clamp(51rem, 47.3602941176rem + 5.2941176471vw, 52.125rem);
    width: clamp(9.375rem, -7.4080882353rem + 24.4117647059vw, 14.5625rem);
    aspect-ratio: 233/299;
    background: url(../images/choose-image02.webp) center/contain no-repeat;
  }
}

.p-choose__list {
  position: relative;
  display: grid;
  gap: clamp(20px, -157.941px + 16.1764705882vw, 75px);
  gap: clamp(1.25rem, -9.8713235294rem + 16.1764705882vw, 4.6875rem);
  margin-top: 24px;
  margin-top: 1.5rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-choose__list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3.5rem;
  }
}

.p-choose__item {
  background-color: #fff;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
  padding: 20px 10px;
  padding: 1.25rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-choose__item {
    padding-block: 2.5625rem 2.9375rem;
  }
}
.p-choose__item:nth-of-type(1) {
  border: 10px solid rgba(121, 51, 51, .47);
  border: 0.625rem solid rgba(121, 51, 51, .47);
}
@media screen and (min-width: 768px) {
  .p-choose__item:nth-of-type(1) {
    border-width: 1.125rem;
  }
}
.p-choose__item:nth-of-type(1) .p-choose__item-title,
.p-choose__item:nth-of-type(1) .p-choose__item-box-text {
  background-color: #793333;
}
.p-choose__item:nth-of-type(2) {
  border: 10px solid rgba(149, 54, 53, .53);
  border: 0.625rem solid rgba(149, 54, 53, .53);
}
@media screen and (min-width: 768px) {
  .p-choose__item:nth-of-type(2) {
    border-width: 1.125rem;
  }
}
.p-choose__item:nth-of-type(2) .p-choose__item-title {
  background-color: #B90B09;
}
.p-choose__item:nth-of-type(2) .p-choose__item-box-text {
  background-color: #B90B09;
}

.p-choose__item-title {
  width: 280px;
  width: 17.5rem;
  -webkit-clip-path: polygon(10.1% 0, 89.9% 0, 100% 50%, 89.9% 100%, 10.1% 100%, 0 50%);
          clip-path: polygon(10.1% 0, 89.9% 0, 100% 50%, 89.9% 100%, 10.1% 100%, 0 50%);
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  padding-block: 5px 4px;
  padding-block: 0.3125rem 0.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-choose__item-title {
    width: 22.875rem;
    font-size: 2.25rem;
  }
}

.p-choose__item-lead {
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.5;
  margin-top: 4px;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-choose__item-lead {
    font-size: 1.25rem;
    margin-top: 0.875rem;
  }
}

.p-choose__item-box {
  max-width: 470px;
  max-width: 29.375rem;
  display: grid;
  gap: 11px 10px;
  gap: 0.6875rem 0.625rem;
  margin: 10px auto 0;
  margin: 0.625rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-choose__item-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-choose__item-box-text {
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 32px;
  line-height: 2rem;
  padding-block: 15px 19px;
  padding-block: 0.9375rem 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-choose__item-box-text {
    font-size: 1.25rem;
    line-height: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-choose__item-box-text.--wide {
    grid-column: 1/3;
    padding-block: 1.25rem 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-choose__item-box-text.--low {
    line-height: 1.875rem;
    padding-block: 1.5625rem 1.8125rem;
  }
}
.p-choose__item-box-text .--large {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-choose__item-box-text .--large {
    font-size: 1.875rem;
  }
}
.p-choose__item-box-text .--xl {
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-choose__item-box-text .--xl {
    font-size: 2rem;
  }
}

.p-faq {
  padding-block: 50px;
  padding-block: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-faq {
    padding-block: 5rem 6rem;
  }
}

.p-faq__title {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-faq__title {
    font-size: 2.5rem;
  }
}

.p-faq__list {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-faq__list {
    margin-top: 3.75rem;
  }
}

.p-faq__item {
  background-color: #fff;
  -webkit-box-shadow: 4px 4px 15.8px 0 rgba(0, 0, 0, .11);
          box-shadow: 4px 4px 15.8px 0 rgba(0, 0, 0, .11);
}
.p-faq__item + .p-faq__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-faq__item + .p-faq__item {
    margin-top: 2.375rem;
  }
}

.p-faq__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  gap: 0.375rem;
  background-color: #953635;
  padding: 16px 20px;
  padding: 1rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-faq__item-head {
    gap: 0.8125rem;
    padding: 0.875rem 1.25rem 1.25rem;
  }
}

.p-faq__item-icon {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.86px;
  letter-spacing: 0.05375rem;
}
@media screen and (min-width: 768px) {
  .p-faq__item-icon {
    font-size: 2.75rem;
  }
}
.p-faq__item-icon.--red {
  color: #953635;
}

.p-faq__item-head-title {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.23;
  letter-spacing: 0.48px;
  letter-spacing: 0.03rem;
}
@media screen and (min-width: 768px) {
  .p-faq__item-head-title {
    font-size: 1.5rem;
  }
}

.p-faq__item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  gap: 0.4375rem;
  padding: 16px 20px;
  padding: 1rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-faq__item-body {
    gap: 0.9375rem;
    padding: 1.5rem 1.25rem;
  }
}

.p-faq__item-body-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.39px;
  letter-spacing: 0.024375rem;
}
@media screen and (min-width: 768px) {
  .p-faq__item-body-text {
    font-size: 1.25rem;
  }
}

.p-flow {
  background-color: #F7F7F7;
  padding-block: 50px;
  padding-block: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-flow {
    padding-block: 5rem 6rem;
  }
}

.p-flow__title {
  position: relative;
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .p-flow__title {
    font-size: 2.5rem;
  }
}
.p-flow__title::before {
  content: "";
  position: absolute;
  bottom: -20px;
  bottom: -1.25rem;
  left: 50%;
  translate: -50% 0;
  width: 140px;
  width: 8.75rem;
  height: 6px;
  height: 0.375rem;
  background-color: #913231;
}
@media screen and (min-width: 768px) {
  .p-flow__title::before {
    bottom: -2.5rem;
    width: 12.5rem;
    height: 0.5rem;
  }
}

.p-flow__lead {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-flow__lead {
    font-size: 1.5rem;
    margin-top: 5rem;
  }
}

.p-flow__list {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-flow__list {
    margin-top: 3.5rem;
  }
}

.p-flow__item {
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 4px 4px 16.3px 0 rgba(0, 0, 0, .14);
          box-shadow: 4px 4px 16.3px 0 rgba(0, 0, 0, .14);
  padding: 20px;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item {
    padding: 2.125rem 1.875rem 1.875rem;
  }
}
.p-flow__item + .p-flow__item {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item + .p-flow__item {
    margin-top: 4.5rem;
  }
}
.p-flow__item + .p-flow__item::before {
  content: "";
  position: absolute;
  top: -40px;
  top: -2.5rem;
  left: 50%;
  translate: -50% 0;
  width: 60px;
  width: 3.75rem;
  aspect-ratio: 74/30;
  background: url(../images/flow-arrow.webp) center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .p-flow__item + .p-flow__item::before {
    top: -2.875rem;
    width: 4.625rem;
  }
}

.p-flow__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  gap: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item-head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.625rem;
  }
}

.p-flow__item-step {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #913231;
  -webkit-clip-path: polygon(0 0, 83.3% 0, 100% 50%, 83.3% 100%, 0 100%);
          clip-path: polygon(0 0, 83.3% 0, 100% 50%, 83.3% 100%, 0 100%);
  text-transform: uppercase;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
  padding: 7px 39px 7px 18px;
  padding: 0.4375rem 2.4375rem 0.4375rem 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item-step {
    font-size: 1.5rem;
  }
}

.p-flow__item-title {
  color: #913231;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.67;
}
@media screen and (min-width: 768px) {
  .p-flow__item-title {
    font-size: 1.875rem;
  }
}

.p-flow__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item-text {
    font-size: 1.5rem;
    padding-left: 1.5625rem;
    margin-top: 1.125rem;
  }
}

.p-health {
  background: url(../images/health-bg.webp) center/cover no-repeat;
  padding-bottom: 96px;
  padding-bottom: 6rem;
}

.p-health__title {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-health__title {
    font-size: 2.5rem;
  }
}
.p-health__title .--large {
  color: #913231;
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
  text-underline-offset: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-health__title .--large {
    font-size: 3.125rem;
    text-underline-offset: 0.75rem;
  }
}
.p-health__title .--border {
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
  text-underline-offset: 0.375rem;
  -webkit-text-decoration-color: #913231;
          text-decoration-color: #913231;
}
@media screen and (min-width: 768px) {
  .p-health__title .--border {
    text-underline-offset: 0.75rem;
  }
}

.p-health__title-box {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  background: #913231;
  width: 229px;
  width: 14.3125rem;
  margin-inline: auto;
  padding: 10px 30px 25px;
  padding: 0.625rem 1.875rem 1.5625rem;
  position: relative;
  top: -20px;
  top: -1.25rem;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 77.8%, 50% 100%, 0 77.8%);
          clip-path: polygon(0 0, 100% 0, 100% 77.8%, 50% 100%, 0 77.8%);
}
@media screen and (min-width: 768px) {
  .p-health__title-box {
    font-size: 2.5rem;
    padding-bottom: 2.0625rem;
  }
}
.p-health__title-box .--small {
  font-size: 28px;
  font-size: 1.75rem;
}

.p-health__body {
  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: 20px;
  gap: 1.25rem;
  margin-block: 28px;
  margin-block: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-health__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-block: 3.5rem;
    gap: 4.8125rem;
  }
}

.p-health__body-text {
  color: #000;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-health__body-text {
    padding-left: clamp(0rem, -33.1617647059rem + 48.2352941176vw, 10.25rem);
    width: 48.3125rem;
    font-size: 1.5rem;
  }
}
.p-health__body-text .--red {
  color: #913231;
  font-weight: 700;
  display: inline;
}

.p-health__body-image {
  width: 290px;
  width: 18.125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-health__body-image {
    margin-top: -3.875rem;
    width: 21.75rem;
    margin-inline: unset;
  }
}

.p-health__list {
  display: grid;
  gap: 25px;
  gap: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-health__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.125rem;
  }
}

.p-health__item {
  background: #fff;
  -webkit-box-shadow: 3px 4px 16.9px 0 rgba(0, 0, 0, .09);
          box-shadow: 3px 4px 16.9px 0 rgba(0, 0, 0, .09);
  padding-bottom: 35px;
  padding-bottom: 2.1875rem;
}

.p-health__item-number {
  position: relative;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 26.667px;
  font-size: 1.6666875rem;
  font-weight: 700;
  line-height: 0.6;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
  top: 16px;
  top: 1rem;
  left: 13px;
  left: 0.8125rem;
}
.p-health__item-number::after {
  content: "";
  height: 76px;
  height: 4.75rem;
  width: 76px;
  width: 4.75rem;
  background-color: #913231;
  -webkit-clip-path: polygon(0 0, 100% 0px, 0 100%);
          clip-path: polygon(0 0, 100% 0px, 0 100%);
  position: absolute;
  top: -16px;
  top: -1rem;
  left: -13px;
  left: -0.8125rem;
  z-index: -1;
}

.p-health__item-image {
  width: 215px;
  width: 13.4375rem;
  margin-inline: auto;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-health__item-image {
    padding: 0 3.75rem 0.9375rem;
    width: unset;
    margin-inline: 0;
  }
}

.p-health__item-text {
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-health__item-text {
    font-size: 1.25rem;
  }
}

.p-mainvisual {
  background: url(../images/mainvisual-bg-sp.webp) center/cover no-repeat;
  position: relative;
  width: 100%;
  aspect-ratio: 375/800;
}
@media screen and (min-width: 768px) {
  .p-mainvisual {
    background-image: url(../images/mainvisual-bg.webp);
    aspect-ratio: 1440/800;
  }
}

.p-mainvisual__title {
  width: 87.4666666667vw;
  padding-top: 21.6vw;
  margin-left: 6.9333333333vw;
}
@media screen and (min-width: 768px) {
  .p-mainvisual__title {
    width: 55.5555555556vw;
    padding-top: 18.4722222222vw;
    margin-left: 4.8611111111vw;
  }
}

.p-mainvisual__title--sub {
  text-align: center;
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 8vw;
  padding-top: 13.6vw;
}
@media screen and (min-width: 768px) {
  .p-mainvisual__title--sub {
    text-align: left;
    font-size: 1.6666666667vw;
    line-height: 2.7777777778vw;
    padding-left: 4.8611111111vw;
    padding-top: 1.1111111111vw;
  }
}

.p-plan {
  max-width: 1440px;
  max-width: 90rem;
  padding-block: 50px;
  padding-block: 3.125rem;
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  .p-plan {
    background: url(../images/plan-bg.webp) center top/48rem no-repeat;
  }
}
@media screen and (min-width: 768px) {
  .p-plan {
    background: url(../images/plan-bg.webp) center top/contain no-repeat;
    padding-block: 5rem 6rem;
  }
}
.p-plan .--red {
  color: #913231;
  font-weight: 700;
}

.p-plan__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 4px solid #913231;
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-plan__title {
    font-size: 2.5rem;
  }
}
.p-plan__title .--red {
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-plan__title .--red {
    font-size: 3.4375rem;
  }
}

.p-plan__lead {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-plan__lead {
    font-size: 1.5rem;
    margin-top: 2.5rem;
  }
}

.p-plan__body {
  position: relative;
  display: grid;
  gap: 80px;
  gap: 5rem;
  padding-top: 140px;
  padding-top: 8.75rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-plan__body {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.625rem, -5.4411764706rem + 8.8235294118vw, 2.5rem);
    padding-top: 10.625rem;
    margin-top: 3rem;
  }
}
.p-plan__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 330px;
  width: 20.625rem;
  aspect-ratio: 605/65;
  background: url(../images/plan-arrow.webp) center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .p-plan__body::before {
    width: 37.8125rem;
  }
}

.p-plan__body-item {
  border-radius: 1.25rem;
  border: 11px solid #F2F2F2;
  border: 0.6875rem solid #F2F2F2;
  background-color: #fff;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media (any-hover: hover) {
  .p-plan__body-item:hover {
    opacity: 1;
  }
  .p-plan__body-item:hover .p-plan__body-item-image img {
    scale: 1.1;
  }
}
@media screen and (min-width: 768px) {
  .p-plan__body-item {
    padding-bottom: 2.5rem;
  }
}

.p-plan__body-item-number {
  width: 72px;
  width: 4.5rem;
  margin: -78px auto 0;
  margin: -4.875rem auto 0;
}

.p-plan__body-item-image {
  width: 132px;
  width: 8.25rem;
  margin: 20px auto 0;
  margin: 1.25rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-plan__body-item-image {
    margin-top: 2rem;
  }
}
.p-plan__body-item-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  -webkit-transition: scale 0.4s;
  transition: scale 0.4s;
}

.p-plan__body-item-title {
  display: block;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-plan__body-item-title {
    font-size: 1.5rem;
    margin-top: 1.6875rem;
  }
}

.p-plan__body-item-text {
  display: block;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-plan__body-item-text {
    font-size: clamp(1.125rem, 0.7205882353rem + 0.5882352941vw, 1.25rem);
  }
}

.p-plan__foot {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-plan__foot {
    margin-top: 4rem;
  }
}

.p-plan__foot-item + .p-plan__foot-item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-plan__foot-item + .p-plan__foot-item {
    margin-top: 3.8125rem;
  }
}

.p-plan__foot-item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  gap: 1rem;
  border-radius: 3.125rem 0 0 3.125rem;
  background: -webkit-gradient(linear, left top, right top, from(#913231), to(#C28E8D));
  background: linear-gradient(90deg, #913231 0%, #C28E8D 100%);
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  padding: 12px 24px;
  padding: 0.75rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-plan__foot-item-title {
    gap: 2rem;
    background: -webkit-gradient(linear, left top, right top, from(#913231), to(#FFF));
    background: linear-gradient(90deg, #913231 0%, #FFF 100%);
    font-size: 2rem;
  }
}
.p-plan__foot-item-title .--number {
  font-family: "Open Sans", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .p-plan__foot-item-title .--number {
    font-size: 3.75rem;
  }
}

.p-plan__foot-item-text--large {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-plan__foot-item-text--large {
    font-size: 2.25rem;
  }
}

.p-plan__foot-item-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-plan__foot-item-text {
    font-size: 1.25rem;
  }
}

.p-plan__foot-item-table-wrapper {
  border-radius: 0.25rem;
  border: 1px solid #B9B9B9;
  margin-top: 15px;
  margin-top: 0.9375rem;
  overflow: hidden;
}

.p-plan__foot-item-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
@media screen and (min-width: 768px) {
  .p-plan__foot-item-table tbody {
    display: grid;
    grid-template-columns: 21.7741935484% 35.4838709677% 42.7419354839%;
  }
}
@media screen and (min-width: 768px) {
  .p-plan__foot-item-table tr {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
  }
}
.p-plan__foot-item-table tr + tr {
  border-top: 1px solid #B9B9B9;
}
@media screen and (min-width: 768px) {
  .p-plan__foot-item-table tr + tr {
    border-top: unset;
    border-left: 1px solid #B9B9B9;
  }
}
.p-plan__foot-item-table th {
  width: 134px;
  width: 8.375rem;
  border-right: 1px solid #B9B9B9;
  background-color: rgba(0, 0, 0, .06);
  text-align: left;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 9px 11px;
  padding: 0.5625rem 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-plan__foot-item-table th {
    width: unset;
    display: block;
    border-right: unset;
    border-bottom: 1px solid #B9B9B9;
    font-size: 1.25rem;
  }
}
.p-plan__foot-item-table td {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 9px 11px;
  padding: 0.5625rem 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-plan__foot-item-table td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.25rem;
  }
}

.p-use {
  background: url(../images/use-bg.webp) center/cover no-repeat;
  padding-block: 50px;
  padding-block: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-use {
    padding-block: 5rem;
  }
}

.p-use__title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-shadow: 2px 2px 5px #AE7373;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  text-underline-offset: 0.375rem;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  padding-left: 100px;
  padding-left: 6.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-use__title {
    text-underline-offset: 0.625rem;
    font-size: 2.5rem;
    padding-left: 10rem;
  }
}
.p-use__title .--icon {
  position: absolute;
  top: -6px;
  top: -0.375rem;
  left: 0;
  width: 90px;
  width: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-use__title .--icon {
    top: -0.625rem;
    width: 9.375rem;
  }
}
.p-use__title .--large {
  display: inline;
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-use__title .--large {
    font-size: 3.4375rem;
  }
}

.p-use__lead {
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-use__lead {
    font-size: 1.5rem;
    margin-top: 2.1875rem;
  }
}

.p-use__list {
  display: grid;
  gap: clamp(20px, -44.705px + 5.8823529412vw, 40px);
  gap: clamp(1.25rem, -2.7941176471rem + 5.8823529412vw, 2.5rem);
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-use__list {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-use__item:last-child .p-use__item-title {
    font-size: clamp(1.3125rem, 0.9080882353rem + 0.5882352941vw, 1.4375rem);
  }
}

.p-use__item-image img {
  -webkit-box-shadow: 4px 4px 6.7px 0 rgba(0, 0, 0, .2);
          box-shadow: 4px 4px 6.7px 0 rgba(0, 0, 0, .2);
}

.p-use__item-content {
  max-width: 280px;
  max-width: 17.5rem;
  margin-inline: auto;
}

.p-use__item-title {
  -webkit-clip-path: polygon(10.4% 0, 89.6% 0, 100% 50%, 89.6% 100%, 10.4% 100%, 0 50%);
          clip-path: polygon(10.4% 0, 89.6% 0, 100% 50%, 89.6% 100%, 10.4% 100%, 0 50%);
  background-color: #913231;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  padding-block: 9px 12px;
  padding-block: 0.5625rem 0.75rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-use__item-title {
    font-size: 1.5rem;
  }
}

.p-use__item-text {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-use__item-text {
    font-size: 1.25rem;
  }
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

@media screen and (min-width: 1440px) {
  .u-tablet {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
