@charset "UTF-8";
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  scroll-behavior: smooth;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  color: #333;
}
@media (max-width: 808px) {
  html {
    font-size: 1.9801980198vw;
  }
}
@media screen and (max-width: 600px) {
  html {
    font-size: 3.6363636364vw;
  }
}
@media (max-width: 440px) {
  html {
    font-size: 3.6363636364vw;
  }
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

body {
  background-color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

main {
  overflow: hidden;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*:focus {
  outline: none;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

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

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

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

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

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

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

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms;
            animation-duration: 0.01ms;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-transition-duration: 0.01ms;
            transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
}
.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 808px;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

.l-main {
  width: 100%;
  max-width: 27.5rem;
  margin-inline: auto;
  background-color: rgba(255, 255, 255, .94);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1100px) {
  .l-main {
    margin-inline: initial;
    margin-left: auto;
    -webkit-transform: translateX(-2.5rem);
            transform: translateX(-2.5rem);
  }
}
@media screen and (max-width: 600px) {
  .l-main {
    margin-inline: auto;
    margin-left: 0;
    margin-left: initial;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
  }
}

.l-mt40 {
  margin-top: 2.5rem;
}

.l-section-wrap {
  background: url(../images/top/fv-bg.webp) center top/contain no-repeat;
  width: 100%;
  background-color: #FF5900;
  height: 66.4375rem;
}

.l-section {
  position: relative;
  background-color: #AE2525;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  border-radius: 5rem 5rem 0 0;
  position: relative;
}
.l-section:before {
  display: block;
  content: "";
  width: 100%;
  height: 5rem;
  background-color: #FF5900;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.l-section--reason {
  background-color: #AE2525;
}
.l-section--reason:before {
  background-color: #FF5900;
}

.l-section--flow {
  background-color: #FFD70E;
}
.l-section--flow:before {
  background-color: #AE2525;
}

.l-section--feature {
  background-color: #F6F3E7;
}
.l-section--feature:before {
  background-color: #FFD70E;
}

.l-section--faq {
  background-color: #AE2525;
}
.l-section--faq:before {
  background-color: #F6F3E7;
}

.c-btn {
  display: grid;
  place-items: center;
  width: 15.875rem;
  height: 3.5rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  border-radius: 50vh;
  padding: 0 1.25rem 0 1.625rem;
  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;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .2);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .2);
}
.c-btn:after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (hover: hover) {
  .c-btn:hover {
    -webkit-transform: translateY(-0.375rem);
            transform: translateY(-0.375rem);
  }
}

.c-btn--download {
  background: #D32F2F;
}
.c-btn--download::after {
  background-image: url("../images/common/download-icon.svg");
}

.c-btn--contact {
  background: #57BA66;
}
.c-btn--contact::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../images/common/mail-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-btn--long {
  width: 19.0625rem;
  padding: 0 2.8125rem 0 3.25rem;
}

.c-btn--red {
  background-color: #D32F2F;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-btn--red::after {
  display: none;
}

.c-floating-btn__wrap {
  display: none;
}
@media screen and (max-width: 600px) {
  .c-floating-btn__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: fixed;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(100%);
            transform: translateX(-50%) translateY(100%);
    bottom: 0;
    z-index: 99;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
    transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  }
}
@media screen and (max-height: 660px) {
  .c-floating-btn__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: fixed;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(100%);
            transform: translateX(-50%) translateY(100%);
    bottom: 0;
    z-index: 99;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
    transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  }
}

.js-floating-btn.is-visible {
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.c-floating-btn {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  height: 3.75rem;
  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: 0.5rem;
}
.c-floating-btn:before {
  display: block;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
}

.c-floating-btn--mail {
  width: 38.6363636364%;
  border-right: 1px solid #ff8000;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff5900), to(#dc0700));
  background: linear-gradient(180deg, #ff5900 0%, #dc0700 100%);
}
.c-floating-btn--mail::before {
  background: url(../images/common/mail-icon.svg) center center/contain no-repeat;
}

.c-floating-btn--download {
  width: 38.6363636364%;
  border-right: 1px solid #ff8000;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff5900), to(#dc0700));
  background: linear-gradient(180deg, #ff5900 0%, #dc0700 100%);
}
.c-floating-btn--download::before {
  background: url(../images/common/download-icon.svg) center center/contain no-repeat;
}

.c-floating-btn--tel {
  width: 22.7272727273%;
  background: -webkit-gradient(linear, left bottom, left top, from(#262626), to(#474747));
  background: linear-gradient(0deg, #262626 0%, #474747 100%);
  font-size: 0.75rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.1875rem;
}
.c-floating-btn--tel::before {
  width: 1.25rem;
  height: 1.6875rem;
  background: url(../images/common/tel-icon.svg) center center/contain no-repeat;
}

.c-hamburger {
  display: none;
  z-index: 999;
  padding: 0.5rem;
  position: fixed;
  top: 0.5rem;
  right: 0.8125rem;
}
@media screen and (max-width: 600px) {
  .c-hamburger {
    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;
  }
}

.c-hamburger__bar {
  display: block;
  width: 2.875rem;
  height: 0.125rem;
  background-color: #FF5900;
  border-radius: 0.0625rem;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
}

/* 通常時（≡みたいに2本） */
.c-hamburger[aria-expanded=false] .c-hamburger__bar:nth-child(2) {
  margin-top: 0.25rem;
}

/* 展開時（×になる） */
.c-hamburger[aria-expanded=true] .c-hamburger__bar:nth-child(1) {
  margin-top: 0.125rem;
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
  background-color: #fff;
}

.c-hamburger[aria-expanded=true] .c-hamburger__bar:nth-child(2) {
  margin-top: -0.125rem;
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
  background-color: #fff;
}

.c-hamburger__text {
  display: block;
  margin-top: 0.1875rem;
}

.c-hamburger[aria-expanded=true] .c-hamburger__text {
  margin-top: 0.375rem;
}

.c-hamburger__text::before {
  content: "MENU";
  display: block;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  color: #FF5900;
}

.c-hamburger[aria-expanded=true] .c-hamburger__text::before {
  content: "CLOSE";
  display: block;
  letter-spacing: -0.02em;
  color: #fff;
}

.c-section-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: 3.5rem;
}

.c-section-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}

.c-section-item__img-wrap {
  position: relative;
  width: 100%;
}

.c-section-item__img {
  width: 20rem;
  aspect-ratio: 320/200;
}
.c-section-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-section-item:nth-child(odd) .c-section-item__img {
  -webkit-transform: translateX(-1.25rem);
          transform: translateX(-1.25rem);
}

.c-section-item:nth-child(even) .c-section-item__img {
  margin-left: auto;
  -webkit-transform: translateX(1.25rem);
          transform: translateX(1.25rem);
}

.c-section-item__number {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(242, 227, 213, .9);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  white-space: nowrap;
}

.c-section-items--reason .c-section-item__number {
  color: rgba(242, 227, 213, .9);
}

.c-section-items--feature .c-section-item__number {
  color: rgba(255, 183, 115, .9);
}

.c-section-item:nth-child(odd) .c-section-item__number {
  right: 0;
}

.c-section-item:nth-child(even) .c-section-item__number {
  left: 0;
}

.c-section-item__number-accent {
  font-size: 2.5rem;
}

.c-section-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.c-section-item__title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.5;
  color: #FFD70E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  border-left: 0.25rem solid #FFD70E;
  padding-left: 1rem;
}

.c-section-items--reason .c-section-item__title {
  color: #FFD70E;
  border-left: 0.25rem solid #FFD70E;
}

.c-section-items--feature .c-section-item__title {
  color: #FF5900;
  border-left: 0.25rem solid #FF5900;
}

.c-section-item__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
}

.c-section-items--reason .c-section-item__text {
  color: #fff;
}

.c-section-items--feature .c-section-item__text {
  color: #333;
}

.c-section-item__text-accent {
  font-weight: 800;
  color: #FFD70E;
}

.c-section-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.9375rem;
}
.c-section-title:after {
  display: block;
  content: "";
  width: 2.5rem;
  height: 0.1875rem;
  background-color: #fff;
  border-radius: 50vh;
}

.c-section-title--black {
  color: #333;
}
.c-section-title--black:after {
  background-color: #333;
}

.c-tel {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.375rem;
}
.c-tel:before {
  display: block;
  content: "";
  width: 1.125rem;
  height: 1.5rem;
  background: url(../images/common/tel-icon.svg) center top/cover no-repeat;
  margin-bottom: 0.125rem;
}

.c-tel--black {
  color: #333;
}
.c-tel--black:before {
  background: url(../images/common/tel-icon-black.svg) center top/cover no-repeat;
}

.c-text {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: 0.02em;
  color: #fff;
}

.c-text.c-text--shadow {
  text-shadow: 0px 0px 1.875rem rgba(0, 0, 0, .25);
}

.p-company {
  position: relative;
  background-color: #323232;
  padding: 3.5rem 0;
}

.p-company__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: 0.25rem;
  margin-top: 2.5rem;
  width: 100%;
  background-color: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem 0.625rem;
}

.p-company__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.p-company__term {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  color: #444;
  width: 27.8947368421%;
  padding: 0.5rem;
  border-bottom: 0.125rem solid #FF5900;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-company__desc {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: #444;
  width: 72.1052631579%;
  padding: 0.5rem;
  border-bottom: 0.125rem solid #d5d5d5;
}

.p-contact {
  position: relative;
}

.p-contact__box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 1rem;
  background: rgba(255, 255, 255, .94);
  padding: 2.1875rem 1.25rem 2.5rem 1.25rem;
  position: relative;
}

.p-contact__label {
  display: grid;
  place-items: center;
  width: 5.125rem;
  height: 5.125rem;
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  background: #AE2525;
  border-radius: 50%;
  border: 0.125rem solid #FF5900;
  position: absolute;
  top: -1.75rem;
  left: -0.3125rem;
}

.p-contact__title {
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  text-align: center;
  position: relative;
}

.p-contact__text {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #333;
}

.p-contact__text-accent {
  font-size: 4rem;
  color: #FF5900;
}

.p-contact__text--orange {
  color: #FF5900;
}

.p-contact__consultation-text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 1.125rem;
  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: 0.6875rem;
}
.p-contact__consultation-text:before {
  content: "";
  display: block;
  width: 5rem;
  height: 0.25rem;
  background: url(../images/top/contact-line.svg) center top/cover no-repeat;
}
.p-contact__consultation-text:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0.25rem;
  background: url(../images/top/contact-line.svg) center top/cover no-repeat;
}

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

.p-faq__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: 0.75rem;
  margin-top: 2rem;
}

.p-faq__item {
  background-color: #fff;
  border-radius: 1.5rem;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.p-faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FF5900;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.0225rem;
  position: relative;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #dedede;
}

.p-faq__question-number {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.048em;
}

.p-faq__question-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.036em;
}

.p-faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #444;
}

.p-faq__answer-label {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.03rem;
  color: #20B2AA;
  padding-left: 0.375rem;
}

.p-faq__answer-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #444;
}

.p-fixed-bg {
  background-color: #FF5900;
  padding: 2.375rem 1.25rem 1.375rem 1.25rem;
  width: 100%;
  height: 100svh;
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (max-width: 600px) {
  .p-fixed-bg {
    display: none;
  }
}

.p-fixed-bg__splide {
  height: 100%;
}
.p-fixed-bg__splide .splide__track {
  height: 100%;
  border-radius: 1.5rem;
  background-color: #333;
}
.p-fixed-bg__splide .splide__list {
  height: 100%;
}

.p-fixed-bg__slide {
  height: 100%;
}

.p-fixed-bg__img {
  width: 100%;
  height: 100%;
}
.p-fixed-bg__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.5rem;
}

@media screen and (max-width: 1100px) {
  .p-fixed-bg__slide:nth-child(odd) .p-fixed-bg__img img {
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
}

.p-fixed-bg__name {
  position: absolute;
  bottom: 1.5rem;
  right: 3.375rem;
  z-index: 1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #CECECE;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  color: transparent;
  text-transform: uppercase;
}
@media screen and (max-width: 1100px) {
  .p-fixed-bg__name {
    right: auto;
    right: initial;
    left: 2.5rem;
  }
}

.p-fixed-bg__info {
  position: absolute;
  top: calc(50% - 0.5rem);
  left: calc(50% - 26.375rem);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 16rem;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .p-fixed-bg__info {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 2.75rem;
  }
}
@media screen and (max-width: 1100px) {
  .p-fixed-bg__info {
    right: 31.25rem;
    left: auto;
    left: initial;
    top: calc(50% + 1.25rem);
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
  }
}
@media screen and (max-height: 660px) {
  .p-fixed-bg__info {
    display: none;
  }
}

.p-fixed-bg__menu {
  position: absolute;
  top: calc(50% + 0.5rem);
  left: calc(50% + 17.75rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8.875rem;
  z-index: 1;
}
@media screen and (max-width: 1100px) {
  .p-fixed-bg__menu {
    width: 14.75rem;
    right: 31.25rem;
    left: auto;
    left: initial;
    top: calc(50% - 1.25rem);
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@media screen and (max-height: 660px) {
  .p-fixed-bg__menu {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.p-fixed-bg__thanks-text {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #CECECE;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.1;
  color: transparent;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: calc(50% - 26.375rem);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 18.5rem;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .p-fixed-bg__thanks-text {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 2.75rem;
  }
}
@media screen and (max-width: 1100px) {
  .p-fixed-bg__thanks-text {
    right: 31.25rem;
    left: auto;
    left: initial;
  }
}

.p-flow__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: 2.1875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2.5rem;
}

.p-flow__item {
  position: relative;
}
.p-flow__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 1.09375rem solid transparent;
  border-right: 1.09375rem solid transparent;
  border-top: 1.125rem solid #A3A3A3;
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(100%);
          transform: translateX(-50%) translateY(100%);
  z-index: 1;
}

.p-flow__item-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 8.0625rem;
  padding: 0 0.5rem 0.125rem 0.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.5rem 0.5rem 0 0;
  background: #FF5900;
  color: #FFFBE8;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.036em;
}

.p-flow__item-content {
  background-color: #FFFBE8;
  border-radius: 0 1.5rem 1.5rem 1.5rem;
  padding: 0.75rem 1rem 0.75rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-flow__item-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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.25rem;
}

.p-flow__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: #FF5900;
  letter-spacing: 0.025rem;
}

.p-flow__item-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #444;
}

.p-footer {
  background-color: #323232;
  padding-bottom: 2.5rem;
  text-align: center;
  width: 100%;
  max-width: 27.5rem;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1100px) {
  .p-footer {
    margin-inline: initial;
    margin-left: auto;
    -webkit-transform: translateX(-2.5rem);
            transform: translateX(-2.5rem);
  }
}
@media screen and (max-width: 600px) {
  .p-footer {
    padding-bottom: 5rem;
    margin-inline: auto;
    margin-left: 0;
    margin-left: initial;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
  }
}

.p-footer__copyright {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 2.21;
  color: #fff;
  display: block;
}

.p-form {
  background-color: #F6F3E7;
  padding-top: 3.5rem;
  padding-bottom: 5rem;
  border-radius: 5rem;
  position: relative;
}
.p-form:before {
  display: block;
  content: "";
  width: 100%;
  height: 5rem;
  background-color: #AE2525;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.p-form:after {
  display: block;
  content: "";
  width: 100%;
  height: 5rem;
  background-color: #323232;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.p-form__lead {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  color: #222;
  text-align: center;
  margin-top: 2.5rem;
}

.p-form__form-wrap {
  margin-top: 1.5rem;
  margin-inline: auto;
}

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

.p-form__field {
  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;
  gap: 0.75rem;
}

.p-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #222;
}

.p-form__required {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.03125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  background-color: #d10909;
  border-radius: 0.1875rem;
}

.p-form__optional {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.03125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  background-color: transparent;
  border: 1px solid #333;
  border-radius: 0.1875rem;
}

.p-form__input {
  width: 100%;
  height: 3.25rem;
  padding: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #222;
  background-color: #fff;
  border: 0.125rem solid #ddd;
  border-radius: 0.3125rem;
}
.p-form__input:focus {
  outline: none;
  border-color: #333;
}

.p-form__textarea {
  width: 100%;
  min-height: 9.25rem;
  padding: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #222;
  background-color: #fff;
  border: 0.125rem solid #ddd;
  border-radius: 0.3125rem;
}
.p-form__textarea:focus {
  outline: none;
  border-color: #333;
}

.p-form__select {
  width: 12rem;
  height: 3.25rem;
  padding: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #222;
  background-color: #fff;
  border: 0.125rem solid #ddd;
  border-radius: 0.3125rem;
}
.p-form__select:focus {
  outline: none;
  border-color: #333;
}

.p-form__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.0625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-form__checkbox span {
  margin-left: 0 !important;
}

.p-form__checkbox-label {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  color: #222;
}

.p-form__checkbox-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-form__checkbox-label {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6;
  color: #222;
  cursor: pointer;
}

.p-form__privacy {
  width: 100%;
  margin-top: 1.875rem;
}

.p-form__privacy-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #333;
}

.p-form__privacy-content {
  padding: 1.0625rem 1rem 2.5rem 1rem;
  width: 100%;
  height: 7rem;
  background-color: #fff;
  border: 1px solid #ddd;
  overflow-y: auto;
  overflow-x: hidden;
  margin-top: 0.75rem;
}

.p-form__privacy-content-head {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  text-align: center;
}

.p-form__privacy-items {
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

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

.p-form__privacy-head {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6;
  color: #333;
}

.p-form__privacy-text {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}

.p-form__privacy-list {
  list-style: disc;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  padding-left: 0.75rem;
}

.p-form__checkbox-agree label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.75rem;
}
.p-form__checkbox-agree label span {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6;
  color: #AE2525;
  cursor: pointer;
}

.p-form__submit {
  width: 20rem;
  margin-top: 1.875rem;
}

.p-form__submit-btn {
  display: grid;
  place-items: center;
  text-align: center;
  width: 100%;
  height: 4.375rem;
  font-size: 1.625rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(144.89deg, #df3c00 0%, #fd6300 100%);
  border: none;
  border-radius: 50vh;
  -webkit-box-shadow: 0px 0.25rem 0.9375rem rgba(198, 121, 94, .4);
          box-shadow: 0px 0.25rem 0.9375rem rgba(198, 121, 94, .4);
  cursor: pointer;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
}

@media (hover: hover) {
  .p-form__submit-btn:hover {
    border: 0.125rem solid #FF5900;
    background: #fff;
    color: #FF5900;
  }
}
.wpcf7-spinner {
  margin-top: 0.625rem;
  margin-left: 0;
}

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

.grecaptcha-badge {
  visibility: hidden;
  -webkit-transition: visibility 0.3s;
  transition: visibility 0.3s;
  z-index: 3;
  bottom: 3.75rem !important;
}

.p-fv {
  padding-top: 20rem;
  padding-bottom: 7.9375rem;
  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;
  overflow-x: hidden;
}

.p-fv__title-wrap {
  position: relative;
  -webkit-transform: rotate(-5.076deg);
          transform: rotate(-5.076deg);
}
.p-fv__title-wrap:before {
  content: "";
  display: block;
  width: 28.75rem;
  height: 3.75rem;
  background-color: #FF5900;
  position: absolute;
  bottom: 0.9375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-fv__title {
  display: block;
  width: 25rem;
  height: 7.625rem;
  position: relative;
  -webkit-box-shadow: 5px 5px 0 0 rgba(0, 0, 0, .8);
          box-shadow: 5px 5px 0 0 rgba(0, 0, 0, .8);
  padding: 0.875rem 1.5625rem 0.375rem 6.5625rem;
  background-color: #fff;
  position: relative;
}

.p-fv__title-label {
  width: 18.9375rem;
  height: 1.625rem;
  display: grid;
  place-items: center;
  background-color: #FF5900;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="2" dy="2" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.8)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, .8));
          filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, .8));
}

.p-fv__title-text {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.1;
}

.p-fv__title-logo {
  width: 14.375rem;
  margin-top: 0.25rem;
}
.p-fv__title-logo img {
  width: 100%;
}

.p-fv__title-balloon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 0.9375rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  position: absolute;
  top: 1.75rem;
  left: -0.9375rem;
  width: 6.875rem;
  -webkit-transform: rotate(-5.076deg);
          transform: rotate(-5.076deg);
  height: 5.375rem;
  background: url(../images/top/balloon-icon.svg) center top/cover no-repeat;
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
@media screen and (max-width: 600px) {
  .p-header {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, .94)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to bottom, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, 0) 100%);
  }
}

.p-header__inner {
  padding-left: 2.625rem;
}
@media screen and (max-width: 600px) {
  .p-header__inner {
    padding: 1rem 1.3125rem 0.5rem 1.5rem;
  }
}

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

.p-header__logo {
  width: 12.6875rem;
}
@media screen and (max-width: 1100px) {
  .p-header__logo {
    width: 10rem;
  }
}
@media screen and (max-width: 600px) {
  .p-header__logo {
    width: 8.75rem;
  }
}

.p-header__logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.p-header__logo a img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ドロワー本体（右 70%） */
.p-header__sp-global-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 70vw;
  min-width: 23.75rem;
  height: 100vh;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  z-index: 998;
  /* ドロワー自体が暗い（ここで暗い背景） */
  background: rgba(0, 0, 0, .9);
  /* ここは任意：中身がスクロールするなら */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.p-header__sp-global-menu-inner {
  padding: 5rem 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}

/* 開いてる時 */
.is-drawerActive .p-header__sp-global-menu {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* 残り30%のクリック用（透明） */
.p-header__drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 997;
}

/* 開いてる時だけクリックできる */
.is-drawerActive .p-header__drawer-background {
  visibility: visible;
  pointer-events: auto;
}

/* 背面スクロール停止（body固定） */
body.is-drawerActive {
  position: fixed;
  width: 100%;
  left: 0;
  overflow: hidden;
}

.p-parts-info__text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

.p-parts-info__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.p-parts-menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-parts-menu__item a {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  display: block;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  padding: 0.75rem 0;
}

@media (hover: hover) {
  .p-parts-menu__item a:hover {
    color: #FF5900;
  }
}
.p-thanks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 1rem;
  padding-bottom: 1.75rem;
}
@media screen and (max-width: 600px) {
  .p-thanks {
    padding-top: 5rem;
  }
}

.p-thanks__title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.5;
  margin-top: 1rem;
}

.p-thanks__text {
  font-size: 1rem;
  margin-top: 1.6875rem;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.p-thanks__btn {
  margin-top: 2.5rem;
  margin-inline: auto;
}

.p-why {
  position: relative;
  background-color: #FF5900;
  padding-top: 0.125rem;
  padding-bottom: 1.125rem;
}

.p-why__subtitle {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 6.25rem;
  font-weight: 400;
  line-height: 1;
  color: #FF5900;
  -webkit-text-stroke: 1px #CECECE;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 1;
}

.p-why__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  text-align: left;
  margin-top: -1.25rem;
}

.p-why__top-content {
  padding-top: 11.25rem;
  position: relative;
  z-index: 1;
  height: 43.25rem;
  margin-top: -3.125rem;
}
.p-why__top-content:before {
  display: block;
  content: "";
  width: 27.5rem;
  background: url(../images/top/why-bg-top.webp) center top/cover no-repeat;
  aspect-ratio: 440/692;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  z-index: -1;
}
.p-why__top-content:after {
  display: block;
  content: "";
  width: 10rem;
  aspect-ratio: 160/203;
  background: url(../images/top/why-bg-img.webp) center top/cover no-repeat;
  position: absolute;
  left: -1.25rem;
  bottom: -7.3125rem;
}

.p-why__top-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: #dedede;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}
.p-why__top-title:after {
  content: "";
  display: block;
  width: 8rem;
  height: 0.5rem;
  margin: 1rem auto 0;
  background: url(../images/top/why-icon-line.svg) center center/cover no-repeat;
}

.p-why__top-items {
  position: relative;
}

.p-why__top-item {
  width: 11rem;
  position: absolute;
}
.p-why__top-item img {
  width: 100%;
}
.p-why__top-item:nth-child(1) {
  left: -0.5625rem;
  top: 2.125rem;
}
.p-why__top-item:nth-child(2) {
  left: 8.625rem;
  top: -0.375rem;
}
.p-why__top-item:nth-child(3) {
  right: -2.9375rem;
  top: 5.375rem;
}
.p-why__top-item:nth-child(4) {
  left: 0;
  top: 13.5625rem;
}
.p-why__top-item:nth-child(5) {
  left: 7.9375rem;
  top: 8.9375rem;
}
.p-why__top-item:nth-child(6) {
  left: 9.4375rem;
  top: 18.1875rem;
}
.p-why__top-item:nth-child(7) {
  right: -1.375rem;
  top: 14.0625rem;
}

.p-why__bottom-content {
  padding-top: 6.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  width: 100%;
  position: relative;
  z-index: 1;
}
.p-why__bottom-content:before {
  display: block;
  content: "";
  width: 4.375rem;
  height: 2rem;
  background: url(../images/top/why-icon-arrow.svg) center center/cover no-repeat;
  position: absolute;
  top: 2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.p-why__bottom-content:after {
  display: block;
  content: "";
  width: 27.5rem;
  aspect-ratio: 440/669;
  background: url(../images/top/why-bg-arrow.webp) center center/cover no-repeat;
  position: absolute;
  top: 1.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.p-why__bottom-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: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

.p-why__bottom-head {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  width: 100%;
}

.p-why__bottom-box-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.125rem;
}

.p-why__bottom-box-text {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  background-color: #fff;
  padding: 0 0.75rem 0 0.6875rem;
  color: #333;
}

.p-why__bottom-amp {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
}

.p-why__bottom-box-text-accent {
  color: #AE2525;
}

.p-why__bottom-img {
  margin-top: -1.5rem;
  width: 100%;
  aspect-ratio: 397/240;
}
.p-why__bottom-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-why__bottom-text {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  text-align: left;
  width: 100%;
  max-width: 24.8125rem;
}

.p-why__bottom-icons {
  width: 23.125rem;
  margin-top: 1.875rem;
  margin-inline: auto;
}
.p-why__bottom-icons img {
  width: 100%;
}

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

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

.u-mobile2 {
  display: none;
}
@media screen and (max-width: 400px) {
  .u-mobile2 {
    display: block;
  }
}

.js-fade-up {
  will-change: opacity, transform;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(1.25rem);
          transform: translateY(1.25rem);
  -webkit-transition: opacity 0.5s ease-out 0.5s, visibility 0.5s ease-out 0.5s, -webkit-transform 0.5s ease-out 0.5s;
  transition: opacity 0.5s ease-out 0.5s, visibility 0.5s ease-out 0.5s, -webkit-transform 0.5s ease-out 0.5s;
  transition: opacity 0.5s ease-out 0.5s, visibility 0.5s ease-out 0.5s, transform 0.5s ease-out 0.5s;
  transition: opacity 0.5s ease-out 0.5s, visibility 0.5s ease-out 0.5s, transform 0.5s ease-out 0.5s, -webkit-transform 0.5s ease-out 0.5s;
}
.js-fade-up.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
/*# sourceMappingURL=styles.css.map */
