@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

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

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

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

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

/* リキッドレイアウト対応 */
html {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 2.0833333333vw;
  }
}
@media (min-width: 1000.02px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}

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

a {
  -webkit-text-decoration: none;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

/* hover指定できるPCを想定したスタイル */
@media (hover: hover) {
  a:hover {
    opacity: 0.6;
  }
}
/* hoverが使えないタッチ端末を想定した装飾 */
@media (hover: none) {
  a:active {
    opacity: 0.6;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  color: #161616;
  display: flex;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

main {
  flex: 1;
}

.scroller {
  scrollbar-width: none;
}

.scroller::-webkit-scrollbar {
  display: none;
}

.l-drawer {
  bottom: 0;
  left: 0;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
  transition: visibility 0.1s ease-out;
  visibility: hidden;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .l-drawer {
    display: none;
  }
}

.l-drawer[aria-hidden=false] {
  visibility: visible;
}

.l-header {
  bottom: auto;
  height: 63px;
  height: 3.9375rem;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .l-header {
    display: none;
  }
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
  max-width: 36.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1140px;
    max-width: 71.25rem;
    padding-left: 20px;
    padding-left: 1.25rem;
    padding-right: 20px;
    padding-right: 1.25rem;
  }
}

.c-button {
  animation: btn_animation 2s infinite;
  position: relative;
  transition: 0.3s;
}

.c-button:hover {
  opacity: 0.6;
}

.c-button__hand {
  bottom: -19.7px;
  bottom: -1.23125rem;
  max-width: 31.7px;
  max-width: 1.98125rem;
  position: absolute;
  right: -1.89px;
  right: -0.118125rem;
  transform: rotate(-25.039deg);
  width: 100%;
}

.c-button__hand img {
  aspect-ratio: 32/52;
}

@keyframes btn_animation {
  0% {
    transform: translate(4px, 0px);
  }
  5% {
    transform: translate(-4px, 0px);
  }
  10% {
    transform: translate(4px, 0px);
  }
  15% {
    transform: translate(-4px, 0px);
  }
  20% {
    transform: translate(4px, 0px);
  }
  25% {
    transform: translate(-4px, 0px);
  }
  30% {
    transform: translate(0px, 0px);
  }
}
.c-grade-title__line {
  display: block;
  position: relative;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  text-shadow: 0.125rem 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
}

.c-grade-title__stroke {
  -webkit-text-stroke: 9px #fff;
  -webkit-text-stroke: 0.5625rem #fff;
  color: transparent;
  left: 50%;
  position: absolute;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  text-shadow: 0.125rem 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
  top: 0;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 0;
}

.c-grade-title__text {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(180deg, #F39000 8.15%, #EE4C2D 92.39%);
  background-clip: text;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.c-link {
  align-items: center;
  background-color: #00C700;
  border: 2px solid #161616;
  border: 0.125rem solid #161616;
  border-radius: 100vmax;
  box-shadow: 0.1875rem 0.1875rem 0 0 #161616;
  color: #fff;
  display: inline-flex;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  font-weight: 900;
  gap: 40px;
  gap: 2.5rem;
  letter-spacing: 0.05em;
  line-height: 1.4444444444;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-left: 81px;
  padding-left: 5.0625rem;
  padding-top: 20px;
  padding-top: 1.25rem;
  text-align: center;
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
  width: 335px;
  width: 20.9375rem;
}
@media screen and (min-width: 768px) {
  .c-link {
    border: 3px solid #161616;
    border: 0.1875rem solid #161616;
    font-size: max(26.4px, 10px);
    font-size: max(1.65rem, 10px);
    gap: 63px;
    gap: 3.9375rem;
    line-height: 1.4393939394;
    padding-bottom: 29px;
    padding-bottom: 1.8125rem;
    padding-left: 118px;
    padding-left: 7.375rem;
    padding-top: 29px;
    padding-top: 1.8125rem;
    width: 491.33px;
    width: 30.708125rem;
  }
}
@media (min-width: 1000.02px) {
  .c-link {
    font-size: clamp(15.008px, -10.992px + 2.597vw, 26.4px);
    font-size: clamp(0.938rem, -0.687rem + 2.597vw, 1.65rem);
    padding-bottom: clamp(17.504px, -8.72px + 2.62vw, 29.008px);
    padding-bottom: clamp(1.094rem, -0.545rem + 2.62vw, 1.813rem);
    padding-left: clamp(71.008px, -36.176px + 10.706vw, 118px);
    padding-left: clamp(4.438rem, -2.261rem + 10.706vw, 7.375rem);
    padding-top: clamp(17.504px, -8.72px + 2.62vw, 29.008px);
    padding-top: clamp(1.094rem, -0.545rem + 2.62vw, 1.813rem);
    width: clamp(345.008px, 11.344px + 33.333vw, 491.328px);
    width: clamp(21.563rem, 0.709rem + 33.333vw, 30.708rem);
  }
}
.c-link:hover {
  opacity: 1;
}

@media (any-hover: hover) {
  .c-link:hover {
    background-color: #fff;
    color: #00C700;
  }
}
.c-link::after {
  background: url(../images/common/arrow-white.svg) no-repeat center/cover;
  content: "";
  display: inline-block;
  height: 16px;
  height: 1rem;
  transition: background-image 0.3s ease-out;
  width: 10px;
  width: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-link::after {
    height: 23px;
    height: 1.4375rem;
    width: 15px;
    width: 0.9375rem;
  }
}
.c-link::after:hover {
  opacity: 1;
}

@media (any-hover: hover) {
  .c-link:hover::after {
    background-image: url(../images/common/arrow-green.svg);
  }
}
.c-link--small {
  border: 1px solid #161616;
  box-shadow: 0.09375rem 0.09375rem 0 0 #161616;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  gap: 9px;
  gap: 0.5625rem;
  line-height: 1;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
  padding-left: 28px;
  padding-left: 1.75rem;
  padding-top: 15px;
  padding-top: 0.9375rem;
  pointer-events: none;
  width: 171px;
  width: 10.6875rem;
}

.p-cta.is-visible .c-link--small {
  pointer-events: auto;
}

.c-link--small::after {
  height: 10px;
  height: 0.625rem;
  width: 6px;
  width: 0.375rem;
}

@media screen and (min-width: 768px) {
  .c-link--md-right {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    gap: 40px;
    gap: 2.5rem;
    padding-bottom: 21px;
    padding-bottom: 1.3125rem;
    padding-left: 68px;
    padding-left: 4.25rem;
    padding-top: 22px;
    padding-top: 1.375rem;
    width: 292px;
    width: 18.25rem;
  }
}

@media screen and (min-width: 768px) {
  .c-link--md-right::after {
    height: 16px;
    height: 1rem;
    width: 10px;
    width: 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .c-link--md-left {
    border: 2px solid #161616;
    border: 0.125rem solid #161616;
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    gap: min(2.7777777778vw, 40px);
    gap: min(2.7777777778vw, 2.5rem);
    line-height: 1.4444444444;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    padding-left: min(5.625vw, 81px);
    padding-left: min(5.625vw, 5.0625rem);
    padding-top: 20px;
    padding-top: 1.25rem;
    white-space: nowrap;
    width: 335px;
    width: 20.9375rem;
    width: clamp(280px, 154.592px + 12.528vw, 335.008px);
    width: clamp(17.5rem, 9.662rem + 12.528vw, 20.938rem);
  }
}

@media screen and (min-width: 768px) {
  .c-link--md-left::after {
    height: 16px;
    height: 1rem;
    width: 10px;
    width: 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .c-link--qa {
    border: 2px solid #161616;
    border: 0.125rem solid #161616;
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    gap: 40px;
    gap: 2.5rem;
    line-height: 1.4444444444;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
    padding-left: 81px;
    padding-left: 5.0625rem;
    padding-top: 20px;
    padding-top: 1.25rem;
    width: 335px;
    width: 20.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .c-link--qa::after {
    height: 16px;
    height: 1rem;
    width: 10px;
    width: 0.625rem;
  }
}

.c-menu-button {
  aspect-ratio: 1/1;
  background-color: #fff;
  height: auto;
  position: relative;
  width: 39px;
  width: 2.4375rem;
}

.c-menu-button span {
  background-color: #FFBB00;
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  width: 25px;
  width: 1.5625rem;
}

.c-menu-button span:before,
.c-menu-button span::after {
  background-color: #FFBB00;
  border-radius: 100vw;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  transition: all 0.3s ease-in-out;
  width: 100%;
}

.c-menu-button span::before {
  transform: translateY(-0.5rem);
}

.c-menu-button span::after {
  transform: translateY(0.5rem);
}

/* ドロワーメニュー展開時 */
.c-menu-button[aria-expanded=true] {
  background-color: #FFBB00;
}

.c-menu-button[aria-expanded=true] span {
  background-color: transparent;
}

.c-menu-button[aria-expanded=true] span::before {
  background-color: #fff;
  transform: translateY(0) rotate(45deg);
}

.c-menu-button[aria-expanded=true] span::after {
  background-color: #fff;
  transform: translateY(0) rotate(-45deg);
}

.c-title {
  align-items: center;
  background: url(../images/common/title-frame.svg) no-repeat center/contain;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 117.26px;
  min-height: 7.32875rem;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}

.c-title::before,
.c-title::after {
  background: url(../images/common/decoration.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 16px;
  height: 1rem;
  position: absolute;
  top: -20px;
  top: -1.25rem;
  width: 16px;
  width: 1rem;
}

.c-title::before {
  left: 3px;
  left: 0.1875rem;
  left: calc(50% - 10.25rem);
}

.c-title::after {
  right: 3px;
  right: 0.1875rem;
  right: calc(50% - 10.4375rem);
}

.p-system__title.c-title::before,
.p-system__title.c-title::after,
.p-voice__title.c-title::before,
.p-voice__title.c-title::after,
.p-qa__title.c-title::before,
.p-qa__title.c-title::after,
.p-overview__title.c-title::before,
.p-overview__title.c-title::after {
  display: none;
}

.c-title--large {
  background: url(../images/common/title-frame-large.svg) no-repeat center/contain;
  min-height: 124px;
  min-height: 7.75rem;
}

.c-title--bg-white {
  background: url(../images/common/title-frame-bg-white.svg) no-repeat center/contain;
}

.c-title--bg-white-large {
  background: url(../images/common/title-frame-bg-white-large.svg) no-repeat center/contain;
  min-height: 124px;
  min-height: 7.75rem;
}

.c-title__read {
  color: #FFBB00;
  display: block;
  font-family: "Montserrat", serif;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 600;
  line-height: 1.5;
}

.c-title__main {
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  line-height: 1.4583333333;
}

.c-title__main--color {
  color: #FC5800;
  font-size: max(30px, 10px);
  font-size: max(1.875rem, 10px);
  line-height: 1.4333333333;
}

.c-title__main--small {
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
}

.c-title__main--large {
  font-size: max(28px, 10px);
  font-size: max(1.75rem, 10px);
  line-height: 1.4642857143;
}

.p-about {
  padding-top: 65px;
  padding-top: 4.0625rem;
}

.p-about__text-box-top {
  margin-top: 26.74px;
  margin-top: 1.67125rem;
  text-align: center;
}

.p-about__text {
  font-family: "Noto Sans JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.05em;
  line-height: 2;
}

.p-about__text:nth-child(2),
.p-about__text:nth-child(3) {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-about__text:nth-child(3) {
  position: relative;
}

.p-about__text:nth-child(3)::before,
.p-about__text:nth-child(3)::after {
  background: url(../images/common/decoration.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 16px;
  height: 1rem;
  position: absolute;
  top: -27px;
  top: -1.6875rem;
  width: 16px;
  width: 1rem;
}

.p-about__text:nth-child(3)::before {
  left: 3px;
  left: 0.1875rem;
  left: calc(50% - 10.25rem);
}

.p-about__text:nth-child(3)::after {
  right: 3px;
  right: 0.1875rem;
  right: calc(50% - 10.4375rem);
}

.p-about__text-large {
  background: linear-gradient(transparent 20%, #FFF600 20%);
  font-family: "Noto Sans JP", serif;
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-left: auto;
  margin-right: auto;
  margin-top: 9px;
  margin-top: 0.5625rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.p-about__text-large::after {
  bottom: -8px;
  bottom: -0.5rem;
  content: "※";
  display: inline-block;
  font-family: "Noto Sans JP", serif;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
  position: absolute;
  right: -20px;
  right: -1.25rem;
}

.p-about__text-large + .p-about__text {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-about__text-color {
  color: #FC5800;
  font-family: "Noto Sans JP", serif;
  font-size: max(32px, 10px);
  font-size: max(2rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-about__text-decoration {
  font-family: "Noto Sans JP", serif;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
}

.p-about__text-small {
  font-family: "Noto Sans JP", serif;
  font-size: 8px;
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 4px;
  margin-top: 0.25rem;
  position: relative;
}

.p-about__text-small::before {
  background: url(../images/common/decoration.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 16px;
  height: 1rem;
  left: 50%;
  position: absolute;
  top: -7px;
  top: -0.4375rem;
  transform: translateX(-50%);
  width: 16px;
  width: 1rem;
  z-index: -1;
}

.p-about__map {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 29.44px;
  margin-top: 1.84rem;
  max-width: 299.57px;
  max-width: 18.723125rem;
  position: relative;
  width: 100%;
}

.p-about__map::before,
.p-about__map::after {
  background: url(../images/common/decoration.svg) no-repeat center/contain;
  bottom: 1px;
  bottom: 0.0625rem;
  content: "";
  display: block;
  height: 16px;
  height: 1rem;
  position: absolute;
  width: 16px;
  width: 1rem;
}

.p-about__map::before {
  left: calc(50% - 10.25rem);
}

.p-about__map::after {
  right: calc(50% - 10.4375rem);
}

.p-about__map img {
  -o-object-fit: cover;
  aspect-ratio: 299.57/136.74;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-about__text-box-bottom {
  margin-top: 34.82px;
  margin-top: 2.17625rem;
  text-align: center;
}

.p-about__text-end {
  background: linear-gradient(transparent 40%, #FFF600 40%);
  color: #FC5800;
  font-family: "Noto Sans JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-left: auto;
  margin-right: auto;
  margin-top: 6px;
  margin-top: 0.375rem;
  width: -moz-fit-content;
  width: fit-content;
}

.p-about__img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-top: 2.5rem;
  max-width: 335px;
  max-width: 20.9375rem;
  position: relative;
  width: 100%;
  z-index: 1;
}

.p-about__img-decoration {
  background: url(../images/common/decoration02.svg) no-repeat center/contain;
  bottom: -7px;
  bottom: -0.4375rem;
  display: block;
  height: 13px;
  height: 0.8125rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 13px;
  width: 0.8125rem;
  z-index: -1;
}

.p-about__img img {
  -o-object-fit: cover;
  aspect-ratio: 335/373;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-about__bottom {
  background-color: #FFF7D9;
  margin-top: 108px;
  margin-top: 6.75rem;
  padding-bottom: 35px;
  padding-bottom: 2.1875rem;
}

.p-about__bottom-heading {
  background: url(../images/common/about-balloon.svg) no-repeat center/contain;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  min-height: 102px;
  min-height: 6.375rem;
  padding-top: 16px;
  padding-top: 1rem;
  text-align: center;
  transform: translateY(-2.6875rem);
}

.p-about__bottom-box {
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
  margin-top: 2rem;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}

.p-about__bottom-box:nth-of-type(1) {
  margin-top: -15px;
  margin-top: -0.9375rem;
}

.p-about__bottom-read {
  align-items: center;
  display: flex;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  gap: 6px;
  gap: 0.375rem;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.p-about__bottom-read::before,
.p-about__bottom-read::after {
  background: url(../images/common/about-title-decoration.svg) no-repeat center/cover;
  content: "";
  display: inline-block;
  height: 3px;
  height: 0.1875rem;
  width: 15px;
  width: 0.9375rem;
}

.p-about__bottom-items {
  align-items: center;
  display: flex;
  gap: 15px;
  gap: 0.9375rem;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-about__bottom-box:nth-of-type(3) .p-about__bottom-items {
  align-items: initial;
  gap: 97px;
  gap: 6.0625rem;
}

.p-about__bottom-item {
  display: block;
  max-width: 160px;
  max-width: 10rem;
  width: 100%;
}

.p-about__bottom-item img {
  -o-object-fit: cover;
  aspect-ratio: 160/99;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-about__bottom-img {
  display: block;
  margin-top: 35px;
  margin-top: 2.1875rem;
  max-width: 78.49px;
  max-width: 4.905625rem;
  width: 100%;
}

.p-about__bottom-img img {
  -o-object-fit: cover;
  aspect-ratio: 78.49/92;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-benefits {
  background: linear-gradient(90deg, #d7f2fe 0%, #ffffff 50.481%, #d7f2fe 100%);
  padding: 101px 0 17px;
  padding: 6.3125rem 0 1.0625rem;
  position: relative;
  position: relative;
  z-index: 2;
}

.p-benefits::before {
  background-image: url(../images/common/benefits-bgi.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.p-benefits__inner {
  padding-left: 16px;
  padding-left: 1rem;
  padding-right: 16px;
  padding-right: 1rem;
}

.p-benefits__header {
  aspect-ratio: 375/88.5;
  background-image: url(../images/common/benefit-header.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 4px 0 #94B400);
  filter: drop-shadow(0 0.25rem 0 #94B400);
  left: 50%;
  position: absolute;
  text-align: center;
  top: -32px;
  top: -2rem;
  transform: translateX(-50%);
  width: 100%;
}

.p-benefits__header-title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.1;
  padding-top: 14px;
  padding-top: 0.875rem;
  z-index: 2;
}

.p-benefit__title-line {
  display: block;
  position: relative;
}

.p-benefit__title-stroke {
  -webkit-text-stroke: 4px #fff;
  -webkit-text-stroke: 0.25rem #fff;
  color: transparent;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 0;
}

.p-benefit__title-text {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-color: #1F4B91;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.p-benefits__cards {
  display: flex;
  flex-direction: column;
  gap: 53px;
  gap: 3.3125rem;
}

.p-benefits__card {
  background: #fff;
  border: 3px solid #1F4B91;
  border: 0.1875rem solid #1F4B91;
  border-radius: 0.625rem;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 2;
}

.p-benefits__card-header {
  left: 50%;
  margin-top: -32px;
  margin-top: -2rem;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}

.p-benefits__card-number {
  background-color: #1F4B91;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  height: 73px;
  height: 4.5625rem;
  line-height: 1.2;
  padding-top: 10px;
  padding-top: 0.625rem;
  text-align: center;
  width: 73px;
  width: 4.5625rem;
}

.p-benefits__card-top {
  background-color: #1F4B91;
  padding: 16px 13px;
  padding: 1rem 0.8125rem;
  text-align: center;
}

.p-benefits__card-top--pt12 {
  padding-top: 12px;
  padding-top: 0.75rem;
}

.p-benefits__card-title {
  align-items: center;
  display: flex;
  justify-content: center;
  line-height: 1.2;
}

.p-benefits__card-title-main {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(180deg, #F2FFB9 14.583%, #D3F92C 84.722%);
  background-clip: text;
  display: inline-block;
  font-size: 56px;
  font-size: 3.5rem;
  font-weight: 700;
  margin-left: -3px;
  margin-left: -0.1875rem;
}

.p-benefits__card-title-plus {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(180deg, #F2FFB9 14.583%, #D3F92C 84.722%);
  background-clip: text;
  display: inline-block;
  font-size: 46px;
  font-size: 2.875rem;
  font-weight: 500;
  margin-top: -1px;
  margin-top: -0.0625rem;
}

.p-benefits__card-title-sub {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(180deg, #F2FFB9 14.583%, #D3F92C 84.722%);
  background-clip: text;
  display: block;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  margin-right: -3px;
  margin-right: -0.1875rem;
}

.p-benefits__card-title--process .p-benefits__card-title-main {
  font-size: 33px;
  font-size: 2.0625rem;
}

.p-benefits__card-title--partner {
  display: block;
  line-height: 1.1;
  margin-bottom: 0;
}

.p-benefits__card-title--partner .p-benefits__card-title-main {
  display: block;
  font-size: 33px;
  font-size: 2.0625rem;
}

.p-benefits__card-subtitle {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: normal;
  margin-top: -4px;
  margin-top: -0.25rem;
  padding-left: 3px;
  padding-left: 0.1875rem;
}

.p-benefits__card-subtitle--small {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 0;
}

.p-benefits__card-content {
  padding: 16px 11px 21px 11px;
  padding: 1rem 0.6875rem 1.3125rem 0.6875rem;
}

.p-benefits__card-image {
  max-width: 315px;
  max-width: 19.6875rem;
  width: 100%;
}

.p-benefits__card-image img {
  -o-object-fit: cover;
  aspect-ratio: 315/177;
  border-radius: 0.625rem;
     object-fit: cover;
  width: 100%;
}

.p-benefits__card-message {
  align-items: center;
  background: #cae6f9;
  border-radius: 0.625rem;
  display: flex;
  gap: 16px;
  gap: 1rem;
  margin: 16px 0 0;
  margin: 1rem 0 0;
  padding: 16px;
  padding: 1rem;
  padding-bottom: 17px;
  padding-bottom: 1.0625rem;
  position: relative;
}

.p-benefits__card-japan-icon {
  max-width: 121px;
  max-width: 7.5625rem;
  position: absolute;
  right: 7px;
  right: 0.4375rem;
  width: 100%;
}

.p-benefits__card-japan-icon img {
  aspect-ratio: 1/1;
}

.p-benefits__card-text {
  color: #0D2448;
  flex: 1;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.p-benefits__card-text--mt16 {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-benefits__card-message-text {
  max-width: 199px;
  max-width: 12.4375rem;
  width: 100%;
}

.p-benefits__card-text--center {
  text-align: center;
}

.p-benefits__card-text--red {
  color: #dd2330;
  font-weight: 700;
}

.p-benefits__card-footer {
  color: #dd2330;
  font-family: "Roboto", sans-serif;
  font-size: 21.5px;
  font-size: 1.34375rem;
  font-weight: 700;
  line-height: normal;
  margin-top: 13.5px;
  margin-top: 0.84375rem;
  text-align: center;
}

.p-benefits__card-footer.p-benefits__card-footer--pr5 {
  font-size: 20px;
  padding-right: 5px;
}

.p-benefits__card-steps {
  display: flex;
  flex-direction: column;
  gap: 6.5px;
  gap: 0.40625rem;
}

.p-benefits__step {
  align-items: center;
  background: #d5ecfb;
  border-radius: 0.625rem;
  display: flex;
  gap: 12px;
  gap: 0.75rem;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  position: relative;
}

.p-benefits__step-number {
  align-items: center;
  background: #1F4B91;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  height: 28px;
  height: 1.75rem;
  justify-content: center;
  left: -5px;
  left: -0.3125rem;
  position: absolute;
  top: -5px;
  top: -0.3125rem;
  width: 28px;
  width: 1.75rem;
}

.p-benefits__step-icon {
  height: 55px;
  height: 3.4375rem;
  width: 55px;
  width: 3.4375rem;
}

.p-benefits__step-text {
  color: #0D2448;
  flex: 1;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.p-benefits__step-arrow {
  height: 15px;
  height: 0.9375rem;
  margin: 0 auto;
  position: relative;
  width: 23px;
  width: 1.4375rem;
}

.p-benefits__step-arrow::after {
  border-left: 11.5px solid transparent;
  border-left: 0.71875rem solid transparent;
  border-right: 11.5px solid transparent;
  border-right: 0.71875rem solid transparent;
  border-top: 15px solid #C0E614;
  border-top: 0.9375rem solid #C0E614;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 0;
}

.p-benefits__arrow {
  align-items: center;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 34px;
  margin-top: 2.125rem;
}

.p-benefits__arrow-img {
  max-width: 40px;
  max-width: 2.5rem;
  width: 100%;
}

.p-benefits__arrow-img img {
  aspect-ratio: 2/1;
  width: 100%;
}

.p-business {
  background: linear-gradient(0deg, #C0E6FF 0%, #FFF 79.19%), #D5ECFB;
  padding: 40px 0;
  padding: 2.5rem 0;
}

.p-business__inner {
  padding: 0 14px;
  padding: 0 0.875rem;
}

.p-business__title-block {
  text-align: center;
}

.p-business__subtitle {
  color: #0D2448;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1875;
}

.p-business__title {
  color: #2D5AA3;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.17857143;
  margin-top: 6px;
  margin-top: 0.375rem;
}

.p-business__title span {
  padding-right: 7px;
  padding-right: 0.4375rem;
  word-break: break-all;
}

.p-business__contents {
  margin-top: 14px;
  margin-top: 0.875rem;
  overflow-x: scroll;
}
.p-business__contents::-webkit-scrollbar {
  height: 7px;
  height: 0.4375rem;
}
.p-business__contents::-webkit-scrollbar-track {
  background: #fff;
}
.p-business__contents::-webkit-scrollbar-thumb {
  background: #8b8b8b;
}

.p-business__table {
  padding-bottom: 6px;
  padding-bottom: 0.375rem;
  width: 477px;
  width: 29.8125rem;
}

.p-business__table-header--empty {
  background-color: transparent;
  height: 48px;
  height: 3rem;
  width: 69px;
  width: 4.3125rem;
}

.p-business__table-header {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.14285714;
  padding: 16px 7px;
  padding: 1rem 0.4375rem;
  text-align: center;
}

.p-business__table-header--main {
  background: #2D5AA3;
}

.p-business__table-header--other {
  background: #8B8B8B;
}

.p-business__table-cell {
  background-color: #fff;
  padding: 12px 0;
  padding: 0.75rem 0;
}

.p-business__table-cell--label {
  background: #1A96CB;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.14285714;
  text-align: center;
  width: 69px;
  width: 4.3125rem;
}

.p-business__table-cell--main {
  color: #111;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.16666667;
  position: relative;
  text-align: center;
  z-index: 1;
}

.p-business__table-cell--main::after {
  background-image: url(../images/common/table-circle.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 59px;
  height: 3.6875rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 59px;
  width: 3.6875rem;
  z-index: -1;
}

.p-business__table-cell--other {
  color: #111;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.16666667;
  position: relative;
  text-align: center;
  z-index: 1;
}

.p-business__table-cell--other::after {
  background-image: url(../images/common/table-triangle.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 46px;
  height: 2.875rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 51px;
  width: 3.1875rem;
  z-index: -1;
}

.p-business__table-highlight {
  color: #DD2330;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.1485714;
  text-align: center;
}

.p-business__table-highlight--fz12 {
  font-size: 12px;
  font-size: 0.75rem;
}

.p-campaign {
  background: linear-gradient(324deg, #BEE0F6 0%, #EBF7FF 100%), linear-gradient(324deg, #E2EFBC 0%, #F4FED9 100%);
  margin-top: -47px;
  margin-top: -2.9375rem;
  padding-bottom: 25px;
  padding-bottom: 1.5625rem;
  padding-top: 72px;
  padding-top: 4.5rem;
  position: relative;
  z-index: 2;
}

.p-campaign::before {
  background-image: url(../images/common/campaign-line-bgi.webp);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.p-campaign::after {
  background-image: url(../images/common/campaign-leaf-bgi.webp);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.p-campaign__inner {
  padding: 0 15px;
  padding: 0 0.9375rem;
}

.p-campaign__head {
  background-color: #2D5AA3;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.16666667;
  margin-left: auto;
  margin-right: auto;
  max-width: 215px;
  max-width: 13.4375rem;
  padding: 4px 6px 2px 7px;
  padding: 0.25rem 0.375rem 0.125rem 0.4375rem;
  text-align: center;
  white-space: nowrap;
  width: 100%;
}

.p-campaign__title {
  font-size: 46px;
  font-size: 2.875rem;
  font-weight: 900;
  line-height: 1;
  margin-top: 9px;
  margin-top: 0.5625rem;
  text-align: center;
  text-transform: uppercase;
}

.p-campaign__title .c-grade-title__stroke {
  -webkit-text-stroke: 9px #FFF;
  -webkit-text-stroke: 0.5625rem #FFF;
}

.p-campaign__img {
  margin-left: auto;
  margin-right: auto;
  max-width: 268px;
  max-width: 16.75rem;
  width: 100%;
}

.p-campaign__notice {
  color: #222;
  font-size: 8px;
  font-size: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 3px;
  margin-top: 0.1875rem;
}

.p-campaign__balloon {
  background-color: #fff;
  border-radius: 0.375rem;
  box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.3);
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  margin-top: 1rem;
  max-width: 249px;
  max-width: 15.5625rem;
  padding: 6px 10px 5px;
  padding: 0.375rem 0.625rem 0.3125rem;
  position: relative;
  width: 100%;
}

.p-campaign__balloon::after {
  border-color: #fff transparent transparent transparent;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-width: 0.5rem 0.5rem 0 0.5rem;
  bottom: -8px;
  bottom: -0.5rem;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
}

.p-campaign__text {
  color: #0D2448;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.1875;
  white-space: nowrap;
}

.p-campaign__button {
  box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.3);
  display: inline-block;
  margin-top: 11px;
  margin-top: 0.6875rem;
}

.p-car-brands {
  overflow: hidden;
  padding: 40px 0 29px;
  padding: 2.5rem 0 1.8125rem;
  position: relative;
}

.p-car-brands__background {
  background-color: lightgray;
  background-image: url("../images/common/brand-bgi.webp");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.p-car-brands__inner {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.p-car-brands__title {
  color: #fff;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.21428571;
  text-align: center;
}

.p-car-brands__title-line {
  display: block;
}

.p-car-brand__content {
  margin-left: auto;
  margin-right: auto;
  margin-top: 22px;
  margin-top: 1.375rem;
}

.p-car-brands__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 5px;
  gap: 0.25rem 0.3125rem;
  justify-content: center;
  max-width: 345px;
  max-width: 21.5625rem;
}

.p-car-brands__brands + .p-car-brands__brands {
  margin-top: 4px;
  margin-top: 0.25rem;
}

.p-car-brands__brand {
  background-color: #fff;
  border-radius: 3.125rem;
  color: #0D2448;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.14285714;
  padding: 4px 10px;
  padding: 0.25rem 0.625rem;
}

.p-car-brands__disclaimer {
  color: #fff;
  font-size: 8px;
  font-size: 0.5rem;
  font-weight: 400;
  line-height: 1.125;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-caution {
  background: linear-gradient(90deg, #FFEB7B 0%, #FBE04E 50%, #F8D621 100%);
  overflow: hidden;
  padding: 32px 0;
  padding: 2rem 0;
  position: relative;
}

.p-caution__line-top {
  position: absolute;
  top: 0;
}

.p-caution__line-bottom {
  bottom: 0;
  position: absolute;
}

.p-caution__inner {
  padding-left: 17px;
  padding-left: 1.0625rem;
  padding-right: 17px;
  padding-right: 1.0625rem;
  position: relative;
  z-index: 1;
}

.p-caution__header {
  align-items: center;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
  justify-content: center;
}

.p-caution__icon {
  flex-shrink: 0;
  height: 21px;
  height: 1.3125rem;
  width: 23px;
  width: 1.4375rem;
}

.p-caution__title {
  color: #111111;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.p-caution__content {
  margin: 0 auto;
  margin-top: 7px;
  margin-top: 0.4375rem;
  max-width: 345px;
  max-width: 21.5625rem;
}

.p-caution__text {
  color: #111111;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.p-caution__highlight {
  background-color: #fff;
  color: #dd2330;
  font-weight: 700;
  padding-right: 4px;
  padding-right: 0.25rem;
}

.p-company-profile {
  background: linear-gradient(0deg, rgb(192, 230, 255) 0%, rgb(255, 255, 255) 79.192%);
  padding-bottom: 45px;
  padding-bottom: 2.8125rem;
  padding-top: 40px;
  padding-top: 2.5rem;
}

.p-company-profile__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 354px;
  max-width: 22.125rem;
}

.p-company-profile__title {
  color: #1F4B91;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.17857143;
  text-align: center;
}

.p-company-profile__main-title {
  align-items: center;
  background-color: #1F4B91;
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  margin-top: 32px;
  margin-top: 2rem;
  padding: 8px 10px;
  padding: 0.5rem 0.625rem;
}

.p-company-profile__main-title-text {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.15;
}

.p-company-profile__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

.p-company-profile__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  gap: 1rem;
}

.p-company-profile__section-title {
  color: #1F4B91;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.14285714;
}

.p-company-profile__offices {
  display: flex;
  flex-direction: column;
  gap: 16px;
  gap: 1rem;
}

.p-company-profile__office {
  display: flex;
  flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}

.p-company-profile__office-name {
  color: #1F4B91;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.14285714;
}

.p-company-profile__office-address {
  color: #111111;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.14285714;
}

.p-company-profile__info {
  color: #111111;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.16666667;
}

.p-company-profile__divider {
  background-color: #e0e0e0;
  height: 1px;
  width: 100%;
}

.p-company-profile__img {
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
  margin-top: 2rem;
  max-width: 64px;
  max-width: 4rem;
  width: 100%;
}

.p-company-profile__img img {
  -o-object-fit: contain;
  aspect-ratio: 32/23;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

.p-cta {
  background: linear-gradient(0deg, #C0E6FF 0%, #fff 79.19%), #D5ECFB;
  padding: 40px 0 32px;
  padding: 2.5rem 0 2rem;
  position: relative;
}

.p-cta::before {
  background-image: url(../images/common/cta-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.p-cta__inner {
  padding-left: 15px;
  padding-left: 0.9375rem;
  padding-right: 15px;
  padding-right: 0.9375rem;
}

.p-cta__title {
  display: flex;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 0 0.375rem rgba(0, 0, 0, 0.3));
  flex-direction: column;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  gap: 0;
  line-height: 1.17857143;
  text-align: center;
  text-transform: uppercase;
}

.p-cta__title-line {
  display: block;
  position: relative;
}

.p-cta__title-stroke {
  -webkit-text-stroke: 4px #fff;
  -webkit-text-stroke: 0.25rem #fff;
  color: transparent;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 0;
}

.p-cta__title-text {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(180deg, #F39000 8.15%, #EE4C2D 92.39%);
  background-clip: text;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.p-cta__content {
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 0.25rem 0.9375rem rgba(0, 0, 0, 0.3));
}

.p-cta__balloon {
  background-color: #fff;
  border-radius: 0.375rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  margin-top: 1.5rem;
  max-width: 249px;
  max-width: 15.5625rem;
  padding: 6px 10px 5px;
  padding: 0.375rem 0.625rem 0.3125rem;
  position: relative;
  width: 100%;
}

.p-cta__balloon::after {
  border-color: #fff transparent transparent transparent;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-width: 0.5rem 0.5rem 0 0.5rem;
  bottom: -8px;
  bottom: -0.5rem;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
}

.p-cta__text {
  color: #0D2448;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.1875;
  white-space: nowrap;
}

.p-cta__button {
  animation: btn_animation 2s infinite;
  display: inline-block;
  margin-top: 11px;
  margin-top: 0.6875rem;
}

.p-drawer {
  align-items: center;
  background: url(../images/common/drawer-bg.webp) no-repeat center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-drawer__nav-link {
  display: flex;
  font-family: "Noto Sans JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  gap: 16px;
  gap: 1rem;
  line-height: 1.4285714286;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  padding-top: 12px;
  padding-top: 0.75rem;
  text-transform: uppercase;
  transition: color 0.3s ease-out;
}

@media (any-hover: hover) {
  .p-drawer__nav-link:hover {
    color: #fff;
  }
}
.p-drawer__nav-link::before {
  background: url(../images/common/drawer-icon.svg) no-repeat center/contain;
  content: "";
  display: inline-block;
  height: 24px;
  height: 1.5rem;
  transition: background-image 0.3s ease-out;
  width: 24px;
  width: 1.5rem;
}

@media (any-hover: hover) {
  .p-drawer__nav-link:hover::before {
    background-image: url(../images/common/drawer-icon-hover.svg);
  }
}
.p-example {
  padding-bottom: 64px;
  padding-bottom: 4rem;
  padding-top: 64px;
  padding-top: 4rem;
}

.p-example__text {
  font-family: "Noto Sans JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 32.74px;
  margin-top: 2.04625rem;
  position: relative;
  text-align: center;
  z-index: 1;
}

.p-example__text::before {
  background: url(../images/common/decoration.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 16px;
  height: 1rem;
  left: 50%;
  position: absolute;
  top: -4px;
  top: -0.25rem;
  transform: translateX(-50%);
  width: 16px;
  width: 1rem;
  z-index: -1;
}

.p-example__text-color {
  color: #FC5800;
  display: inline-block;
}

.p-example__text-bg-color {
  background: linear-gradient(transparent 45%, #FFF600 45%);
  display: inline-block;
}

.p-example__items {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-example__item {
  margin-left: auto;
  margin-right: auto;
  max-width: 335px;
  max-width: 20.9375rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  padding-top: 32px;
  padding-top: 2rem;
}

.p-example__item + .p-example__item {
  position: relative;
}

.p-example__item + .p-example__item::before {
  background: url(../images/common/example-dot-line.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 335px;
  width: 20.9375rem;
}

.p-example__item-img {
  display: block;
  max-width: 335px;
  max-width: 20.9375rem;
  width: 100%;
}

.p-example__item-img img {
  -o-object-fit: cover;
  aspect-ratio: 335/237;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-example__item-text {
  font-family: "Noto Sans JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 16px;
  margin-top: 1rem;
  text-align: center;
}

.p-example__check {
  margin-top: 32px;
  margin-top: 2rem;
  position: relative;
}

.p-example__check-img {
  border-radius: 1.25rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 335px;
  max-width: 20.9375rem;
  overflow: hidden;
  width: 100%;
}

.p-example__check-img img {
  -o-object-fit: cover;
  aspect-ratio: 335/377;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-example__check-button {
  bottom: 0;
  left: 50%;
  max-width: 335px;
  max-width: 20.9375rem;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}

.p-example__check-link {
  align-items: center;
  background: linear-gradient(90deg, #161616, #161616);
  border-radius: 0 0 1.25rem 1.25rem;
  color: #fff;
  display: inline-flex;
  font-family: "Noto Sans JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  justify-content: space-between;
  letter-spacing: 0.05em;
  line-height: 1;
  overflow: hidden;
  padding: 14px 24px;
  padding: 0.875rem 1.5rem;
  position: relative;
  transition: background-color 0.3s ease-out;
  width: 100%;
}
.p-example__check-link:hover {
  opacity: 1;
}

.p-example__check-icon {
  display: block;
  max-width: 32px;
  max-width: 2rem;
  position: relative;
  width: 100%;
}

.p-example__check-icon img {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-example__check-link span {
  display: inline-block;
  position: relative;
  transform: translateX(-0.625rem);
}

.p-example__check-arrow {
  display: block;
  max-width: 11px;
  max-width: 0.6875rem;
  position: relative;
  width: 100%;
}

.p-example__check-arrow img {
  -o-object-fit: cover;
  aspect-ratio: 11/16;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-example__check-link::before {
  background: linear-gradient(90deg, #7323F5 0%, #EA3A67 51%, #EE7D31 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.3s ease-out;
  width: 100%;
}

@media (any-hover: hover) {
  .p-example__check-link:hover::before {
    opacity: 0;
  }
}
.p-faq {
  background-color: #1F4B91;
  padding: 40px 0 41px;
  padding: 2.5rem 0 2.5625rem;
}

.p-faq__inner {
  padding: 0 15px;
  padding: 0 0.9375rem;
}

.p-faq__title {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.17857143;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  text-align: center;
}

.p-faq__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}

.p-faq__item {
  background-color: #fff;
  border-radius: 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
  padding: 16px 15px;
  padding: 1rem 0.9375rem;
}

.p-faq__item--pb22 {
  padding-bottom: 22px;
  padding-bottom: 1.375rem;
}

.p-faq__question {
  align-items: flex-start;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
}

.p-faq__question-icon {
  align-items: center;
  background-color: #1F4B91;
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-shrink: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  height: 28px;
  height: 1.75rem;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1.6;
  width: 28px;
  width: 1.75rem;
}

.p-faq__question-text {
  color: #111111;
  flex: 1;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.14285714;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.p-faq__answer {
  color: #111111;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.14285714;
}

.p-faq__answer p {
  margin: 0;
}

.p-faq__answer-highlight {
  color: #1a96cb;
  font-weight: 700;
}

.p-footer {
  background-color: #FFBB00;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  padding-top: 48px;
  padding-top: 3rem;
  text-align: center;
}

.p-footer__logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 158px;
  max-width: 9.875rem;
  width: 100%;
}

.p-footer__logo img {
  -o-object-fit: cover;
  aspect-ratio: 158/38.49;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-footer__copy {
  line-height: 1;
  margin-top: 40.51px;
  margin-top: 2.531875rem;
}

.p-footer__copy small {
  color: #fff;
  font-family: "Noto Sans JP", serif;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.p-header {
  background-color: #fff;
  transition: background-color 0.1s ease-out;
}

.p-header.is-open {
  background-color: #FFBB00;
}

.p-header__inner {
  display: flex;
  height: 100%;
  max-width: none;
  max-width: initial;
  padding: 0 24px;
  padding: 0 1.5rem;
}

.p-header__logo {
  align-items: center;
  display: grid;
  height: 100%;
  width: 158px;
  width: 9.875rem;
}

.p-header__logo.is-open {
  opacity: 0;
}

.p-header__logo-link {
  display: block;
}

.p-header__logo-link img {
  -o-object-fit: contain;
  aspect-ratio: 158/38.49;
  height: auto;
     object-fit: contain;
  width: 100%;
}

.p-header__menu-button {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-header__menu-button {
    display: none;
  }
}

.p-header__menu-button {
  z-index: 101;
}

.p-header__drawer {
  bottom: 0;
  left: 0;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: all 0.3s ease-out;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .p-header__drawer {
    left: auto;
    max-width: 46.6666666667%;
    width: 50%;
  }
}

.p-header__drawer[aria-hidden=false] {
  transform: translateX(0);
}

.p-intro {
  background: linear-gradient(-33.5deg, #1F4B91 0%, #1F4B91 50%, #2D5AA3 50%, #2D5AA3 100%);
  padding-top: 17px;
  padding-top: 1.0625rem;
}

.p-intro__inner {
  display: flex;
  overflow: hidden;
  padding-left: 15px;
  padding-left: 0.9375rem;
  position: relative;
}

.p-intro__contents {
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}

.p-intro__balloon {
  background-color: #fff;
  border-radius: 0.2473125rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 164.23px;
  max-width: 10.264375rem;
  padding: 4.96px 8.3px 3.45px 7.94px;
  padding: 0.31rem 0.51875rem 0.215625rem 0.49625rem;
  position: relative;
  width: 100%;
}

.p-intro__balloon::after {
  border-color: #fff transparent transparent transparent;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-width: 0.5rem 0.5rem 0 0.5rem;
  bottom: -8px;
  bottom: -0.5rem;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
}

.p-intro__balloon-text {
  color: #2D5AA3;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.1485714;
  text-align: center;
  white-space: nowrap;
}

.p-intro__content {
  margin-top: 11.64px;
  margin-top: 0.7275rem;
}

.p-intro__title {
  line-height: 1;
}

.p-intro__label {
  color: #fff;
  font-size: 14.833px;
  font-size: 0.9270625rem;
  font-weight: 600;
  line-height: 1.14609317;
  padding-right: 5px;
  padding-right: 0.3125rem;
  text-align: center;
}

.p-intro__top {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(180deg, #F2FFB9 0%, #D3F92C 100%);
  background-clip: text;
  font-size: 58.681px;
  font-size: 3.6675625rem;
  font-weight: 700;
  line-height: 1;
  padding-left: 1px;
  padding-left: 0.0625rem;
  text-align: center;
}

.p-intro__bottom {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(180deg, #F2FFB9 0%, #D3F92C 100%);
  background-clip: text;
  font-size: 29.667px;
  font-size: 1.8541875rem;
  font-weight: 700;
  line-height: 1;
  padding-left: 3px;
  padding-left: 0.1875rem;
  text-align: center;
}

.p-intro__text {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 8px;
  margin-top: 0.5rem;
  padding-right: 8px;
  padding-right: 0.5rem;
  text-align: center;
}

.p-intro__message {
  color: #fff;
  font-size: 8px;
  font-size: 0.5rem;
  font-weight: 400;
  line-height: 1;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-intro__right {
  width: 100%;
}

.p-intro__accent {
  bottom: 30px;
  bottom: 1.875rem;
  max-width: 70.5px;
  max-width: 4.40625rem;
  position: absolute;
  right: 62.39px;
  right: 3.899375rem;
  width: 100%;
  z-index: 2;
}

.p-intro__accent img {
  aspect-ratio: 70.5/157;
}

.p-intro__img {
  bottom: -41px;
  bottom: -2.5625rem;
  max-width: 120px;
  max-width: 7.5rem;
  overflow: hidden;
  position: absolute;
  right: -32px;
  right: -2rem;
  width: 100%;
}

.p-intro__img img {
  aspect-ratio: 120/243;
}

.p-intro__name {
  background-color: rgba(255, 255, 255, 0.7);
  bottom: 15px;
  bottom: 0.9375rem;
  max-width: 86px;
  max-width: 5.375rem;
  padding: 8px 10px 8px 9px;
  padding: 0.5rem 0.625rem 0.5rem 0.5625rem;
  position: absolute;
  right: 5px;
  right: 0.3125rem;
  width: 100%;
}

.p-intro__job {
  color: #0D2448;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.p-intro__name-name {
  color: #0D2448;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 3px;
  margin-top: 0.1875rem;
  text-align: center;
}

.p-left-area {
  display: none;
}
@media (min-width: 1000.02px) {
  .p-left-area {
    display: block;
    position: relative;
  }
}

.p-left-area__content {
  align-items: center;
  background-color: #2D5AA3;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  position: relative;
  width: 37.0138888889vw;
}
@media (min-width: 1440px) {
  .p-left-area__content {
    width: 533px;
    width: 33.3125rem;
  }
}

.p-left-area__content::after {
  background-color: #1F4B91;
  bottom: 0;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.p-left-area__content-inner {
  position: relative;
  text-align: center;
  translate: 0 -13px;
  translate: 0 -0.8125rem;
  z-index: 1;
}

.p-left-area__head {
  position: relative;
  text-align: center;
  z-index: 1;
}

.p-left-area__head-balloon {
  background-color: #fff;
  border-radius: 0.34625rem;
  display: inline-block;
  padding: 6px 11.5px;
  padding: 0.375rem 0.71875rem;
  position: relative;
}

.p-left-area__head-balloon::after {
  background: #fff;
  bottom: -8.7px;
  bottom: -0.54375rem;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  content: "";
  display: inline-block;
  height: 9.23px;
  height: 0.576875rem;
  left: 50%;
  position: absolute;
  translate: -50% 0;
  width: 14.76px;
  width: 0.9225rem;
}

.p-left-area__head-text {
  color: #2D5AA3;
  font-size: max(19.58px, 10px);
  font-size: max(1.22375rem, 10px);
  font-weight: 700;
  line-height: 1.1746680286;
  text-transform: uppercase;
}

.p-left-area__text {
  color: #fff;
  font-size: max(20.75px, 10px);
  font-size: max(1.296875rem, 10px);
  font-weight: 600;
  line-height: 1.156626506;
  margin-top: 19px;
  margin-top: 1.1875rem;
  position: relative;
  z-index: 1;
}

.p-left-area__heading-top {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(180deg, #f2ffb9, #d3f92c);
  background-clip: text;
  font-size: max(82.08px, 10px);
  font-size: max(5.13rem, 10px);
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.p-left-area__heading-top-comma {
  font-size: max(70.95px, 10px);
  font-size: max(4.434375rem, 10px);
}

.p-left-area__heading-top-plus {
  font-weight: 400;
}

.p-left-area__heading-middle {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(180deg, #f2ffb9, #d3f92c);
  background-clip: text;
  font-size: max(41.49px, 10px);
  font-size: max(2.593125rem, 10px);
  font-weight: 700;
  line-height: 1;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.p-left-area__heading-bottom {
  color: #fff;
  font-size: max(27.97px, 10px);
  font-size: max(1.748125rem, 10px);
  font-weight: 700;
  line-height: 1;
  margin-top: 10.23px;
  margin-top: 0.639375rem;
  position: relative;
  z-index: 1;
}

.p-left-area__heading-bottom span {
  text-transform: uppercase;
}

.p-left-area__note {
  color: #fff;
  font-size: max(11px, 10px);
  font-size: max(0.6875rem, 10px);
  font-weight: 400;
  line-height: 1;
  margin-top: 19.87px;
  margin-top: 1.241875rem;
  position: relative;
  text-align: left;
  translate: -4px 0;
  translate: -0.25rem 0;
  z-index: 1;
}

.p-left-area__cta-content {
  text-align: center;
}

.p-left-area__cta-balloon {
  background-color: #fff;
  border-radius: 0.375rem;
  display: inline-block;
  padding: 5.5px 10px;
  padding: 0.34375rem 0.625rem;
  position: relative;
}

.p-left-area__cta-balloon::after {
  background: #ffffff;
  bottom: -9px;
  bottom: -0.5625rem;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  content: "";
  display: inline-block;
  height: 10px;
  height: 0.625rem;
  left: 50%;
  position: absolute;
  translate: -50% 0;
  width: 16px;
  width: 1rem;
}

.p-left-area__cta-text {
  color: #0a224a;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 700;
  line-height: 1.1875;
}

.p-left-area__button-wrap {
  filter: drop-shadow(0 2.816px 10.563px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 0.176059375rem 0.660225rem rgba(0, 0, 0, 0.3));
  margin-top: 60px;
  margin-top: 3.75rem;
  position: relative;
  width: 100%;
  z-index: 1;
}

.p-left-area__cta-button.c-button {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 11px;
  margin-top: 0.6875rem;
  max-width: 345px;
  max-width: 21.5625rem;
  width: 100%;
}

.p-left-area__cta-button.c-button img {
  -o-object-fit: cover;
  aspect-ratio: 345/80;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-left-area__cta-button.c-button .c-button__hand {
  bottom: -23px;
  bottom: -1.4375rem;
  display: block;
  max-width: 53px;
  max-width: 3.3125rem;
  right: -11px;
  right: -0.6875rem;
  transform: rotate(0deg);
  width: 100%;
}

.p-left-area__cta-button.c-button .c-button__hand img {
  -o-object-fit: cover;
  aspect-ratio: 53/59;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-modal {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: auto;
  position: fixed;
  top: 0;
  transition: all 0.3s ease-out;
  visibility: hidden;
  width: 100%;
  z-index: 8887;
}

.p-modal-content__body {
  background: #fff;
  height: 90%;
  left: 20px;
  left: 1.25rem;
  max-width: 1280px;
  max-width: 80rem;
  overflow-y: auto;
  padding: 20px;
  padding: 1.25rem;
  position: absolute;
  right: 20px;
  right: 1.25rem;
  top: 60px;
  top: 3.75rem;
}

.p-modal-content__top {
  display: inline-block;
  position: fixed;
  right: 46px;
  right: 2.875rem;
  top: 80px;
  top: 5rem;
}

.p-modal-content__close {
  aspect-ratio: 1/1;
  display: inline-block;
  height: auto;
  position: relative;
  width: 34px;
  width: 2.125rem;
}

.p-modal-content__close::before,
.p-modal-content__close::after {
  background-color: #ED722D;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 100%;
}

.p-modal-content__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-modal-content__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-modal-content__close:hover,
.p-modal-content__close:focus {
  -webkit-text-decoration: none;
  cursor: pointer;
  text-decoration: none;
}

/* is-show */
.is-show {
  opacity: 1;
  visibility: visible; /* モーダル表示用クラス */
}

/* body固定 */
body:has(.p-modal.is-show) {
  overflow: hidden;
}

.p-mv {
  position: relative;
  z-index: 3;
}

.p-mv__car {
  clip-path: polygon(0% 0%, 100% 0, 100% 92%, 50% 100%, 0 92%);
}

.p-mv__contents {
  bottom: 49px;
  bottom: 3.0625rem;
  position: absolute;
}

.p-mv__inner {
  padding-left: 13px;
  padding-left: 0.8125rem;
  padding-right: 14px;
  padding-right: 0.875rem;
}

.p-mv__badge {
  display: flex;
  gap: 10px;
  gap: 0.625rem;
  justify-content: center;
}

.p-mv__badge-img {
  aspect-ratio: 1/1;
  max-width: 110px;
  max-width: 6.875rem;
  width: 100%;
}

.p-mv__notice {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-mv__notice--mt4 {
  margin-left: 2px;
  margin-left: 0.125rem;
  margin-top: 0;
}

.p-mv__notice-text {
  color: #fff;
  font-size: 8px;
  font-size: 0.5rem;
  font-weight: 400;
  line-height: 1.125;
}

.p-mv__title {
  margin-left: -4px;
  margin-left: -0.25rem;
  margin-top: 12px;
  margin-top: 0.75rem;
  text-align: center;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
  text-shadow: 0 0 0.375rem rgba(0, 0, 0, 0.7);
}

.p-mv__title-top {
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.18181818;
  text-align: center;
}

.p-mv__title-mark {
  color: #fff;
  font-size: 8px;
  font-size: 0.5rem;
  font-weight: 700;
  line-height: 3.25;
}

.p-mv__title-text {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8571428571;
}

.p-mv__title-bottom {
  color: #fff;
  display: inline-block;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.16666667;
  text-align: center;
}

.p-overview {
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-top: 64px;
  padding-top: 4rem;
}

.p-overview__list {
  margin-left: auto;
  margin-right: auto;
  margin-top: 17px;
  margin-top: 1.0625rem;
  max-width: 335px;
  max-width: 20.9375rem;
}

.p-overview__item {
  display: flex;
  gap: 33px;
  gap: 2.0625rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  padding-top: 16px;
  padding-top: 1rem;
  position: relative;
}

.p-overview__item::after {
  background: url(../images/common/overview-dot-line.svg) no-repeat center/contain;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  width: 335px;
  width: 20.9375rem;
}

.p-overview__term {
  font-family: "Noto Sans JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  width: 59px;
  width: 3.6875rem;
}

.p-overview__description {
  flex: 1;
  font-family: "Noto Sans JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.p-overview__description p + p {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-overview__certification {
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-top: 2.5rem;
  max-width: 335px;
  max-width: 20.9375rem;
}

.p-overview__certification-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 190px;
  max-width: 11.875rem;
  width: 100%;
}

.p-overview__certification-img img {
  -o-object-fit: cover;
  aspect-ratio: 190/169;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-overview__certification-text {
  font-family: "Noto Sans JP", serif;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-pricing {
  background-color: #fff;
  overflow: hidden;
  padding: 23px 0;
  padding: 1.4375rem 0;
  position: relative;
}

.p-pricing__inner {
  padding-left: 15px;
  padding-left: 0.9375rem;
  padding-right: 15px;
  padding-right: 0.9375rem;
}

.p-pricing__wrapper {
  position: relative;
  z-index: 2;
}

.p-pricing::after {
  aspect-ratio: 375/538;
  background-image: url(../images/common/pricing-bg-2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 538px;
  height: 33.625rem;
  position: absolute;
  top: 530px;
  top: 33.125rem;
  width: 100%;
  z-index: -2;
}

.p-pricing::before {
  aspect-ratio: 377/334;
  background-image: url(../images/common/pricing-bg-1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 334px;
  height: 20.875rem;
  position: absolute;
  top: 301px;
  top: 18.8125rem;
  width: 100%;
  z-index: -1;
}

.p-pricing__network {
  background: #1F4B91;
  border-radius: 0.625rem;
  margin: 0 auto;
  max-width: 345px;
  max-width: 21.5625rem;
  padding: 13px 13px 12px;
  padding: 0.8125rem 0.8125rem 0.75rem;
  position: relative;
}

.p-pricing__network::before {
  border-left: 8px solid transparent;
  border-left: 0.5rem solid transparent;
  border-right: 8px solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 12px solid #1F4B91;
  border-top: 0.75rem solid #1F4B91;
  bottom: -12px;
  bottom: -0.75rem;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
}

.p-pricing__network-text {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.p-pricing__network-highlight {
  color: #d0ff00;
}

.p-pricing__header {
  margin-top: 18px;
  margin-top: 1.125rem;
  padding: 0 15px;
  padding: 0 0.9375rem;
  text-align: center;
}

.p-pricing__header-intro {
  color: #0D2448;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1875;
  margin-bottom: 2px;
  margin-bottom: 0.125rem;
  padding-left: 3px;
  padding-left: 0.1875rem;
}

.p-pricing__header-content {
  align-items: baseline;
  display: flex;
  gap: 6px;
  gap: 0.375rem;
  justify-content: center;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  margin-top: -2px;
  margin-top: -0.125rem;
  padding-left: 3px;
  padding-left: 0.1875rem;
}

.p-pricing__header-from {
  color: #0D2448;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.p-pricing__header-asterisk {
  font-size: 8px;
  font-size: 0.5rem;
  margin-left: -2px;
  margin-left: -0.125rem;
  vertical-align: super;
}

.p-pricing__header-price {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  align-items: baseline;
  background: linear-gradient(180deg, #F39000 8.1522%, #EE4C2D 92.391%);
  background-clip: text;
  display: flex;
  font-weight: 700;
  gap: 1px;
  gap: 0.0625rem;
  line-height: normal;
  margin: 0;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  text-shadow: 0.125rem 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
}

.p-pricing__header-currency {
  font-size: 26px;
  font-size: 1.625rem;
}

.p-pricing__header-amount {
  font-size: 45px;
  font-size: 2.8125rem;
}

.p-pricing__header-title {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(180deg, #F39000 8.1522%, #EE4C2D 92.391%);
  background-clip: text;
  font-size: 45px;
  font-size: 2.8125rem;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  padding-left: 3px;
  padding-left: 0.1875rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  text-shadow: 0.125rem 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
}

.p-pricing__header-note {
  color: #111111;
  font-size: 8px;
  font-size: 0.5rem;
  font-weight: 400;
  line-height: normal;
  margin-top: 10px;
  margin-top: 0.625rem;
  text-align: left;
}

.p-pricing__cards {
  display: flex;
  flex-direction: column;
  gap: 35px;
  gap: 2.1875rem;
  margin-bottom: 38px;
  margin-bottom: 2.375rem;
  margin-top: 13px;
  margin-top: 0.8125rem;
}

.p-pricing__card-image-top {
  margin-left: 16px;
  margin-left: 1rem;
  max-width: 298px;
  max-width: 18.625rem;
  width: 100%;
}

.p-pricing__card-image-top img {
  aspect-ratio: 149/87;
  height: 100%;
  width: 100%;
}

.p-pricing__card-image-bottom {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2px;
  margin-top: 0.125rem;
  max-width: 316px;
  max-width: 19.75rem;
  width: 100%;
}

.p-pricing__card-image-bottom img {
  aspect-ratio: 316/157;
  height: 100%;
  width: 100%;
}

.p-pricing__card-title {
  color: #111111;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: normal;
  margin-top: 9px;
  margin-top: 0.5625rem;
  padding-left: 5px;
  padding-left: 0.3125rem;
  text-align: center;
}

.p-pricing__card-title-bottom {
  margin-top: 13px;
  margin-top: 0.8125rem;
}

.p-pricing__card-price {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  margin-top: -1px;
  margin-top: -0.0625rem;
  padding-left: 3px;
  padding-left: 0.1875rem;
}

.p-pricing__card-price--bottom {
  padding-left: 0;
  padding-right: 5px;
  padding-right: 0.3125rem;
}

.p-pricing__card-currency {
  background: #1F4B91;
  border-radius: 0.1875rem;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  margin-right: 6px;
  margin-right: 0.375rem;
  margin-top: 6px;
  margin-top: 0.375rem;
  padding: 1px 5px 0 9px;
  padding: 0.0625rem 0.3125rem 0 0.5625rem;
}

.p-pricing__card-amount {
  color: #dd2330;
  font-size: 46px;
  font-size: 2.875rem;
  font-weight: 700;
  line-height: normal;
  margin-left: 4px;
  margin-left: 0.25rem;
}

.p-pricing__card-tilde {
  color: #111111;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: normal;
}

.p-pricing__card-note {
  color: #111111;
  font-size: 8px;
  font-size: 0.5rem;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  text-align: left;
}

.p-pricing__guarantee {
  -webkit-text-decoration: none;
  aspect-ratio: 345/170;
  background-image: url(../images/common/price-btn-bgi.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: inherit;
  display: none;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-top: 21px;
  padding-top: 1.3125rem;
  text-decoration: none;
  transition: 0.3s;
}

.p-pricing__guarantee:hover {
  opacity: 0.6;
}

.p-pricing__guarantee-link {
  -webkit-text-decoration: underline;
  color: #0084FF;
  text-decoration: underline;
  transition: 0.3s;
}

.p-pricing__guarantee:hover .p-pricing__guarantee-link {
  -webkit-text-decoration: none;
  text-decoration: none;
}

.p-pricing__guarantee-text {
  color: #111;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.15384615;
  text-align: center;
}

.p-pricing__guarantee-content {
  align-items: center;
  display: flex;
  gap: 13px;
  gap: 0.8125rem;
  justify-content: center;
  margin-bottom: 7px;
  margin-bottom: 0.4375rem;
  margin-top: 11px;
  margin-top: 0.6875rem;
}

.p-pricing__guarantee-img {
  max-width: 73.93px;
  max-width: 4.620625rem;
  width: 100%;
}

.p-pricing__guarantee-img img {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
     object-fit: cover;
}

.p-pricing__guarantee-title {
  color: #1A96CC;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 0.9;
  padding-left: 2px;
  padding-left: 0.125rem;
}

.p-pricing__guarantee-note {
  color: #111;
  font-size: 8px;
  font-size: 0.5rem;
  font-weight: 400;
  line-height: 1.25;
  margin-top: 7px;
  margin-top: 0.4375rem;
  padding-left: 2px;
  padding-left: 0.125rem;
}

.p-process {
  padding-bottom: 64px;
  padding-bottom: 4rem;
  padding-top: 64px;
  padding-top: 4rem;
}

.p-process__flow {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-top: 2.5rem;
  max-width: 335px;
  max-width: 20.9375rem;
  position: relative;
  width: 100%;
}

.p-process__flow::before {
  background: url(../images/common/decoration.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 16px;
  height: 1rem;
  left: 50%;
  position: absolute;
  top: -20px;
  top: -1.25rem;
  transform: translateX(-50%);
  width: 16px;
  width: 1rem;
}

.p-process__flow img {
  -o-object-fit: cover;
  aspect-ratio: 335/404;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-process-arrow {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-top: 2.5rem;
  max-width: 79px;
  max-width: 4.9375rem;
  width: 100%;
}

.p-process-arrow img {
  -o-object-fit: cover;
  aspect-ratio: 79/54;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-process__online {
  background: url(../images/common/process-online-bg.webp) no-repeat center/cover;
  height: 277px;
  height: 17.3125rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 43px;
  margin-top: 2.6875rem;
  position: relative;
  text-align: center;
  width: 334px;
  width: 20.875rem;
}

.p-process__online-img {
  display: block;
  left: 50%;
  max-width: 96px;
  max-width: 6rem;
  position: absolute;
  top: -17px;
  top: -1.0625rem;
  transform: translateX(-50%);
  width: 100%;
}

.p-process__online-img::before,
.p-process__online-img::after {
  background: url(../images/common/decoration.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 16px;
  height: 1rem;
  position: absolute;
  top: -26px;
  top: -1.625rem;
  width: 16px;
  width: 1rem;
}

.p-process__online-img::before {
  left: calc(50% - 10.25rem);
}

.p-process__online-img::after {
  right: calc(50% - 10.4375rem);
}

.p-process__online-img img {
  -o-object-fit: cover;
  aspect-ratio: 96/56;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-process__online-body {
  left: 50%;
  position: absolute;
  top: 52px;
  top: 3.25rem;
  transform: translateX(-50%);
  width: 100%;
}

.p-process__online-read {
  font-family: "Noto Sans JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  letter-spacing: 0.05em;
  line-height: 2;
}

.p-process__online-read-primary {
  background: linear-gradient(transparent 30%, #FFF600 30%);
  color: #FC5800;
  font-family: "Noto Sans JP", serif;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3px;
  margin-top: 0.1875rem;
  padding-bottom: 7px;
  padding-bottom: 0.4375rem;
  width: -moz-fit-content;
  width: fit-content;
}

.p-process__online-text-box {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-process__online-text {
  font-family: "Noto Sans JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.05em;
  line-height: 2;
}

.p-process__online-text-small {
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
}

.p-process__frame {
  background: url(../images/common/process-frame.webp) no-repeat center/contain;
  margin-top: 40px;
  margin-top: 2.5rem;
  min-height: 152px;
  min-height: 9.5rem;
  padding-top: 42px;
  padding-top: 2.625rem;
  position: relative;
  text-align: center;
}

.p-process__frame::before,
.p-process__frame::after {
  background: url(../images/common/decoration.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 16px;
  height: 1rem;
  position: absolute;
  top: -6px;
  top: -0.375rem;
  width: 16px;
  width: 1rem;
}

.p-process__frame::before {
  left: calc(50% - 10.25rem);
}

.p-process__frame::after {
  right: calc(50% - 10.4375rem);
}

.p-process__frame-text {
  background: linear-gradient(transparent 50%, #FFF600 50%);
  font-family: "Noto Sans JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.p-process__frame-text--color {
  color: #FC5800;
}

.p-process__addition {
  background-color: #F6F6F6;
  border-radius: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 35px;
  margin-top: 2.1875rem;
  max-width: 335px;
  max-width: 20.9375rem;
  padding: 40px 24px;
  padding: 2.5rem 1.5rem;
  position: relative;
}

.p-process__addition::before {
  background: url(../images/common/decoration.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 16px;
  height: 1rem;
  left: 50%;
  position: absolute;
  top: -20px;
  top: -1.25rem;
  transform: translateX(-50%);
  width: 16px;
  width: 1rem;
}

.p-process__addition-title {
  font-family: "Noto Sans JP", serif;
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
}

.p-process__addition-title::after {
  background: url(../images/common/process-line.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 6px;
  height: 0.375rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 17px;
  margin-top: 1.0625rem;
  width: 54px;
  width: 3.375rem;
}

.p-process__addition-text-top {
  font-family: "Noto Sans JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  letter-spacing: 0.1em;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-process__addition-text-bottom {
  font-family: "Noto Sans JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-process__addition-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  margin-top: 1.5rem;
  max-width: 287px;
  max-width: 17.9375rem;
  width: 100%;
}

.p-process__addition-img img {
  -o-object-fit: cover;
  aspect-ratio: 287/512;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-qa {
  background-color: #FFF7D9;
  padding-bottom: 64px;
  padding-bottom: 4rem;
  padding-top: 64px;
  padding-top: 4rem;
}

.p-qa__list {
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-top: 2.5rem;
  max-width: 335px;
  max-width: 20.9375rem;
}

.p-qa__item {
  background-color: #fff;
  border-radius: 0.625rem;
}

.p-qa__item + .p-qa__item {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-qa__question {
  cursor: pointer;
  display: flex;
  font-family: "Noto Sans JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  gap: 8px;
  gap: 0.5rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding: 16.5px 16px 16px;
  padding: 1.03125rem 1rem 1rem;
  position: relative;
  text-transform: uppercase;
}

.p-qa__question::before {
  background: url(../images/common/qa-q-icon.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 26px;
  height: 1.625rem;
  width: 26px;
  width: 1.625rem;
}

.p-qa__question::after {
  background: url(../images/common/qa-arrow.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 11px;
  height: 0.6875rem;
  position: absolute;
  right: 16px;
  right: 1rem;
  top: 22px;
  top: 1.375rem;
  transition: transform 0.3s ease-in-out;
  width: 16px;
  width: 1rem;
}

.p-qa__question.is-open::after {
  transform: rotate(180deg);
}

.p-qa__question span {
  display: block;
  max-width: 241px;
  max-width: 15.0625rem;
}

.p-qa__answer {
  display: none;
  font-family: "Noto Sans JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  padding: 16px 15px 24px 16px;
  padding: 1rem 0.9375rem 1.5rem 1rem;
  position: relative;
}

.p-qa__answer::before {
  background: url(../images/common/qa-dot-line.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 303px;
  width: 18.9375rem;
}

.p-qa__button {
  margin-left: auto;
  margin-right: auto;
  margin-top: 64px;
  margin-top: 4rem;
  width: -moz-fit-content;
  width: fit-content;
}

.p-right-area {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-right-area {
    display: block;
    margin-left: auto;
    position: relative;
  }
}

.p-right-area__content {
  align-items: center;
  background-color: #d3ed5a;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  position: relative;
  width: 51.171875vw;
}
@media (min-width: 1000.02px) {
  .p-right-area__content {
    width: 37.0138888889vw;
  }
}
@media (min-width: 1440px) {
  .p-right-area__content {
    width: 533px;
    width: 33.3125rem;
  }
}

.p-right-area__menu {
  display: flex;
  flex-direction: column;
  width: min(100%, 250px);
  width: min(100%, 15.625rem);
}
@media (min-width: 1000.02px) {
  .p-right-area__menu {
    width: min(100%, 350px);
    width: min(100%, 21.875rem);
  }
}

.p-right-area__strength {
  width: 100%;
}

.p-right-area__strength-icon {
  background-color: #0D2448;
  border-radius: 50%;
  display: inline-block;
  height: 20px;
  height: 1.25rem;
  position: relative;
  width: 20px;
  width: 1.25rem;
}
@media (min-width: 1000.02px) {
  .p-right-area__strength-icon {
    height: 24px;
    height: 1.5rem;
    width: 24px;
    width: 1.5rem;
  }
}

.p-right-area__strength-icon::after {
  border-right: 2px solid #fff;
  border-right: 0.125rem solid #fff;
  border-top: 2px solid #fff;
  border-top: 0.125rem solid #fff;
  content: "";
  height: 6px;
  height: 0.375rem;
  left: 50%;
  position: absolute;
  rotate: 135deg;
  top: 46%;
  translate: -50% -50%;
  width: 6px;
  width: 0.375rem;
}

.p-right-area__strength-text {
  color: #0D2448;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4285714286;
}
@media (min-width: 1000.02px) {
  .p-right-area__strength-text {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    line-height: 1.1666666667;
  }
}

.p-right-area__strength-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-right-area__strength-item {
  width: 100%;
}

.p-right-area__strength-link {
  align-items: center;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
  padding: 4px 8px;
  padding: 0.25rem 0.5rem;
  transition: opacity 0.3s ease-out;
}
@media (min-width: 1000.02px) {
  .p-right-area__strength-link {
    gap: 16px;
    gap: 1rem;
    padding: 12px 16px;
    padding: 0.75rem 1rem;
  }
}

@media (any-hover: hover) {
  .p-right-area__strength-link:hover {
    opacity: 0.6;
  }
}
.p-right-area__strength-link.active {
  opacity: 0.6;
}

.p-right-area__strength-link-icon {
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  height: 20px;
  height: 1.25rem;
  position: relative;
  width: 20px;
  width: 1.25rem;
}
@media (min-width: 1000.02px) {
  .p-right-area__strength-link-icon {
    height: 24px;
    height: 1.5rem;
    width: 24px;
    width: 1.5rem;
  }
}

.p-right-area__strength-link-icon::after {
  border-right: 2px solid #0D2448;
  border-right: 0.125rem solid #0D2448;
  border-top: 2px solid #0D2448;
  border-top: 0.125rem solid #0D2448;
  content: "";
  height: 6px;
  height: 0.375rem;
  left: 50%;
  position: absolute;
  rotate: 135deg;
  top: 46%;
  translate: -50% -50%;
  width: 6px;
  width: 0.375rem;
}

.p-right-area__strength-link-text {
  color: #0D2448;
  font-size: max(13px, 10px);
  font-size: max(0.8125rem, 10px);
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (min-width: 1000.02px) {
  .p-right-area__strength-link-text {
    font-size: max(16px, 10px);
    font-size: max(1rem, 10px);
    line-height: 1.1875;
  }
}

.p-right-area__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  width: 100%;
}
@media (min-width: 1000.02px) {
  .p-right-area__items {
    gap: 16px;
    gap: 1rem;
  }
}

.p-right-area__item {
  width: 100%;
}

.p-right-area__link {
  align-items: center;
  background-color: #fff;
  border-radius: 0.625rem;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
  padding: 8px;
  padding: 0.5rem;
  transition: opacity 0.3s ease-out;
  width: 100%;
}
@media (min-width: 1000.02px) {
  .p-right-area__link {
    gap: 16px;
    gap: 1rem;
    padding: 16px;
    padding: 1rem;
  }
}

@media (any-hover: hover) {
  .p-right-area__link:hover {
    opacity: 0.6;
  }
}
.p-right-area__link.active {
  opacity: 0.6;
}

.p-right-area__link-icon {
  background-color: #0D2448;
  border-radius: 50%;
  display: inline-block;
  height: 20px;
  height: 1.25rem;
  position: relative;
  transition: background-color 0.3s ease;
  width: 20px;
  width: 1.25rem;
}
@media (min-width: 1000.02px) {
  .p-right-area__link-icon {
    height: 24px;
    height: 1.5rem;
    width: 24px;
    width: 1.5rem;
  }
}

.p-right-area__link-icon::after {
  border-right: 2px solid #fff;
  border-right: 0.125rem solid #fff;
  border-top: 2px solid #fff;
  border-top: 0.125rem solid #fff;
  content: "";
  height: 6px;
  height: 0.375rem;
  left: 50%;
  position: absolute;
  rotate: 135deg;
  top: 46%;
  transition: border-color 0.3s ease;
  translate: -50% -50%;
  width: 6px;
  width: 0.375rem;
}

.p-right-area__link-text {
  color: #0D2448;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4285714286;
  transition: color 0.3s ease;
}
@media (min-width: 1000.02px) {
  .p-right-area__link-text {
    font-size: max(18px, 10px);
    font-size: max(1.125rem, 10px);
    line-height: 1.1666666667;
  }
}

.p-right-area__cta {
  filter: drop-shadow(0 2.816px 10.563px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 0.176059375rem 0.660225rem rgba(0, 0, 0, 0.3));
  margin-top: 32px;
  margin-top: 2rem;
}
@media (min-width: 1000.02px) {
  .p-right-area__cta {
    display: none;
  }
}

.p-right-area__cta-content {
  text-align: center;
}

.p-right-area__cta-balloon {
  background-color: #fff;
  border-radius: 0.264375rem;
  display: inline-block;
  padding: 4px 7px;
  padding: 0.25rem 0.4375rem;
  position: relative;
}

.p-right-area__cta-balloon::after {
  background: #ffffff;
  bottom: -6px;
  bottom: -0.375rem;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  content: "";
  display: inline-block;
  height: 7.04px;
  height: 0.44rem;
  left: 50%;
  position: absolute;
  translate: -50% 0;
  width: 11.27px;
  width: 0.704375rem;
}

.p-right-area__cta-text {
  color: #0a224a;
  font-size: max(11.27px, 10px);
  font-size: max(0.704375rem, 10px);
  font-weight: 700;
  line-height: 1.1535048802;
}

.p-right-area__cta-button.c-button {
  display: block;
  margin-top: 8px;
  margin-top: 0.5rem;
  max-width: 243px;
  max-width: 15.1875rem;
  transition: opacity 0.3s ease-out;
  width: 100%;
}

@media (any-hover: hover) {
  .p-right-area__cta-button.c-button:hover {
    opacity: 0.6;
  }
}
.p-right-area__cta-button.c-button img {
  -o-object-fit: cover;
  aspect-ratio: 243/57;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-right-area__cta-button.c-button .c-button__hand {
  bottom: -15px;
  bottom: -0.9375rem;
  display: block;
  max-width: 37px;
  max-width: 2.3125rem;
  right: -7px;
  right: -0.4375rem;
  transform: rotate(0deg);
  width: 100%;
}

.p-right-area__cta-button.c-button .c-button__hand img {
  -o-object-fit: cover;
  aspect-ratio: 37/41;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-stats {
  background: #fff;
  background-image: url(../images/common/stats-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  clip-path: polygon(50% 6.5%, 100% 0%, 100% 100%, 0 100%, 0 0);
  margin-top: -43px;
  margin-top: -2.6875rem;
  overflow: hidden;
  padding: 74px 0 40px;
  padding: 4.625rem 0 2.5rem;
  position: relative;
}

.p-stats__inner {
  padding: 0 15px;
  padding: 0 0.9375rem;
}

.p-stats__background {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}

.p-stats__background-image {
  opacity: 0.6;
  position: absolute;
}

.p-stats__background-image--1 {
  -o-object-fit: cover;
  height: 666px;
  height: 41.625rem;
  left: -405px;
  left: -25.3125rem;
     object-fit: cover;
  opacity: 0.48;
  top: 0;
  width: 1185px;
  width: 74.0625rem;
}

.p-stats__background-image--2 {
  -o-object-fit: cover;
  height: 1021px;
  height: 63.8125rem;
  left: -549px;
  left: -34.3125rem;
     object-fit: cover;
  opacity: 0.6;
  top: -171px;
  top: -10.6875rem;
  width: 1458px;
  width: 91.125rem;
}

.p-stats__header {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  padding: 0 15px;
  padding: 0 0.9375rem;
  position: relative;
  text-align: center;
}

.p-stats__divider {
  background: linear-gradient(90deg, #1F4B91 0%, #6BA3D5 50%, #1F4B91 100%);
  height: 42px;
  height: 2.625rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  width: 100%;
}

.p-stats__title {
  color: #0D2448;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.16666667;
  margin: 0 0 8px 0;
  margin: 0 0 0.5rem 0;
}

.p-stats__note {
  color: #111111;
  font-size: 8px;
  font-size: 0.5rem;
  font-weight: 400;
  line-height: normal;
  margin-top: 47px;
  margin-top: 2.9375rem;
  text-align: right;
}

.p-stats__stats {
  display: flex;
  flex-direction: column;
  gap: 46px;
  gap: 2.875rem;
}

.p-stats__stat {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
}

.p-stats__stat-badge {
  background: linear-gradient(309deg, #1A96CB 10.15%, #63C7F2 99.83%);
  border-radius: 0.5rem;
  filter: drop-shadow(3px 3px 0 rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0.1875rem 0.1875rem 0 rgba(0, 0, 0, 0.1));
  left: 20px;
  left: 1.25rem;
  padding: 11px 17px 6px 18px;
  padding: 0.6875rem 1.0625rem 0.375rem 1.125rem;
  position: absolute;
  top: -8px;
  top: -0.5rem;
  transform: rotate(-12deg);
  z-index: 2;
}

.p-stats__stat-badge::after {
  border-left: 8px solid transparent;
  border-left: 0.5rem solid transparent;
  border-right: 8px solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 12px solid #1A96CB;
  border-top: 0.75rem solid #1A96CB;
  bottom: -12px;
  bottom: -0.75rem;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
}

.p-stats__stat-badge--second {
  left: auto;
  padding: 18.13px 20.39px 18.87px 18.61px;
  padding: 1.133125rem 1.274375rem 1.179375rem 1.163125rem;
  right: 30px;
  right: 1.875rem;
  top: -21px;
  top: -1.3125rem;
  transform: rotate(12deg);
}

.p-stats__stat-label {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.p-stats__stat-circle {
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  box-shadow: 0.3145rem 0.3145rem 0 #8AA800;
  display: flex;
  height: 195px;
  height: 12.1875rem;
  justify-content: center;
  position: relative;
  width: 195px;
  width: 12.1875rem;
}

.p-stats__stat-circle-top {
  background-image: url(../images/common/stats-graph-1.webp);
}

.p-stats__stat-circle-bottom {
  background-image: url(../images/common/stats-graph-2.webp);
}

.p-stats__stat-circle::before {
  background: #fff;
  border-radius: 50%;
  content: "";
  height: 109px;
  height: 6.8125rem;
  position: absolute;
  width: 109px;
  width: 6.8125rem;
  z-index: 1;
}

.p-stats__stat-circle::after {
  background: #C0E614;
  border-radius: 50%;
  content: "";
  height: 13px;
  height: 0.8125rem;
  left: 50%;
  position: absolute;
  top: 8px;
  top: 0.5rem;
  transform: translateX(-50%);
  width: 13px;
  width: 0.8125rem;
}

.p-stats__stat-percent {
  align-items: baseline;
  display: flex;
  gap: 2px;
  gap: 0.125rem;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.p-stats__stat-asterisk {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  align-self: flex-start;
  background: linear-gradient(180deg, #F39000 8.1522%, #EE4C2D 92.391%);
  background-clip: text;
  bottom: 41px;
  bottom: 2.5625rem;
  font-size: 17.613px;
  font-size: 1.1008125rem;
  font-weight: 700;
  position: absolute;
  right: 7px;
  right: 0.4375rem;
}

.p-stats__stat-number {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(180deg, #F39000 8.1522%, #EE4C2D 92.391%);
  background-clip: text;
  font-family: "Roboto", sans-serif;
  font-size: 80.516px;
  font-size: 5.03225rem;
  font-weight: 900;
}

.p-stats__stat-symbol {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(180deg, #F39000 8.1522%, #EE4C2D 92.391%);
  background-clip: text;
  font-family: "Roboto", sans-serif;
  font-size: 50.323px;
  font-size: 3.1451875rem;
  font-weight: 700;
}

.p-stats__stat-photos {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.p-stats__stat-photo {
  box-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: absolute;
}

.p-stats__stat-photo::before {
  border: 2px solid #fff;
  border: 0.125rem solid #fff;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

.p-stats__stat-photo--1 {
  bottom: -8px;
  bottom: -0.5rem;
  height: 69.69px;
  height: 4.355625rem;
  left: -59px;
  left: -3.6875rem;
  transform: rotate(-12deg);
  width: 99.64px;
  width: 6.2275rem;
}

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

.p-stats__stat-photo--2 {
  height: 69.69px;
  height: 4.355625rem;
  right: -72px;
  right: -4.5rem;
  top: 12px;
  top: 0.75rem;
  transform: rotate(6.372deg);
  width: 99.64px;
  width: 6.2275rem;
}

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

.p-stats__stat-photo--3 {
  bottom: 6px;
  bottom: 0.375rem;
  height: 69.69px;
  height: 4.355625rem;
  left: -68px;
  left: -4.25rem;
  transform: rotate(-11.591deg);
  width: 99.64px;
  width: 6.2275rem;
}

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

.p-stats__stat-photo--4 {
  bottom: -16px;
  bottom: -1rem;
  height: 69.69px;
  height: 4.355625rem;
  right: -66px;
  right: -4.125rem;
  transform: rotate(6deg);
  width: 99.64px;
  width: 6.2275rem;
}

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

.p-struggle {
  background-image: url(../images/common/struggle-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 0 0 136px;
  padding: 0 0 8.5rem;
  position: relative;
}

.p-struggle__person {
  bottom: 33px;
  bottom: 2.0625rem;
  left: calc(50% - 0.375rem);
  max-width: 244px;
  max-width: 15.25rem;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}

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

.p-struggle__header {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0 0.25rem 0.625rem rgba(0, 0, 0, 0.25));
  padding-top: 0;
  position: relative;
  z-index: 3;
}

.p-struggle__header-bg {
  height: 137.509px;
  height: 8.5943125rem;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 375.184px;
  width: 23.449rem;
  z-index: 1;
}

.p-struggle__header {
  aspect-ratio: 375/138;
  background-image: url(../images/common/struggle-top.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-struggle__title {
  color: #fff;
  padding-top: 26px;
  padding-top: 1.625rem;
}

.p-struggle__title-line {
  color: #fff;
  display: block;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-shadow: 1px 1px 0 #353535;
  text-shadow: 0.0625rem 0.0625rem 0 #353535;
}

.p-struggle__title-line:last-child {
  padding-left: 6px;
  padding-left: 0.375rem;
}

.p-struggle__divider {
  margin-top: -10px;
  margin-top: -0.625rem;
  position: relative;
  width: 100%;
  z-index: 3;
}

.p-struggle__divider img {
  display: block;
  height: auto;
  width: 100%;
}

.p-struggle__bubbles {
  position: relative;
  z-index: 4;
}

.p-struggle__bubble {
  position: relative;
}

.p-struggle__bubble-shape {
  display: block;
  height: auto;
  width: 100%;
}

.p-struggle__bubble--1 {
  margin-left: 7px;
  margin-left: 0.4375rem;
  margin-top: 4px;
  margin-top: 0.25rem;
  max-width: 218px;
  max-width: 13.625rem;
  width: 100%;
}

.p-struggle__bubble--1 img {
  aspect-ratio: 218/131;
  width: 100%;
}

.p-struggle__bubble--2 {
  margin-left: auto;
  margin-right: 6px;
  margin-right: 0.375rem;
  margin-top: -65px;
  margin-top: -4.0625rem;
  max-width: 165px;
  max-width: 10.3125rem;
  width: 100%;
}

.p-struggle__bubble--2 img {
  aspect-ratio: 165/115;
  width: 100%;
}

.p-struggle__bubble--3 {
  margin-top: -47px;
  margin-top: -2.9375rem;
  max-width: 228px;
  max-width: 14.25rem;
  width: 100%;
}

.p-struggle__bubble--3 img {
  aspect-ratio: 228/119;
  width: 100%;
}

.p-struggle__bubble--4 {
  margin-left: auto;
  margin-right: 7px;
  margin-right: 0.4375rem;
  margin-top: -45px;
  margin-top: -2.8125rem;
  max-width: 171px;
  max-width: 10.6875rem;
  width: 100%;
}

.p-struggle__bubble--4 img {
  aspect-ratio: 171/118;
  width: 100%;
}

.p-struggle__bubble-text {
  color: #fff;
  font-family: "Roboto", sans-serif;
  left: 50%;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.p-struggle__bubble--1 .p-struggle__bubble-text {
  transform: translate(-50%, -61%);
}

.p-struggle__bubble--2 .p-struggle__bubble-text {
  transform: translate(-46%, -58%);
}

.p-struggle__bubble--3 .p-struggle__bubble-text {
  line-height: 1.2;
  transform: translate(-49%, -50%);
}

.p-struggle__bubble--4 .p-struggle__bubble-text {
  transform: translate(-51%, -72%);
}

.p-struggle__bubble-text p {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0;
}

.p-struggle__bubble-highlight {
  color: #8bd0f3;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.p-struggle__bubble-small {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
}

.p-system__top {
  background-color: #fff7d9;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-top: 64px;
  padding-top: 4rem;
}

.p-system__head {
  background-color: #fff;
  border-radius: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 42px;
  margin-top: 2.625rem;
  max-width: 335px;
  max-width: 20.9375rem;
  padding: 32px 24px;
  padding: 2rem 1.5rem;
  position: relative;
}

.p-system__head::after {
  background: url(../images/common/system-question.svg) no-repeat center/cover;
  content: "";
  display: block;
  height: 110px;
  height: 6.875rem;
  left: 50%;
  position: absolute;
  top: 17px;
  top: 1.0625rem;
  transform: translateX(-50%);
  width: 84px;
  width: 5.25rem;
}

.p-system__head-title {
  font-family: "Noto Sans JP", serif;
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
}

.p-system__head-text {
  font-family: "Noto Sans JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-system__mechanism {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.p-system__mechanism-frame {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding-top: 12px;
  padding-top: 0.75rem;
  position: relative;
  text-align: center;
}

.p-system__mechanism-frame--01 {
  background: url(../images/common/system-union01.svg) no-repeat center/contain;
  min-height: 101px;
  min-height: 6.3125rem;
}

.p-system__mechanism-frame--02 {
  background: url(../images/common/system-union02.svg) no-repeat center/contain;
  min-height: 72px;
  min-height: 4.5rem;
}

.p-system__mechanism-frame--03 {
  background: url(../images/common/system-union03.svg) no-repeat center/contain;
  min-height: 129px;
  min-height: 8.0625rem;
}

.p-system__mechanism-read {
  background-color: #161616;
  border-radius: 100vmax;
  color: #fff;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  left: 50%;
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding-bottom: 1.65px;
  padding-bottom: 0.103125rem;
  padding-top: 1.65px;
  padding-top: 0.103125rem;
  position: absolute;
  text-align: center;
  top: -12px;
  top: -0.75rem;
  transform: translateX(-50%);
  width: 72px;
  width: 4.5rem;
}

.p-system__mechanism-read-number {
  display: inline-block;
  font-family: "Montserrat", serif;
  font-size: max(22px, 10px);
  font-size: max(1.375rem, 10px);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-left: 5px;
  margin-left: 0.3125rem;
}

.p-system__mechanism-title {
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding-top: 12px;
  padding-top: 0.75rem;
}

.p-system__mechanism-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  margin-top: 1rem;
  width: 100%;
}

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

.p-system__mechanism-img--01 {
  max-width: 335px;
  max-width: 20.9375rem;
}

.p-system__mechanism-img--01 img {
  aspect-ratio: 335/200;
}

.p-system__mechanism-img--02 {
  max-width: 200px;
  max-width: 12.5rem;
}

.p-system__mechanism-img--02 img {
  aspect-ratio: 1/1;
}

.p-system__mechanism-img--03 {
  max-width: 200px;
  max-width: 12.5rem;
}

.p-system__mechanism-img--03 img {
  aspect-ratio: 1/1;
}

.p-system__mechanism-text {
  font-family: "Noto Sans JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: 16px;
  margin-top: 1rem;
  text-align: center;
}

.p-system__middle {
  background-image: url(../images/common/system-middle-bg.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 88px;
  padding-bottom: 5.5rem;
  padding-top: 75px;
  padding-top: 4.6875rem;
  position: relative;
}

.p-system__middle::before {
  background: url(../images/common/system-arrow.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 69px;
  height: 4.3125rem;
  left: 50%;
  position: absolute;
  top: -17px;
  top: -1.0625rem;
  transform: translateX(-50%);
  width: 90px;
  width: 5.625rem;
}

.p-system__middle-heading {
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
}

.p-system__middle-heading-dot {
  background-image: radial-gradient(circle at center, #161616 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top left; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1.04em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: 0.3em; /* 縦方向の位置調整 */
}

.p-system__middle-heading-color {
  background: linear-gradient(transparent 10%, #FFF600 10%);
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}

.p-system__middle-items {
  margin-top: 74px;
  margin-top: 4.625rem;
  position: relative;
}

.p-system__middle-items::before {
  background: url(../images/common/system-dot-line.svg) no-repeat center/cover;
  content: "";
  display: block;
  height: 29.5px;
  height: 1.84375rem;
  left: 50%;
  position: absolute;
  top: -51px;
  top: -3.1875rem;
  transform: translateX(-50%);
  width: 334px;
  width: 20.875rem;
}

.p-system__middle-item {
  background-color: #fff;
  border: 3px solid #161616;
  border: 0.1875rem solid #161616;
  border-radius: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 335px;
  max-width: 20.9375rem;
}

.p-system__middle-item + .p-system__middle-item {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-system__middle-item-img {
  display: block;
  max-width: 329px;
  max-width: 20.5625rem;
  width: 100%;
}

.p-system__middle-item-img img {
  -o-object-fit: cover;
  aspect-ratio: 329/204;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-system__middle-item-text {
  background-color: #161616;
  color: #fff;
  font-family: "Noto Sans JP", serif;
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
  letter-spacing: 0.05em;
  line-height: 2;
  padding-bottom: 3px;
  padding-bottom: 0.1875rem;
  padding-top: 3px;
  padding-top: 0.1875rem;
  text-align: center;
}

.p-system__middle-item-comparison {
  display: flex;
  gap: 30px;
  gap: 1.875rem;
  padding: 10px 13px 14px;
  padding: 0.625rem 0.8125rem 0.875rem;
}

.p-system__middle-item-other {
  background-color: #fff7d9;
  border-radius: 0.625rem;
  min-height: 116px;
  min-height: 7.25rem;
  padding-top: 10px;
  padding-top: 0.625rem;
  text-align: center;
  width: 145px;
  width: 9.0625rem;
}

.p-system__middle-item-other-read {
  background-color: #fff;
  border-radius: 100vmax;
  display: inline-block;
  font-family: "Noto Sans JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding-bottom: 0.8px;
  padding-bottom: 0.05rem;
  padding-top: 0.8px;
  padding-top: 0.05rem;
  text-align: center;
  width: 92px;
  width: 5.75rem;
}

.p-system__middle-item-other-price {
  font-family: "Montserrat", serif;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 15px;
  margin-top: 0.9375rem;
  text-align: center;
}

.p-system__middle-item-other-price-small {
  display: inline-block;
  font-family: "Montserrat", serif;
  font-family: "Roboto", sans-serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
}

.p-system__middle-item-company {
  background-color: #fff7d9;
  border-radius: 0.625rem;
  padding-top: 10px;
  padding-top: 0.625rem;
  position: relative;
  text-align: center;
  width: 128px;
  width: 8rem;
}

.p-system__middle-item-company::before {
  background: url(../images/common/system-arrow-right.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 25px;
  height: 1.5625rem;
  left: -27px;
  left: -1.6875rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  width: 1.625rem;
}

.p-system__middle-item-company-read {
  background-color: #FFBB00;
  border-radius: 100vmax;
  color: #fff;
  display: inline-block;
  font-family: "Noto Sans JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding-bottom: 0.8px;
  padding-bottom: 0.05rem;
  padding-top: 0.8px;
  padding-top: 0.05rem;
  text-align: center;
  width: 77px;
  width: 4.8125rem;
}

.p-system__middle-item-company-price {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: -4px;
  margin-top: -0.25rem;
  max-width: 82px;
  max-width: 5.125rem;
  width: 100%;
}

.p-system__middle-item-company-price img {
  -o-object-fit: cover;
  aspect-ratio: 82.64/87.04;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-system__middle-heading-bottom {
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.4;
  position: relative;
  text-align: center;
}

.p-system__middle-items + .p-system__middle-heading-bottom {
  margin-top: 56px;
  margin-top: 3.5rem;
  position: relative;
}

.p-system__middle-items + .p-system__middle-heading-bottom::before {
  background: url(../images/common/system-more.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 71px;
  height: 4.4375rem;
  left: 0;
  left: calc(50% - 10.4375rem);
  position: absolute;
  top: -17px;
  top: -1.0625rem;
  width: 71px;
  width: 4.4375rem;
}

.p-system__middle-heading-bottom-color {
  background: linear-gradient(transparent 0%, #FFF600 0%);
}

.p-system__middle-heading-bottom-large {
  font-size: max(30px, 10px);
  font-size: max(1.875rem, 10px);
  position: relative;
}

.p-system__middle-table {
  border-spacing: 4px;
  border-spacing: 0.25rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 57px;
  margin-top: 3.5625rem;
  position: relative;
}

.p-system__middle-table::before {
  background: url(../images/common/system-dot-line.svg) no-repeat center/cover;
  content: "";
  display: block;
  height: 29.5px;
  height: 1.84375rem;
  left: 50%;
  position: absolute;
  top: -43px;
  top: -2.6875rem;
  transform: translateX(-50%);
  width: 334px;
  width: 20.875rem;
}

.p-system__middle-table-head-company {
  background-color: #161616;
  border-radius: 0.25rem;
  color: #FFF600;
  font-family: "Noto Sans JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  min-height: 44px;
  min-height: 2.75rem;
  padding-bottom: 9.6px;
  padding-bottom: 0.6rem;
  padding-top: 9.6px;
  padding-top: 0.6rem;
  text-align: center;
  text-transform: uppercase;
  width: 114px;
  width: 7.125rem;
}

.p-system__middle-table-head-other {
  background-color: #161616;
  border-radius: 0.25rem;
  color: #fff;
  font-family: "Noto Sans JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding-bottom: 10.85px;
  padding-bottom: 0.678125rem;
  padding-top: 10.85px;
  padding-top: 0.678125rem;
  text-align: center;
  text-transform: uppercase;
  width: 114px;
  width: 7.125rem;
}

.p-system__middle-table-head-row {
  background-color: #FFF600;
  border-radius: 0.25rem;
  font-family: "Noto Sans JP", serif;
  font-size: max(13px, 10px);
  font-size: max(0.8125rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  padding-top: 12px;
  padding-top: 0.75rem;
  text-align: center;
  width: 97px;
  width: 6.0625rem;
}

.p-system__middle-table-data-company-middle {
  background-color: #fff;
  border-radius: 0.25rem;
  color: #FC5800;
  font-family: "Noto Sans JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  min-height: 64px;
  min-height: 4rem;
  text-align: center;
}

.p-system__middle-table-data-company-small {
  color: #161616;
  display: inline-block;
  font-family: "Noto Sans JP", serif;
  font-size: max(10px, 10px);
  font-size: max(0.625rem, 10px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.p-system__middle-table-data-other {
  background-color: #fff;
  border-radius: 0.25rem;
  font-family: "Noto Sans JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1;
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
  padding-top: 18px;
  padding-top: 1.125rem;
  text-align: center;
}

.p-system__middle-table-data-other-note {
  font-size: 8px;
  font-weight: 500;
}

.p-system__middle-table-data-company {
  background-color: #fff;
  border-radius: 0.25rem;
  color: #161616;
  font-size: max(10px, 10px);
  font-size: max(0.625rem, 10px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding-bottom: 9px;
  padding-bottom: 0.5625rem;
  padding-top: 9px;
  padding-top: 0.5625rem;
  text-align: center;
}

.p-system__middle-table-data-company-color {
  color: #FC5800;
  display: inline-block;
  font-family: "Noto Sans JP", serif;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.p-system__middle-table-data-company-color-large {
  color: #FC5800;
  display: inline-block;
  font-family: "Montserrat", serif;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  font-weight: 600;
  line-height: 1;
}

.p-system__middle-table-data-company-color-large02 {
  color: #FC5800;
  font-family: "Noto Sans JP", serif;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  font-weight: 700;
  line-height: 1;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.p-system__bottom {
  margin-top: 46px;
  margin-top: 2.875rem;
  padding-bottom: 65px;
  padding-bottom: 4.0625rem;
}

.p-system__bottom-text {
  background: linear-gradient(transparent 0%, #FFF600 0%);
  font-size: max(22px, 10px);
  font-size: max(1.375rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.p-system__bottom-text-dot {
  background-image: radial-gradient(circle at center, #161616 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top left; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1.04em 0.3em; /* 点の間隔とサイズ調整 */
  font-size: max(28px, 10px);
  font-size: max(1.75rem, 10px);
  padding-top: 0.3em; /* 縦方向の位置調整 */
}

.p-system__bottom-text-small {
  display: inline-block;
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
  line-height: 1.6;
}

.p-system__bottom-text + .p-system__bottom-text {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-system__bottom-text--large {
  font-size: max(28px, 10px);
  font-size: max(1.75rem, 10px);
}

.p-system__bottom-text-color {
  color: #FC5800;
}

.p-system__bottom-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 43px;
  margin-top: 2.6875rem;
  max-width: 342px;
  max-width: 21.375rem;
  width: 100%;
}

.p-system__bottom-img img {
  -o-object-fit: cover;
  aspect-ratio: 342/449;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-system__bottom-repeat {
  background: url(../images/common/system-repeat.webp) no-repeat center/cover;
  height: 226px;
  height: 14.125rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 101px;
  margin-top: 6.3125rem;
  position: relative;
  text-align: center;
  width: 335px;
  width: 20.9375rem;
}

.p-system__bottom-repeat-img {
  display: block;
  left: 50%;
  max-width: 265.82px;
  max-width: 16.61375rem;
  position: absolute;
  top: -54px;
  top: -3.375rem;
  transform: translateX(-50%);
  width: 100%;
}

.p-system__bottom-repeat-img img {
  -o-object-fit: cover;
  aspect-ratio: 265.82/126.89;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-system__bottom-repeat-text {
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
  left: 50%;
  letter-spacing: 0.05em;
  line-height: 1.6;
  position: absolute;
  top: 70px;
  top: 4.375rem;
  transform: translateX(-50%);
  width: 100%;
}

.p-system__bottom-repeat-text-large {
  color: #FC5800;
  font-family: "Montserrat", serif;
  font-size: max(40px, 10px);
  font-size: max(2.5rem, 10px);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  position: relative;
}

.p-system__bottom-repeat-text-large::before {
  background: url(../images/common/system-repeat-decoration.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 33px;
  height: 2.0625rem;
  left: -19px;
  left: -1.1875rem;
  position: absolute;
  top: -10px;
  top: -0.625rem;
  width: 29px;
  width: 1.8125rem;
}

.p-system__bottom-repeat-text-color {
  color: #FC5800;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.p-system__bottom-repeat-note {
  bottom: 11px;
  bottom: 0.6875rem;
  font-family: "Noto Sans JP", serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4;
  position: absolute;
  right: calc(50% - 8.9375rem);
  text-align: right;
}

.p-team {
  background: linear-gradient(90deg, rgba(219, 219, 219, 0.6) 0%, rgba(255, 255, 255, 0.6) 50.48%, rgba(219, 219, 219, 0.6) 100%), #fff;
  padding: 59px 0 41px;
  padding: 3.6875rem 0 2.5625rem;
  position: relative;
}

.p-team__background {
  left: 50%;
  max-width: 204px;
  max-width: 12.75rem;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
}

.p-team__background-shape {
  height: 100%;
  width: 100%;
}

.p-team__background-shape img {
  display: block;
  height: 100%;
  width: 100%;
}

.p-team__inner {
  padding: 0 15px;
  padding: 0 0.9375rem;
  position: relative;
  z-index: 1;
}

.p-team__title {
  align-items: center;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
  justify-content: center;
}

.p-team__title-icon-left,
.p-team__title-icon-right {
  flex-shrink: 0;
  height: 25px;
  height: 1.5625rem;
  width: 15px;
  width: 0.9375rem;
}

.p-team__title-text {
  color: #2D5AA3;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
}

.p-team__photo {
  margin-top: 11px;
  margin-top: 0.6875rem;
}

.p-team__photo-frame {
  box-shadow: 0.25rem 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  max-width: 345px;
  max-width: 21.5625rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.p-team__photo-frame::before {
  border: 8px solid #fff;
  border: 0.5rem solid #fff;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

.p-team__photo-frame img {
  -o-object-fit: cover;
  display: block;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-team__members {
  display: flex;
  flex-direction: column;
  gap: 32px;
  gap: 2rem;
  list-style: none;
  margin: 0;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 0;
}

.p-team__member-card {
  background: #d5ecfb;
  border-radius: 0.625rem;
  display: flex;
  gap: 15px;
  gap: 0.9375rem;
  min-height: 160px;
  min-height: 10rem;
  padding: 16px 15px 16px 13px;
  padding: 1rem 0.9375rem 1rem 0.8125rem;
}

.p-team__member-avatar {
  flex-shrink: 0;
  margin-top: -34px;
  margin-top: -2.125rem;
  max-width: 98px;
  max-width: 6.125rem;
  overflow: hidden;
  width: 100%;
}

.p-team__member-avatar img {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
  border: 3px solid #D5ECFB;
  border: 0.1875rem solid #D5ECFB;
  border-radius: 50%;
     object-fit: cover;
  width: 100%;
}

.p-team__member-name {
  color: #0D2448;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.14285714;
  margin-top: 6px;
  margin-top: 0.375rem;
  padding-right: 3px;
  padding-right: 0.1875rem;
  text-align: center;
}

.p-team__member-name--p0 {
  padding: 0;
}

.p-team__member-message {
  color: #111111;
  flex: 1;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.14285714;
}

.p-team__member-message p {
  margin: 0;
}

.p-team__member-message strong {
  color: #dd2330;
  font-weight: 700;
}

.p-testimonials {
  background: #1F4B91;
  clip-path: polygon(50% 3.5%, 100% 0%, 100% 100%, 0 100%, 0 0);
  overflow: hidden;
  padding: 0 0 82px;
  padding: 0 0 5.125rem;
  position: relative;
}

.p-testimonials__header {
  background-image: url(../images/common/testimonial-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 67px 15px 49px;
  padding: 4.1875rem 0.9375rem 3.0625rem;
  position: relative;
  text-align: center;
}

.p-testimonials__header-top {
  align-items: baseline;
  display: flex;
  padding-right: 3px;
  padding-right: 0.1875rem;
}

.p-testimonials__header-note {
  color: #fff;
  font-size: 8px;
  font-size: 0.5rem;
  font-weight: 400;
  line-height: 1.125;
  margin-top: 7px;
  margin-top: 0.4375rem;
  text-align: left;
}

.p-testimonials__header-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-left: 3px;
  padding-left: 0.1875rem;
}

.p-testimonials__header-join {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.p-testimonials__header-number {
  align-items: center;
  display: flex;
  line-height: normal;
}

.p-testimonials__header-plus {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(180deg, #F2FFB9 14.583%, #D3F92C 84.722%);
  background-clip: text;
  font-family: "Roboto", sans-serif;
  font-size: 40.641px;
  font-size: 2.5400625rem;
  font-weight: 500;
}

.p-testimonials__header-count {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(180deg, #F2FFB9 14.583%, #D3F92C 84.722%);
  background-clip: text;
  font-family: "Roboto", sans-serif;
  font-size: 56px;
  font-size: 3.5rem;
  font-weight: 700;
}

.p-testimonials__header-members {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: normal;
  margin-top: -3px;
  margin-top: -0.1875rem;
}

.p-testimonials__header-tagline {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.p-testimonials__inner {
  padding-left: 15px;
  padding-left: 0.9375rem;
  padding-right: 15px;
  padding-right: 0.9375rem;
  position: relative;
}

.p-testimonials__badge {
  background: #d7f93d;
  border-radius: 0.625rem;
  padding: 13px 20px;
  padding: 0.8125rem 1.25rem;
  position: absolute;
  text-align: center;
  top: -25px;
  top: -1.5625rem;
}

.p-testimonials__badge-text {
  color: #1F4B91;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.p-testimonials__badge-arrow {
  border-left: 10px solid transparent;
  border-left: 0.625rem solid transparent;
  border-right: 10px solid transparent;
  border-right: 0.625rem solid transparent;
  border-top: 12px solid #d7f93d;
  border-top: 0.75rem solid #d7f93d;
  bottom: -12px;
  bottom: -0.75rem;
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
}

.p-testimonials__title {
  align-items: center;
  display: flex;
  gap: 8.5px;
  gap: 0.53125rem;
  justify-content: center;
  padding-right: 6px;
  padding-right: 0.375rem;
  padding-top: 51px;
  padding-top: 3.1875rem;
  position: relative;
  text-align: center;
}

.p-testimonials__title-text {
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: normal;
  position: relative;
  z-index: 1;
}

.p-testimonials__title-arrow {
  max-width: 21.38px;
  max-width: 1.33625rem;
  width: 100%;
}

.p-testimonials__badge-arrow img {
  aspect-ratio: 21.38/27;
  width: 100%;
}

.p-testimonials__cards {
  margin-top: 23px;
  margin-top: 1.4375rem;
}

.p-testimonials__card {
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 24px 16px;
  padding: 1.5rem 1rem;
}

.p-testimonials__card + .p-testimonials__card {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-testimonials__card-top {
  display: flex;
  justify-content: end;
  position: relative;
}

.p-testimonials__card-img {
  left: -20.51px;
  left: -1.281875rem;
  max-width: 169px;
  max-width: 10.5625rem;
  position: absolute;
  top: -31.23px;
  top: -1.951875rem;
  transform: rotate(-4deg);
  width: 100%;
  z-index: 3;
}

.p-testimonials__card-img img {
  aspect-ratio: 169/106;
  width: 100%;
}

.p-testimonials__card-left {
  max-width: 145px;
  max-width: 9.0625rem;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
  width: 100%;
}

.p-testimonials__card-left--pb30 {
  padding-bottom: 30.5px;
  padding-bottom: 1.90625rem;
}

.p-testimonials__card-star {
  max-width: 88px;
  max-width: 5.5rem;
  width: 100%;
}

.p-testimonials__card-star img {
  aspect-ratio: 4/1;
  width: 100%;
}

.p-testimonials__card-name {
  color: #111;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.14285714;
  margin-top: 6px;
  margin-top: 0.375rem;
}

.p-testimonials__card-from {
  display: flex;
  gap: 4px;
  gap: 0.25rem;
  margin-top: 7px;
  margin-top: 0.4375rem;
}

.p-testimonials__card-from img {
  aspect-ratio: 19/12;
  max-width: 19px;
  max-width: 1.1875rem;
  width: 100%;
}

.p-testimonials__card-from p {
  color: #111;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.16666667;
}

.p-testimonials__card-bottom {
  border-top: 1px solid #CCC;
  padding-top: 15px;
  padding-top: 0.9375rem;
}

.p-testimonials__card-head {
  color: #2D5AA3;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.16666667;
}

.p-testimonials__card-text {
  color: #111;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.16666667;
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-testimonials__high-light {
  color: #DD2330;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}

.p-use {
  background-color: #fff;
  padding-top: 66px;
  padding-top: 4.125rem;
}

.p-use__head {
  background: url(../images/common/use-head-bg.webp) no-repeat center/cover;
  border-radius: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 75.74px;
  margin-top: 4.73375rem;
  max-width: 335px;
  max-width: 20.9375rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
}

.p-use__heading {
  background: url(../images/common/use-head-balloon.svg) no-repeat center/contain;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  min-height: 92px;
  min-height: 5.75rem;
  padding-top: 12px;
  padding-top: 0.75rem;
  text-align: center;
  transform: translateY(-2.6875rem);
}

.p-use__heading-color {
  color: #FC5800;
}

.p-use__head-text {
  align-items: center;
  display: flex;
  font-family: "Noto Sans JP", serif;
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
  gap: 6px;
  gap: 0.375rem;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-top: -33px;
  margin-top: -2.0625rem;
}

.p-use__head-text::before,
.p-use__head-text::after {
  content: "";
  display: inline-block;
  height: 22px;
  height: 1.375rem;
  width: 18.23px;
  width: 1.139375rem;
}

.p-use__head-text::before {
  background: url(../images/common/use-left-head.svg) no-repeat center/contain;
}

.p-use__head-text::after {
  background: url(../images/common/use-right-head.svg) no-repeat center/contain;
}

.p-use__head-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: -7px;
  margin-top: -0.4375rem;
  max-width: 163.45px;
  max-width: 10.215625rem;
  width: 100%;
}

.p-use__head-img img {
  -o-object-fit: cover;
  aspect-ratio: 163.45/123.91;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-use__info-wrap {
  margin-top: -10px;
  margin-top: -0.625rem;
}

.p-use__info {
  align-items: center;
  background-color: #fff;
  border-radius: 100vmax;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  max-width: 242px;
  max-width: 15.125rem;
  padding: 2px;
  padding: 0.125rem;
}

.p-use__info + .p-use__info {
  margin-top: 4px;
  margin-top: 0.25rem;
}

.p-use__term {
  background-color: #FFE06D;
  border-radius: 100vmax;
  font-family: "Noto Sans JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding: 3.8px;
  padding: 0.2375rem;
  text-align: center;
  width: 109px;
  width: 6.8125rem;
}

.p-use__description {
  color: #FC5800;
  flex: 1;
  font-family: "Noto Sans JP", serif;
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-left: 45px;
  margin-left: 2.8125rem;
}

.p-use__description-small {
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
}

.p-use__info + .p-use__info .p-use__description {
  margin-left: 21px;
  margin-left: 1.3125rem;
}

.p-use__note {
  font-family: "Noto Sans JP", serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 8px;
  margin-top: 0.5rem;
  text-align: center;
}

.p-use__bottom {
  background-color: #FFF7D9;
  margin-top: 117px;
  margin-top: 7.3125rem;
  padding-bottom: 64px;
  padding-bottom: 4rem;
}

.p-use__bottom-title {
  background: url(../images/common/use-bottom-balloon.svg) no-repeat center/contain;
  font-size: max(24px, 10px);
  font-size: max(1.5rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  min-height: 109px;
  min-height: 6.8125rem;
  padding-top: 9px;
  padding-top: 0.5625rem;
  text-align: center;
  transform: translateY(-3.375rem);
}

.p-use__bottom-item {
  background-color: #fff;
  border-radius: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 98px;
  margin-top: 6.125rem;
  max-width: 335px;
  max-width: 20.9375rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  position: relative;
  text-align: center;
}

.p-use__bottom-item:first-of-type {
  margin-top: 3px;
  margin-top: 0.1875rem;
}

.p-use__bottom-item:nth-of-type(2)::before,
.p-use__bottom-item:nth-of-type(3)::before {
  background: url(../images/common/use-bottom-arrow.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 35px;
  height: 2.1875rem;
  left: 50%;
  position: absolute;
  top: -78px;
  top: -4.875rem;
  transform: translateX(-50%);
  width: 55px;
  width: 3.4375rem;
}

.p-use__bottom-item-head {
  align-items: center;
  background-color: #FFF600;
  border: 2px solid #161616;
  border: 0.125rem solid #161616;
  border-radius: 100vmax;
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", serif;
  height: 65px;
  height: 4.0625rem;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: -25px;
  top: -1.5625rem;
  transform: translateX(-50%);
  width: 65px;
  width: 4.0625rem;
}

.p-use__bottom-item-read {
  display: inline-block;
  font-size: max(12.08px, 10px);
  font-size: max(0.755rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.p-use__bottom-item-number {
  display: inline-block;
  font-size: max(25.98px, 10px);
  font-size: max(1.62375rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-use__bottom-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

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

.p-use__bottom-img--01 {
  max-width: 188px;
  max-width: 11.75rem;
  max-width: 207px;
  max-width: 12.9375rem;
  padding-top: 58px;
  padding-top: 3.625rem;
}

.p-use__bottom-img--01 img {
  aspect-ratio: 207/106;
}

.p-use__bottom-img--02 {
  max-width: 207.47px;
  max-width: 12.966875rem;
  padding-top: 55px;
  padding-top: 3.4375rem;
}

.p-use__bottom-img--02 img {
  aspect-ratio: 207.47/126.28;
}

.p-use__bottom-img--03 {
  max-width: 261.779px;
  max-width: 16.36125rem;
  padding-top: 57px;
  padding-top: 3.5625rem;
}

.p-use__bottom-img--03 img {
  aspect-ratio: 261.78/118;
}

.p-use__bottom-item-text {
  font-family: "Noto Sans JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.p-use__bottom-item:nth-of-type(1) .p-use__bottom-item-text {
  margin-top: 27px;
  margin-top: 1.6875rem;
}

.p-use__bottom-item:nth-of-type(2) .p-use__bottom-item-text {
  margin-top: 17.72px;
  margin-top: 1.1075rem;
}

.p-use__bottom-item:nth-of-type(3) .p-use__bottom-item-text {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-use__bottom-box {
  background: url(../images/common/use-bottom-box-bg.webp) no-repeat center/cover;
  height: 311px;
  height: 19.4375rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 48px;
  margin-top: 3rem;
  position: relative;
  width: 335px;
  width: 20.9375rem;
}

.p-use__bottom-box-head {
  display: flex;
}

.p-use__bottom-box-text {
  color: #FC5800;
  font-family: "Noto Sans JP", serif;
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-left: 33px;
  margin-left: 2.0625rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  position: relative;
}

.p-use__bottom-box-text::before {
  background: url(../images/common/use-bottom-decoration.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 23px;
  height: 1.4375rem;
  left: -13px;
  left: -0.8125rem;
  position: absolute;
  top: -15px;
  top: -0.9375rem;
  width: 30px;
  width: 1.875rem;
}

.p-use__bottom-box-text::after {
  background: url(../images/common/use-bottom-line.svg) no-repeat center/contain;
  bottom: -22px;
  bottom: -1.375rem;
  content: "";
  display: block;
  height: 6px;
  height: 0.375rem;
  left: -6px;
  left: -0.375rem;
  position: absolute;
  width: 208px;
  width: 13rem;
}

.p-use__bottom-box-img {
  display: block;
  max-width: 68.55px;
  max-width: 4.284375rem;
  position: absolute;
  right: 23px;
  right: 1.4375rem;
  top: -5px;
  top: -0.3125rem;
  width: 100%;
}

.p-use__bottom-box-img img {
  -o-object-fit: cover;
  aspect-ratio: 68.55/98.65;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-use__bottom-box-items {
  margin-left: 22px;
  margin-left: 1.375rem;
  margin-top: 44px;
  margin-top: 2.75rem;
}

.p-use__bottom-box-item {
  align-items: center;
  display: flex;
  font-family: "Noto Sans JP", serif;
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  gap: 8.16px;
  gap: 0.51rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.p-use__bottom-box-item + .p-use__bottom-box-item {
  margin-top: 17px;
  margin-top: 1.0625rem;
}

.p-use__bottom-box-item::before {
  background: url(../images/common/use-bottom-check.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 24.98px;
  height: 1.56125rem;
  width: 24.98px;
  width: 1.56125rem;
}

.p-voice {
  background-color: #FFF7D9;
  padding-bottom: 64px;
  padding-bottom: 4rem;
  padding-top: 64px;
  padding-top: 4rem;
}

.p-voice__head-items {
  margin-top: 40.74px;
  margin-top: 2.54625rem;
}

.p-voice__head-item {
  background-color: #fff;
  border-radius: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 335px;
  max-width: 20.9375rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  padding-top: 10px;
  padding-top: 0.625rem;
  text-align: center;
}

.p-voice__head-item + .p-voice__head-item {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-voice__head-item-title {
  color: #FFEEAE;
  font-family: "Montserrat", serif;
  font-size: max(60px, 10px);
  font-size: max(3.75rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.p-voice__head-item-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
  margin-top: 0.3125rem;
  max-width: 110px;
  max-width: 6.875rem;
  width: 100%;
}

.p-voice__head-item-img img {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-voice__head-item-profile {
  background-color: #FFF600;
  border-radius: 100vmax;
  display: inline-block;
  font-family: "Noto Sans JP", serif;
  font-size: max(12px, 10px);
  font-size: max(0.75rem, 10px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 16px;
  margin-top: 1rem;
  padding: 4px 16px;
  padding: 0.25rem 1rem;
}

.p-voice__head-item-text {
  font-family: "Noto Sans JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  margin-top: 1rem;
  max-width: 287px;
  max-width: 17.9375rem;
  text-align: left;
}

.p-voice__influencer {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-voice__influencer-text {
  font-size: max(20px, 10px);
  font-size: max(1.25rem, 10px);
  line-height: 1.8;
  text-align: center;
}

.p-voice__influencer-text-bg-color {
  background: linear-gradient(90deg, #7323F5 0%, #EA3A67 51%, #EE7D31 100%);
  border-radius: 0.25rem;
  color: #fff;
  display: inline-block;
  padding-left: 1.109px;
  padding-left: 0.0693359313rem;
  padding-right: 1.109px;
  padding-right: 0.0693359313rem;
}

.p-voice__influencer-text-small {
  display: inline-block;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  line-height: 1.8;
}

.p-voice__influencer-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 74px;
  margin-top: 4.625rem;
  max-width: 335px;
  max-width: 20.9375rem;
  position: relative;
  width: 100%;
}

.p-voice__influencer-img img {
  -o-object-fit: cover;
  aspect-ratio: 335/378;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-voice__influencer-img::before {
  background: url(../images/common/voice-arrow-line.svg) no-repeat center/cover;
  content: "";
  display: block;
  height: 29.5px;
  height: 1.84375rem;
  left: 50%;
  position: absolute;
  top: -57px;
  top: -3.5625rem;
  transform: translateX(-50%);
  width: 334px;
  width: 20.875rem;
}

.p-voice__staff {
  margin-top: 64px;
  margin-top: 4rem;
}

.p-voice__staff-title {
  background: url(../images/common/voice-balloon.svg) no-repeat center/contain;
  font-size: max(22px, 10px);
  font-size: max(1.375rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1.8;
  min-height: 85px;
  min-height: 5.3125rem;
  padding-top: 16px;
  padding-top: 1rem;
  text-align: center;
}

.p-voice__staff-items {
  background-color: #fff;
  border-radius: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  margin-top: 1rem;
  max-width: 335px;
  max-width: 20.9375rem;
}

.p-voice__staff-item {
  padding: 32px 24px;
  padding: 2rem 1.5rem;
}

.p-voice__staff-item + .p-voice__staff-item {
  position: relative;
}

.p-voice__staff-item + .p-voice__staff-item::before {
  background: url(../images/common/voice-line.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 287px;
  width: 17.9375rem;
}

.p-voice__staff-item-info {
  align-items: center;
  display: flex;
  gap: 30px;
  gap: 1.875rem;
}

.p-voice__staff-item-img {
  display: block;
  max-width: 80px;
  max-width: 5rem;
  width: 100%;
}

.p-voice__staff-item-img img {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-voice__staff-item-name {
  font-family: "Noto Sans JP", serif;
  font-size: max(18px, 10px);
  font-size: max(1.125rem, 10px);
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-voice__staff-item-hoby {
  align-items: center;
  display: flex;
  gap: 36px;
  gap: 2.25rem;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-voice__staff-item-hoby-read,
.p-voice__staff-item-hoby-text {
  font-family: "Noto Sans JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-voice__staff-item-hoby-text {
  position: relative;
}

.p-voice__staff-item-hoby-text::before {
  background: url(../images/common/voice-arrow.svg) no-repeat center/contain;
  content: "";
  display: block;
  height: 9px;
  height: 0.5625rem;
  left: -30px;
  left: -1.875rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  width: 1.375rem;
}

.p-voice__staff-item-text {
  background-color: #F6F6F6;
  border-radius: 0.625rem;
  font-family: "Noto Sans JP", serif;
  font-size: max(14px, 10px);
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 16px;
  margin-top: 1rem;
  padding: 16px;
  padding: 1rem;
}

.js-fadein {
  opacity: 0;
  transform: translateY(3.125rem);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  will-change: opacity, transform;
}

.js-fadein.is-scrollin {
  opacity: 1;
  transform: translateY(0);
}

.main-content {
  background-color: #fff;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .main-content {
    box-shadow: 0px 0px 2.5rem rgba(0, 0, 0, 0.15);
    margin-left: 0;
    max-width: min(48.828125vw, 700px);
    max-width: min(48.828125vw, 43.75rem);
    position: relative;
    width: auto;
    width: initial;
  }
}
@media (min-width: 1000.02px) {
  .main-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 26.0416666667vw;
  }
}
@media (min-width: 1440px) {
  .main-content {
    max-width: 375px;
    max-width: 23.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .site-fixed-content {
    background-image: linear-gradient(90deg, #2d5aa3 50%, #D3ED5A 50%);
    height: 100%;
    left: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .site-inner {
    display: flex;
    height: 100%;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    max-width: 1440px;
    max-width: 90rem;
  }
}
@media (min-width: 1000.02px) {
  .site-inner {
    max-width: 1440px;
    max-width: 90rem;
    position: relative;
  }
}

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

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

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