@charset "UTF-8";
html {
  scroll-padding-top: 4.6875rem;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 1.1111111111vw;
  scroll-behavior: smooth;
  font-family: "M PLUS 1", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  color: #0A0A0A;
}
@media (max-width: 1920px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 900px) {
  html {
    font-size: 16px;
  }
}
@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: #fff;
  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: 900px) {
  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: 50.5rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
@media screen and (max-width: 1920px) {
  .l-inner {
    max-width: 808px;
  }
}

.l-main {
  width: 100%;
  max-width: 27.5rem;
  padding-top: 4.5rem; /* 固定ヘッダー分 */
  background-color: #fff;
  margin-left: auto;
  margin-right: 13%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .l-main {
    margin-right: 11.75rem;
  }
}

.c-btn {
  display: grid;
  place-items: center;
  width: 19.0625rem;
  height: 3.5rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background-color: #FF5900;
  border-radius: 50vh;
  -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);
}
@media (hover: hover) {
  .c-btn:hover {
    -webkit-transform: translateY(-0.375rem);
            transform: translateY(-0.375rem);
  }
}

.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:after {
  display: block;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
}

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

.c-floating-btn--line {
  width: 38.6363636364%;
  border-right: 1px solid #989898;
  background: -webkit-gradient(linear, left top, left bottom, from(#06C755), to(#00983E));
  background: linear-gradient(180deg, #06C755 0%, #00983E 100%);
}
.c-floating-btn--line::after {
  background: url(../images/common/icon-link.svg) center center/contain no-repeat;
}

.c-floating-btn--tel {
  width: 22.7272727273%;
  background: -webkit-gradient(linear, left bottom, left top, from(#730000), to(#FF0000));
  background: linear-gradient(0deg, #730000 0%, #FF0000 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:after {
  display: none;
}
.c-floating-btn--tel::before {
  display: block;
  content: "";
  width: 1.25rem;
  height: 1.6875rem;
  background: url(../images/common/icon-tel3.svg) center center/contain no-repeat;
}

.c-hamburger {
  display: none;
  z-index: 1000;
  padding: 0.5rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
@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;
    gap: 0.5rem;
  }
}

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

.c-hamburger[aria-expanded=true] {
  gap: 0;
}

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

.c-hamburger[aria-expanded=true] .c-hamburger__bar:nth-child(2) {
  opacity: 0;
}

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

.c-section-title {
  width: 100%;
  max-width: 20.875rem;
  aspect-ratio: 334/62;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  margin-inline: auto;
}
.c-section-title text {
  stroke: #371300;
  stroke-linejoin: round;
  paint-order: stroke fill;
  stroke-width: 8;
}
.c-section-title svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  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="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(55,19,0,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0.1875rem 0.1875rem 0 #371300);
          filter: drop-shadow(0.1875rem 0.1875rem 0 #371300);
}

.c-section-title--comparison text {
  stroke: #6F3414;
}
.c-section-title--comparison svg {
  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="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(134,90,45,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0.1875rem 0.1875rem 0 #865A2D);
          filter: drop-shadow(0.1875rem 0.1875rem 0 #865A2D);
}

.c-section-title--line {
  position: relative;
  z-index: 1;
}
.c-section-title--line::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.5rem;
  height: 0.625rem;
  background: #FFD700;
  z-index: -1;
}

.c-tel {
  font-family: "Radio Canada", sans-serif;
  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.25rem;
}
.c-tel:before {
  display: block;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
}

.c-tel--blue {
  color: #2138CE;
  font-size: 2rem;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 900px) {
  .c-tel--blue {
    font-size: 1.5rem;
    letter-spacing: -0.05em;
    gap: 0;
    white-space: nowrap;
  }
}
.c-tel--blue:before {
  background: url(../images/common/icon-tel.svg) center top/cover no-repeat;
}
@media screen and (max-width: 900px) {
  .c-tel--blue:before {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.c-tel--green {
  color: #06C755;
  font-size: 2.5rem;
  font-weight: 600;
}
.c-tel--green:before {
  width: 1.1875rem;
  height: 1.5625rem;
  background: url(../images/common/icon-tel2.svg) center top/cover no-repeat;
  margin-bottom: 0.4375rem;
}

.c-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
  color: #0A0A0A;
}

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

.p-company__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #5a2509;
  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: 0.875rem;
}
.p-company__title:after {
  display: block;
  content: "";
  width: 3.5rem;
  height: 0.25rem;
  background-color: #5a2509;
}

.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: #0A0A0A;
  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: #0A0A0A;
  width: 72.1052631579%;
  padding: 0.5rem;
  border-bottom: 0.125rem solid #E5E5E5;
}

.p-comparison {
  padding-top: 3.5rem;
  padding-bottom: 5.625rem;
  background-color: #FFD700;
}

.p-comparison__title {
  width: 12.5rem;
  margin-inline: auto;
}
.p-comparison__title img {
  width: 100%;
}

.p-comparison__table {
  width: 100%;
  max-width: 25rem;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0.5rem;
  font-family: "M PLUS 1", sans-serif;
  padding-top: 2rem;
}

.p-comparison__th {
  padding: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
  width: 6.75rem;
}
.p-comparison__th--spacer {
  width: 4.75rem;
  color: transparent;
}
.p-comparison__th--hajimeru {
  position: relative;
  background: #FF5900;
  color: #fff;
  border-top: 0.1875rem solid #FF5900;
  border-left: 0.1875rem solid #FF5900;
  border-right: 0.1875rem solid #FF5900;
  font-weight: 700;
  position: relative;
}
.p-comparison__th--hajimeru::after {
  content: "";
  display: block;
  height: 1.375rem;
  width: calc(100% + 0.375rem);
  background: #FF5900;
  position: absolute;
  border-radius: 0.5rem 0.5rem 0 0;
  top: 0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-100%);
          transform: translateX(-50%) translateY(-100%);
}
.p-comparison__th--other {
  background: #E5E5E5;
  color: #0A0A0A;
  font-weight: 500;
  min-width: 6.6875rem;
}
.p-comparison__th--self {
  background: #E5E5E5;
  color: #0A0A0A;
  font-weight: 500;
  min-width: 6.6875rem;
}
.p-comparison__th--other, .p-comparison__th--self {
  border-top: 0.0625rem solid #fff;
  border-right: 0.0625rem solid #fff;
}

.p-comparison__label {
  padding: 0.5625rem 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  background: #7c5339;
  border-bottom: 0.0625rem solid #dfdfdf;
  text-align: center;
  vertical-align: middle;
  min-width: 4.75rem;
}

.p-comparison__cell {
  padding: 0.5625rem 0.25rem;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.4;
  color: #0A0A0A;
  background: #fff;
  border-bottom: 0.0625rem solid #dfdfdf;
  border-right: 0.0625rem solid #dfdfdf;
  text-align: center;
  vertical-align: middle;
  min-width: 6.6875rem;
}
.p-comparison__cell > * {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.p-comparison__cell:nth-child(2) {
  position: relative;
}
.p-comparison__cell:nth-child(2)::before, .p-comparison__cell:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: -0.0625rem;
  width: 0.1875rem;
  background: #FF5900;
  z-index: 1;
}
.p-comparison__cell:nth-child(2)::before {
  left: 0;
}
.p-comparison__cell:nth-child(2)::after {
  right: -0.0625rem;
}

.p-comparison__icon {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.1875rem;
  height: 1.1875rem;
  margin: 0 auto 0.25rem;
  background: no-repeat center/contain;
}
.p-comparison__icon--check {
  background-image: url(../images/top/comparison-icon-check.svg);
}
.p-comparison__icon--check2 {
  background-image: url(../images/top/comparison-icon-check2.svg);
}
.p-comparison__icon--triangle {
  background-image: url(../images/top/comparison-icon-triangle.svg);
}
.p-comparison__icon--cross {
  background-image: url(../images/top/comparison-icon-cross.svg);
}

.p-comparison__cell .p-comparison__text {
  margin: 0;
}

.p-comparison__text {
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.4;
  color: #0A0A0A;
}

.p-comparison__table thead tr:first-child .p-comparison__th--spacer {
  border-radius: 0.5rem 0 0 0;
}

.p-comparison__table thead tr:first-child .p-comparison__th--self {
  border-radius: 0 0.5rem 0 0;
}

.p-comparison__table tbody tr:first-child .p-comparison__label {
  border-radius: 0.5rem 0 0 0;
}

.p-comparison__table tbody tr:last-child .p-comparison__label {
  border-radius: 0 0 0 0.5rem;
}

.p-comparison__table tbody tr:last-child .p-comparison__cell:last-child {
  border-radius: 0 0 0.5rem 0;
}

.p-comparison__table tbody tr:last-child .p-comparison__cell:nth-child(2)::before {
  top: 0;
  bottom: -0.1875rem;
  left: 0;
  right: 0;
  width: 6.75rem;
  height: auto;
  background: -webkit-gradient(linear, left top, left bottom, from(#FF5900), to(#FF5900)) left bottom/100% 0.1875rem no-repeat, -webkit-gradient(linear, left top, left bottom, from(#FF5900), to(#FF5900)) left top/0.1875rem 100% no-repeat;
  background: linear-gradient(#FF5900, #FF5900) left bottom/100% 0.1875rem no-repeat, linear-gradient(#FF5900, #FF5900) left top/0.1875rem 100% no-repeat;
}

.p-comparison__note {
  font-family: "M PLUS 1", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  color: #0A0A0A;
  margin-top: 0.625rem;
}
.p-comparison__note:last-child {
  margin-top: 0;
}

.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: #0A0A0A;
  text-align: center;
  position: relative;
}

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

.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 {
  padding: 3.75rem 0;
  padding-top: 5.875rem;
  background-color: #FFD700;
}

.p-faq__title {
  margin-inline: auto;
  width: 20.875rem;
}
.p-faq__title img {
  width: 100%;
}

.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;
  padding: 1.625rem 1rem 2.125rem 1rem;
  background-color: #fff;
  border: 0.125rem solid #6f3414;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0.1875rem 0.25rem 0 0 #5a2509;
          box-shadow: 0.1875rem 0.25rem 0 0 #5a2509;
  margin-top: 1.375rem;
}

.p-faq__item {
  display: block;
  padding: 0.625rem 0;
}
.p-faq__item:not(:last-child) {
  border-bottom: 0.0625rem solid #DDD;
}

.p-faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.875rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 0.75rem;
  font-family: "M PLUS 1", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  color: #5a2509;
}
.p-faq__question::before {
  content: "Q";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.6875rem;
  height: 1.6875rem;
  background: #FF5900;
  border-radius: 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.p-faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5625rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0;
  font-family: "M PLUS 1", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  color: #5e5e5e;
  padding-right: 0.625rem;
}
.p-faq__answer::before {
  content: "A";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.6875rem;
  height: 1.6875rem;
  border: 0.0625rem solid #FF5900;
  border-radius: 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FF5900;
}

.p-fixed-bg {
  background: url(../images/common/fixed-bg.webp) center center/cover no-repeat;
  width: 100%;
  height: 100svh;
  height: calc(100vh - 4.5rem);
  position: fixed;
  top: 4.5rem;
  left: 0;
}
@media screen and (max-width: 900px) {
  .p-fixed-bg {
    background-position: bottom right;
  }
}
@media screen and (max-width: 600px) {
  .p-fixed-bg {
    display: none;
  }
}

.p-fixed-bg__inner {
  position: relative;
  width: 100%;
  height: 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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1440px) {
  .p-fixed-bg__inner {
    width: calc(100% - 39.25rem);
  }
}
@media screen and (max-width: 900px) {
  .p-fixed-bg__inner {
    display: none;
  }
}

.p-fixed-bg__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 42.1875rem;
  margin-left: 3.8%;
  margin-top: -2.75rem;
}

.p-fixed-bg__img {
  width: 100%;
}
.p-fixed-bg__img img {
  width: 100%;
}

.p-fixed-bg__text-box {
  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;
  width: 100%;
  max-width: 33.5625rem;
  padding: 0 2.5rem;
  overflow: visible;
  margin-top: -3.25rem;
}

.p-fixed-bg__text-accent {
  font-size: 1.40625rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-fixed-bg__text-accent::before {
  content: "";
  display: block;
  width: 1.5625rem;
  height: 2rem;
  background: url(../images/common/icon-accent.svg) center top/cover no-repeat;
}
.p-fixed-bg__text-accent::after {
  content: "";
  display: block;
  width: 1.5625rem;
  height: 2rem;
  background: url(../images/common/icon-accent.svg) center top/cover no-repeat;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

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

.p-fixed-bg__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.625rem 0.6875rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#FF5900), to(#d24a00));
  background: linear-gradient(to bottom, #FF5900, #d24a00);
  border: 0.14375rem solid #fff;
  -webkit-box-shadow: 0.21875rem 0.21875rem 0 #666;
          box-shadow: 0.21875rem 0.21875rem 0 #666;
  white-space: nowrap;
}

.p-fixed-bg__cross-mark {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-fixed-bg__text-svg {
  width: 100%;
  max-width: 26.125rem;
  aspect-ratio: 418/70;
  stroke-linejoin: round;
  font-family: "M PLUS 1", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  fill: #fff;
  stroke: #0A0A0A;
  margin-top: -0.875rem;
  letter-spacing: 0.07em;
}
.p-fixed-bg__text-svg text {
  stroke: #0A0A0A;
  stroke-width: 0.5rem;
  stroke-linejoin: round;
  paint-order: stroke fill;
  stroke-width: 8;
}
.p-fixed-bg__text-svg svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  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="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0.22rem 0.22rem 0 #000);
          filter: drop-shadow(0.22rem 0.22rem 0 #000);
}

.p-fixed-nav {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 999;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 600px) {
  .p-fixed-nav {
    display: none;
  }
}

.p-fixed-nav__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.375rem;
}

.p-fixed-nav__item {
  width: 8.5rem;
  height: 1.9375rem;
}

.p-fixed-nav__item a {
  display: block;
  padding: 0.25rem 0.75rem 0.375rem;
  text-align: right;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  background: #0A0A0A;
  border-radius: 0.25rem 0 0 0.25rem;
  -webkit-transition: color 0.2s ease, background 0.2s ease;
  transition: color 0.2s ease, background 0.2s ease;
}
@media (hover: hover) {
  .p-fixed-nav__item a:hover {
    color: #0A0A0A;
    background: #fff;
  }
}

.p-flow {
  padding: 4rem 0;
  background-color: #FF5900;
  position: relative;
}
.p-flow:before {
  display: block;
  content: "";
  width: 100%;
  height: 1.8125rem;
  position: absolute;
  left: 0;
  top: 0.0625rem;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  background: url(../images/top/flow-bg.svg) center top/cover no-repeat;
}

.p-flow__title {
  width: 20.875rem;
  margin-inline: auto;
}
.p-flow__title img {
  width: 100%;
}

.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: 0.75rem;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 22.5rem;
  margin-inline: auto;
}

.p-flow__item {
  background: #fff;
  border: 0.125rem solid #6f3414;
  border-radius: 0.5rem;
  padding: 1rem 1.3125rem;
  -webkit-box-shadow: 0.1875rem 0.25rem 0 0 #5a2509;
          box-shadow: 0.1875rem 0.25rem 0 0 #5a2509;
}

.p-flow__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.25rem;
  margin: 0 0 0.5rem;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 700;
  color: #FF5900;
  line-height: 1;
}

.p-flow__step-label {
  font-size: 1.25rem;
}

.p-flow__step-num {
  font-size: 1.5rem;
}

.p-flow__card-title {
  margin: 0 0 0.5rem;
  font-family: "M PLUS 1", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #6f3414;
  text-align: center;
}

.p-flow__card-title-note {
  font-size: 0.875rem;
  font-weight: 700;
}

.p-flow__card-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
  color: #5e5e5e;
}

.p-footer {
  background-color: #FFD700;
  padding-bottom: 2.5rem;
  text-align: center;
  width: 100%;
  max-width: 27.5rem;
  margin-inline: auto;
  margin-left: auto;
  margin-right: 13%;
  position: relative;
  z-index: 1;
}
@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: #262626;
  display: block;
}

.p-form {
  background-color: #fff;
  padding-top: 4.625rem;
  padding-bottom: 5rem;
}

.p-form__title {
  width: 20.875rem;
  margin-inline: auto;
}
.p-form__title img {
  width: 100%;
}

.p-form__lead {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  color: #E5E5E5;
  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: #0A0A0A;
}

.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: #0A0A0A;
  background-color: transparent;
  border: 1px solid #0A0A0A;
  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: #0A0A0A;
  background-color: #fff;
  border: 0.125rem solid #ddd;
  border-radius: 0.3125rem;
}
.p-form__input:focus {
  outline: none;
  border-color: #0A0A0A;
}

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

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

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

.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: #E5E5E5;
  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: #0A0A0A;
}

.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: #0A0A0A;
  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: #0A0A0A;
}

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

.p-form__privacy-list {
  list-style: disc;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  color: #0A0A0A;
  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-form__input::-webkit-input-placeholder {
  color: #DDD;
}

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

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

.p-form__input::placeholder {
  color: #DDD;
}

.p-fv {
  position: relative;
  width: 100%;
  height: 59.3125rem;
}

.p-fv__img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-fv__img img {
  width: 100%;
}

.p-fv__copy {
  position: absolute;
  -webkit-transform: rotate(-9deg);
          transform: rotate(-9deg);
}
.p-fv__copy img {
  width: 100%;
}

.p-fv__copy--01 {
  top: 22.6875rem;
  left: 1.0625rem;
  width: 13.125rem;
}

.p-fv__copy--02 {
  bottom: 20.375rem;
  right: 0.9375rem;
  width: 16.25rem;
}

.p-fv__btns {
  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.25rem;
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 22.625rem;
}

.p-fv__btn {
  display: grid;
  place-items: center;
  width: 100%;
  height: 5.25rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50vh;
  border: 0.1875rem solid #fff;
  -webkit-box-shadow: 0 0.375rem 0 0 #267044;
          box-shadow: 0 0.375rem 0 0 #267044;
}

.p-fv__btn--line {
  color: #fff;
  background: #06C755;
  border-color: #fff;
  position: relative;
  -webkit-animation: btn-anime 0.8s ease 0s infinite alternate;
          animation: btn-anime 0.8s ease 0s infinite alternate;
}
.p-fv__btn--line::before {
  content: "";
  position: absolute;
  left: 2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.5rem;
  height: 2.375rem;
  background: url(../images/common/icon-line2.svg) center center/contain no-repeat;
}
.p-fv__btn--line::after {
  content: "";
  position: absolute;
  right: 2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.75rem;
  height: 1.75rem;
  background: url(../images/common/icon-link.svg) center center/contain no-repeat;
}

.p-fv__btn-text {
  font-size: 1.5rem;
  line-height: 1.2;
}

.p-fv__btn-text-accent {
  font-size: 1.6875rem;
}

.p-fv__btn--tel {
  -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;
  color: #06C755;
  background: #fff;
  border-color: #06C755;
  padding-top: 0.375rem;
}

.p-fv__btn--tel .p-fv__btn-label {
  display: block;
  font-size: 1.25rem;
  letter-spacing: 0.002em;
  line-height: 1;
}

@-webkit-keyframes btn-anime {
  from {
    -webkit-transform: scale(0.93, 0.93);
            transform: scale(0.93, 0.93);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@keyframes btn-anime {
  from {
    -webkit-transform: scale(0.93, 0.93);
            transform: scale(0.93, 0.93);
  }
  to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  height: 4.5rem;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .25);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .25);
}
@media screen and (max-width: 600px) {
  .p-header {
    height: 4.6875rem;
  }
}

.p-header__inner {
  height: inherit;
  padding: 0 2.5rem;
}
@media screen and (max-width: 900px) {
  .p-header__inner {
    padding: 0 1.25rem;
  }
}

.p-header__flex {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.p-header__logo {
  width: 9.875rem;
}
@media screen and (max-width: 900px) {
  .p-header__logo {
    width: 7.875rem;
  }
}

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

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

/* PCコンタクトボタン */
.p-header__contact-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}
@media screen and (max-width: 900px) {
  .p-header__contact-items {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 600px) {
  .p-header__contact-items {
    display: none;
  }
}

/* SPコンタクトボタン */
@media screen and (max-width: 600px) {
  .p-header__contact-items.p-header__contact-items--sp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 600px) {
  .p-header__contact-items.p-header__contact-items--sp .c-tel.c-tel--blue {
    letter-spacing: 0;
    color: #fff;
  }
  .p-header__contact-items.p-header__contact-items--sp .c-tel.c-tel--blue:before {
    background: url(../images/common/icon-tel3.svg) center top/cover no-repeat;
    width: 1rem;
    height: 1.35rem;
  }
}

.p-header__contact-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  height: 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50vh;
}
@media screen and (max-width: 900px) {
  .p-header__contact-btn {
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .p-header__contact-btn {
    font-size: 1.125rem;
  }
}

.p-header__contact-btn--line {
  gap: 0.625rem;
  width: 9.4375rem;
  color: #06C755;
  background: #fff;
  border: 0.125rem solid #06C755;
}
@media screen and (max-width: 900px) {
  .p-header__contact-btn--line {
    width: 7.5rem;
    gap: 0.375rem;
  }
}
@media screen and (max-width: 600px) {
  .p-header__contact-btn--line {
    width: 10.5rem;
    gap: 0.625rem;
  }
}
.p-header__contact-btn--line:before {
  display: block;
  content: "";
  width: 1.4375rem;
  height: 1.4375rem;
  background: url(../images/common/icon-line.svg) center top/cover no-repeat;
}
@media screen and (max-width: 900px) {
  .p-header__contact-btn--line:before {
    width: 1.125rem;
    height: 1.125rem;
  }
}
@media screen and (max-width: 600px) {
  .p-header__contact-btn--line:before {
    width: 1.4375rem;
    height: 1.4375rem;
  }
}

.p-header__contact-btn--form {
  gap: 0.25rem;
  width: 10.5rem;
  color: #fff;
  background: #DC0000;
}
@media screen and (max-width: 900px) {
  .p-header__contact-btn--form {
    width: 8.375rem;
  }
}
@media screen and (max-width: 600px) {
  .p-header__contact-btn--form {
    width: 10.5rem;
  }
}
.p-header__contact-btn--form:before {
  display: block;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/common/icon-mail.svg) center top/cover no-repeat;
}
@media screen and (max-width: 900px) {
  .p-header__contact-btn--form:before {
    width: 1.125rem;
    height: 1.125rem;
  }
}
@media screen and (max-width: 600px) {
  .p-header__contact-btn--form:before {
    width: 1.5rem;
    height: 1.5rem;
  }
}

@media (hover: hover) {
  .p-header__contact-btn:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
/* ドロワー本体（右 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;
}

/* 背面スクロール停止（fixed は使わず overflow のみ＝閉じたときに画面が動かない） */
body.is-drawerActive {
  overflow: hidden;
  overscroll-behavior: none;
  -ms-touch-action: none;
      touch-action: none;
}

.p-header__sp-nav-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-header__sp-nav-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-header__sp-nav-item a:hover {
    color: #FF5900;
  }
}
.p-model {
  background: url(../images/top/model-bg.webp) center top/contain repeat;
  padding-top: 5.125rem;
  padding-bottom: 7.625rem;
}

.p-model__title {
  margin-inline: auto;
  width: 100%;
  max-width: 20.875rem;
}
.p-model__title img {
  width: 100%;
}

.p-model__items {
  margin-top: 2.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.5rem;
}

.p-model__item {
  position: relative;
}

.p-model__item-photo {
  width: 18.125rem;
  aspect-ratio: 280/186.67;
}
.p-model__item-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-model__item-photo--left {
  -webkit-transform: rotate(-6deg);
          transform: rotate(-6deg);
}

.p-model__item-photo--right {
  -webkit-transform: rotate(6deg);
          transform: rotate(6deg);
  margin-left: auto;
}

.p-model__item-card {
  position: relative;
  width: 11rem;
  padding: 0.5rem;
  background: #FFFCEE;
  border-top: 0.125rem solid #ffa87a;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, .12);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, .12);
  position: absolute;
}
.p-model__item-card::before {
  content: "";
  position: absolute;
  top: -0.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3.3125rem;
  height: 1.1875rem;
  background: url(../images/top/model-icon-clip.svg) no-repeat center/contain;
  z-index: 1;
}

.p-model__item-card--right {
  -webkit-transform: rotate(6deg);
          transform: rotate(6deg);
  right: 0.5rem;
  bottom: -1.875rem;
}

.p-model__item-card--left {
  -webkit-transform: rotate(-6deg);
          transform: rotate(-6deg);
  left: 0.5rem;
  bottom: -1.875rem;
}

.p-model__item-card-type {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: #d91200;
  border-bottom: 1px solid #F6EDC0;
}

.p-model__item-card-rows {
  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: 0.25rem;
}

.p-model__item-card-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5625rem;
}

.p-model__item-card-label {
  display: grid;
  place-items: center;
  width: 3.75rem;
  height: 1rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  color: #0A0A0A;
  background: #FFD700;
  border-radius: 0.25rem;
}

.p-model__item-card-value {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: #0A0A0A;
}
.p-model__item-card-value small {
  font-size: 0.75rem;
  font-weight: 500;
}
.p-model__item-card-value strong {
  font-size: 1rem;
  font-weight: 500;
}

.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-stop {
  background-color: #FFD700;
}

.p-stop__title {
  margin: 0;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  background: #0A0A0A;
  font-family: "M PLUS 1", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  text-align: center;
  position: relative;
}
.p-stop__title:before {
  display: block;
  content: "";
  width: 5rem;
  height: 5rem;
  position: absolute;
  left: 2.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/top/stop-icon.svg) center center/cover no-repeat;
}

.p-stop__content {
  max-width: 25rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 1rem 1.25rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#413f3f), to(#2a2a2a));
  background: linear-gradient(to bottom, #413f3f, #2a2a2a);
  border: 0.3125rem solid #fff;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, .08);
          box-shadow: 0 0 1rem rgba(0, 0, 0, .08);
  margin-top: 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-stop__content-title {
  padding: 0 0.375rem 0.125rem 0.375rem;
  border-bottom: 0.125rem solid #FFD700;
  font-family: "M PLUS 1", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.4;
  color: #FFD700;
  text-align: center;
  display: inline-block;
}

.p-stop__content-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  text-shadow: 0.0625rem 0.125rem 0.0625rem rgba(0, 0, 0, .25);
  margin-top: 2.125rem;
}

.p-stop__content-text--accent {
  padding: 0 0.5rem;
  background: #d6d6d6;
  font-family: "M PLUS 1", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7;
  color: #0A0A0A;
  text-align: center;
  -webkit-box-shadow: 0.0625rem 0.125rem 0.0625rem rgba(0, 0, 0, .25);
          box-shadow: 0.0625rem 0.125rem 0.0625rem rgba(0, 0, 0, .25);
  margin-top: 0.375rem;
  position: relative;
  z-index: 2;
}

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

.p-stop__content-flex-text {
  margin-top: 1.125rem;
  margin-left: 1.125rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  text-shadow: 0.0625rem 0.125rem 0.0625rem rgba(0, 0, 0, .25);
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.p-stop__content-flex-text:before {
  display: block;
  content: "";
  width: 13.25rem;
  height: 9.0625rem;
  position: absolute;
  left: -1.625rem;
  top: -1.875rem;
  background: url(../images/top/stop-baloon.svg) center top/cover no-repeat;
  z-index: -1;
}

.p-stop__content-flex-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 0;
}
.p-stop__content-flex-img img {
  display: block;
  width: 9.375rem;
  height: 9rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-stop__content-box {
  width: 100%;
  max-width: 22.5rem;
  margin-inline: auto;
  padding: 1rem 0.5rem;
  background: #FF5900;
  border: 0.25rem solid #FFD700;
  border-radius: 0.5rem;
}

.p-stop__content-box-text {
  margin: 0;
  font-family: "M PLUS 1", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  text-shadow: 0.0625rem 0.125rem 0.0625rem rgba(0, 0, 0, .25);
}

.p-strength {
  background-color: #FFFCEE;
  padding-top: 2.25rem;
  padding-bottom: 5rem;
  position: relative;
}
.p-strength:before {
  display: block;
  content: "";
  width: 100%;
  height: 1.8125rem;
  background: url(../images/top/strength-bg.svg) center center/cover no-repeat;
  position: absolute;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  left: 0;
  top: 0.0625rem;
}
.p-strength:after {
  display: block;
  content: "";
  width: 100%;
  height: 1.8125rem;
  background: url(../images/top/strength-bg2.svg) center center/cover no-repeat;
  position: absolute;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  left: 0;
  bottom: 0.0625rem;
}

.p-strength__title {
  margin-inline: auto;
  width: 20.875rem;
}
.p-strength__title img {
  width: 100%;
}

.p-strength__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  width: 100%;
  max-width: 22.5rem;
  margin-inline: auto;
  margin-top: 1.875rem;
}

.p-strength__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;
  width: 100%;
}

.p-strength__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.p-strength__item-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 3.0625rem;
  height: 3.0625rem;
  background: #FF5900;
  border-radius: 50%;
  font-family: "M PLUS 1", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}

.p-strength__item-title {
  margin: 0;
  font-family: "M PLUS 1", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #FF5900;
  line-height: 1.4;
}

.p-strength__item-content {
  display: grid;
  grid-template-columns: 1fr 8.625rem;
  gap: 0.6875rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.p-strength__item-img {
  width: 12.9375rem;
  border-radius: 0.25rem;
}
.p-strength__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-strength__item-text {
  margin-top: -0.25rem;
}

.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: 5rem;
  padding-bottom: 1.75rem;
  background-color: #FFD700;
}
@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: "M PLUS 1", sans-serif;
  font-size: 6.25rem;
  font-weight: 400;
  line-height: 1;
  color: #FF5900;
  -webkit-text-stroke: 1px #E5E5E5;
  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: #DDD;
  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: #0A0A0A;
}

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

.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%;
}

.p-worry__top-wrap {
  background: url(../images/top/worry-bg.webp) center top/cover no-repeat;
  height: 32.25rem;
  position: relative;
}
.p-worry__top-wrap:after {
  display: block;
  content: "";
  width: 10rem;
  height: 2.26875rem;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(50%);
          transform: translateX(-50%) translateY(50%);
  bottom: 0;
  background: url(../images/top/worry-arrow.svg) center top/cover no-repeat;
}

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

.p-worry__text-svg {
  margin-top: -2.1875rem;
  width: 100%;
  max-width: 21rem;
  aspect-ratio: 336/99;
  stroke-linejoin: round;
  font-weight: 800;
  fill: #FFD700;
  stroke: #262626;
  stroke-linejoin: round;
  paint-order: stroke fill;
  -webkit-transform: rotate(-4deg);
          transform: rotate(-4deg);
  margin-inline: auto;
  /* font-size, stroke-width は SVG 属性で viewBox 単位指定（x,y とスケール揃え） */
}
.p-worry__text-svg svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  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="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(38,38,38,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0.22rem 0.22rem 0 #262626);
          filter: drop-shadow(0.22rem 0.22rem 0 #262626);
}

.p-worry__items {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  margin-top: 1.25rem;
}

.p-worry__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  width: 100%;
  letter-spacing: 0.08em;
}
.p-worry__item::before {
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.375rem;
  height: 1.4375rem;
  background: url(../images/top/worry-icon-check.svg) center center/contain no-repeat;
}

.p-worry__item-svg {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  max-width: 18.8125rem;
  aspect-ratio: 400/50;
  margin: 0;
  stroke-linejoin: round;
  font-family: "M PLUS 1", sans-serif;
  /* font-size, stroke-width は SVG 属性で viewBox 単位指定 */
  font-weight: 700;
  line-height: 1.5;
  fill: #E8E8E8;
  stroke: #262626;
  stroke-linejoin: round;
  paint-order: stroke fill;
}
.p-worry__item-svg svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.p-worry__bottom-content {
  background-color: #FFD700;
  padding: 2.5rem 0 4.3125rem;
}

.p-worry__box {
  width: 100%;
  max-width: 22.5rem;
  margin: 0 auto;
  background: #fff;
  border: 0.1875rem solid #2138CE;
  border-radius: 1.25rem;
  overflow: hidden;
}

.p-worry__box-title {
  display: grid;
  place-items: center;
  width: 100%;
  height: 2.6875rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  background: #2138CE;
  line-height: 1;
  letter-spacing: 0;
}

.p-worry__box-body {
  border-radius: 1.25rem;
  padding: 0.5625rem 0.9375rem 1.125rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-worry__box-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.p-worry__box-item:nth-child(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 1.875rem;
}

.p-worry__box-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-worry__box-lead {
  margin: 0;
  font-family: "M PLUS 1", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: #0A0A0A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.0625rem;
}
.p-worry__box-lead::before {
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.21875rem;
  height: 1.40625rem;
  background: url(../images/common/icon-arrow.webp) center center/contain no-repeat;
}

.p-worry__box-svg {
  width: 100%;
  max-width: 17.5rem;
  aspect-ratio: 280/50;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  fill: #fff717;
}
.p-worry__box-svg text {
  stroke: #0A0A0A;
  stroke-linejoin: round;
  paint-order: stroke fill;
  stroke-width: 6;
}
.p-worry__box-svg svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  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="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(10,10,10,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0.125rem 0.25rem 0 #0A0A0A);
          filter: drop-shadow(0.125rem 0.25rem 0 #0A0A0A);
}

.p-worry__box-item:nth-child(2) .p-worry__box-svg {
  max-width: 15rem;
  aspect-ratio: 240/50;
}

.p-worry__box-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 0;
}
.p-worry__box-img img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-worry__box-item:first-child .p-worry__box-img {
  width: 5.6875rem;
}

.p-worry__box-item:nth-child(2) .p-worry__box-img {
  width: 6.25rem;
}

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

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

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

/* ========================================
   視覚的に非表示
======================================== */
.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* スクロールフェードアップ：GSAP のみ（トップページでアニメーション） */
.js-fade-up {
  will-change: opacity, transform;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(1.25rem);
          transform: translateY(1.25rem);
}

.js-popin,
.js-fv-popin {
  opacity: 0;
  will-change: transform, opacity;
}
/*# sourceMappingURL=styles.css.map */
