@charset "UTF-8";
html {
  scroll-behavior: smooth;
}
@media screen and (max-width: 1439px) and (min-width: 767px) {
  html {
    font-size: min(1600 / 1440 * 1vw, 18px);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: clamp(12px, 1600 / 375 * 1vw, 16px);
  }
}

body {
  color: #333333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background: #fff;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: #333333;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

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

img,
svg {
  width: 100%;
  height: 100%;
}

button {
  color: inherit;
  background: transparent;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

.l-header {
  position: absolute;
  z-index: 100;
  top: 1.25rem;
  left: 0;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .l-header {
    top: 0.625rem;
  }
}

.l-header__inner {
  display: grid;
  grid-template-columns: 6.0625rem 1fr;
  align-items: center;
}

.l-header__logo {
  width: max(80px, 6.0625rem);
  height: auto;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 5.5625rem;
    height: 2.5rem;
  }
}

.l-header__nav {
  display: flex;
  align-items: center;
  justify-content: end;
}

.l-header__list {
  display: flex;
  align-items: center;
  column-gap: 1.875rem;
}
.l-header__list li a {
  font-size: max(12px, 1rem);
  line-height: 100%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-header__list li a {
    font-size: 0.875rem;
  }
}

.l-header__btn {
  margin-left: 1.875rem;
}

.l-drawer__icon {
  position: absolute;
  z-index: 102;
  top: 1.25rem;
  right: 1.25rem;
  width: 28px;
  height: 19px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.l-drawer__icon--bar {
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.5s ease;
}

.l-drawer__icon.js-show .l-drawer__icon--bar {
  background: #1D2F53;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 8.5px;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -8.5px;
}

.l-drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: #fff;
  overflow-y: scroll;
  translate: 101%;
  transition: translate 0.5s ease;
}
.l-drawer.js-show {
  translate: 0;
}

.l-drawer__body {
  width: 100%;
  height: fit-content;
  padding: 4.125rem 1rem 3.125rem;
}

.l-drawer__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
  padding-inline: 1.5rem;
}
.l-drawer__list li a {
  width: 100%;
  padding-block: 1.5rem;
  border-bottom: 1px solid #DDDDDD;
  color: #1D2F53;
  font-size: 1rem;
}

.l-drawer__btn {
  margin-inline: auto;
}

.l-inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: inherit;
  padding: 0 10.625rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 1rem !important;
    max-width: 550px;
  }
}

.l-footer {
  text-align: center;
  color: #fff;
  font-size: max(12px, 0.75rem);
  padding-block: 1.0625rem 1rem;
  background: #1D2F53;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .l-footer {
    font-size: 0.625rem;
    padding-block: 1.25rem;
  }
}

.l-section {
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding-block: 3.125rem 5rem;
  }
}

.c-cta {
  background: url("../img/bg_cta.webp") no-repeat top center/cover;
  padding-block: 5rem 5.25rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-cta {
    padding-block: 3.125rem;
  }
}

.c-cta__title {
  font-size: max(22px, 2rem);
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .c-cta__title {
    font-size: 1.25rem;
    line-height: 150%;
  }
}

.c-cta__text {
  margin-top: 2.5rem;
  font-size: max(12px, 1rem);
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .c-cta__text {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    line-height: 150%;
  }
}

.c-cta__btn {
  margin-top: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .c-cta__btn {
    margin-top: 1.875rem;
  }
}

/* アニメーション前の初期状態 */
.animated__fadeIn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* アニメーション後の表示状態 */
.animated__fadeIn.js-show {
  opacity: 1;
  transform: translateY(0);
}

.c-title {
  text-align: center;
  position: relative;
}

.c-title__en {
  font-family: "Poppins", sans-serif;
  font-size: 7.5rem;
  font-weight: 400;
  line-height: 100%;
  background: linear-gradient(90deg, rgba(64, 145, 231, 0.25) 0%, rgba(36, 203, 206, 0.25) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-title__en {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title__en.--small {
    font-size: 2.8125rem;
  }
}

.c-title__ja {
  position: absolute;
  bottom: 1.0625rem;
  left: 50%;
  translate: -50%;
  color: #1D2F53;
  font-size: 2rem;
  line-height: 100%; /* 32px */
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-title__ja {
    bottom: 0.375rem;
    font-size: 1.25rem;
  }
}

.c-blue {
  color: #4091e7;
}

.c-navy {
  color: #116ca6;
}

.c-btn, .c-btn--small {
  width: max(250px, 25rem);
  border-radius: 0.625rem;
  background: linear-gradient(88deg, #f4816a 0.02%, #f2233b 94.87%);
  padding: 1.4375rem 1rem 1.5625rem 3.0625rem;
  color: #fff;
  font-size: max(12px, 1.25rem);
  line-height: 100%;
  letter-spacing: 0.001em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3125rem;
  transition: background 0.3s ease, opacity 0.3s;
}
.c-btn::after, .c-btn--small::after {
  content: "";
  background: url("../img/icon_arrow.svg") no-repeat top center/contain;
  width: 14px;
  height: 11px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-btn, .c-btn--small {
    width: 21.4375rem;
    padding: 1.1875rem 0.875rem 1.1875rem 3.125rem;
    font-size: 1rem;
    gap: 1.75rem;
  }
  .c-btn::after, .c-btn--small::after {
    width: 12px;
    height: 8px;
  }
}
@media (any-hover: hover) {
  .c-btn:hover, .c-btn--small:hover {
    opacity: 0.7;
  }
}
.c-btn--small {
  width: max(220px, 20rem);
  border-radius: 0.5rem;
  padding: 0.6875rem 1rem 0.6875rem 2.5rem;
  font-size: max(12px, 1rem);
  letter-spacing: normal;
  gap: 1.125rem;
}
.c-btn--small::after {
  width: 8px;
  height: 6px;
}

.p-faq__wrap {
  margin-top: 3.8125rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-faq__wrap {
    margin-top: 2rem;
    gap: 1.875rem;
  }
}

.p-faq__item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 4.0625rem;
  grid-row-gap: 1.875rem;
  padding-bottom: 2.5rem;
  background-image: linear-gradient(to right, #4091e7 5px, transparent 5px);
  background-size: 10px 1.5px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media screen and (max-width: 767px) {
  .p-faq__item {
    grid-column-gap: 0.625rem;
    grid-row-gap: 1.25rem;
    padding-bottom: 1.875rem;
  }
}
.p-faq__item:first-of-type {
  padding-top: 2.5rem;
  border-top: 0.125rem solid #4091e7;
}
@media screen and (max-width: 767px) {
  .p-faq__item:first-of-type {
    padding-top: 1.875rem;
  }
}

.p-faq__num {
  grid-area: 1/1/3/2;
  font-family: "Poppins", sans-serif;
  color: #4091e7;
  font-size: 2rem;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .p-faq__num {
    grid-area: 1/1/2/2;
  }
}

.p-faq__item-title {
  grid-area: 1/2/2/3;
  font-size: max(16px, 1.5rem);
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .p-faq__item-title {
    grid-area: 1/2/2/3;
    font-size: 1rem;
    line-height: 150%;
  }
}

.p-faq__item-text {
  grid-area: 2/2/3/3;
  font-size: max(12px, 1rem);
  line-height: 140%;
}
@media screen and (max-width: 767px) {
  .p-faq__item-text {
    grid-area: 2/1/3/3;
    font-size: 0.875rem;
    margin-inline: 0.5rem;
  }
}
.p-faq__item-text .u-pc {
  display: none;
}
@media screen and (min-width: 1000px) {
  .p-faq__item-text .u-pc {
    display: block;
  }
}

.p-features {
  padding-block: 6.625rem 7rem;
  background: linear-gradient(180deg, #fff 0%, #f3f8ff 40.14%);
}
@media screen and (max-width: 767px) {
  .p-features {
    padding-block: 3.5rem 5rem;
  }
}

.p-features__message {
  position: relative;
  margin-bottom: 5.3125rem;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-features__message {
    margin-bottom: 3.75rem;
  }
}
.p-features__message::before, .p-features__message::after {
  content: "";
  position: absolute;
  width: 7.4375rem;
  height: 0.125rem;
  background: linear-gradient(90deg, #4091e7 0%, #24cbce 100%);
  top: 55%;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .p-features__message::before, .p-features__message::after {
    width: 3.75rem;
    top: unset;
    translate: unset;
    bottom: 1.6875rem;
  }
}
.p-features__message::before {
  transform: rotate(70deg);
  left: -5rem;
}
@media screen and (max-width: 767px) {
  .p-features__message::before {
    left: -3.375rem;
  }
}
.p-features__message::after {
  transform: rotate(-70deg);
  right: -5rem;
}
@media screen and (max-width: 767px) {
  .p-features__message::after {
    right: -3.375rem;
  }
}

.p-features__message-wrap {
  text-align: center;
  font-size: 2rem;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .p-features__message-wrap {
    font-size: 1.25rem;
    line-height: 150%;
  }
  .p-features__message-wrap p {
    display: inline;
    font-size: 1.25rem;
  }
}
.p-features__message-wrap span {
  color: #fff;
  font-size: 2.625rem;
  line-height: 100%; /* 32px */
  padding: 0.5625rem 0.625rem 0.5rem;
  background: linear-gradient(90deg, #4091e7 0%, #24cbce 100%);
  display: inline-block;
  margin-bottom: 1.25rem;
  margin-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-features__message-wrap span {
    padding: 0.3125rem;
    font-size: 1.25rem;
    margin-bottom: 0.5625rem;
    margin-right: 0.1875rem;
  }
}
.p-features__message-wrap span small {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-features__message-wrap span small {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-features__message-wrap span:has(small) {
    margin-right: 0;
    padding: 0.1875rem 0.3125rem 0.25rem;
  }
}

.p-features__wrap {
  margin-top: 3.6875rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-features__wrap {
    margin-top: 2.5rem;
    gap: 2.5rem;
  }
}

.p-features__item {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-features__item {
    flex-direction: column-reverse;
    gap: 0.625rem;
  }
}
.p-features__item img {
  width: 30.625rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-features__item img {
    width: 100%;
  }
}
.p-features__item:nth-of-type(2) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-features__item:nth-of-type(2) {
    flex-direction: column-reverse;
  }
}
.p-features__item:nth-of-type(2) .p-features__num {
  right: 0;
  left: unset;
}
.p-features__item:last-of-type img {
  width: 30.1875rem;
  margin-left: 4.5625rem;
}
@media screen and (max-width: 767px) {
  .p-features__item:last-of-type img {
    width: 100%;
    margin-left: 0;
  }
}

.p-features__item-body {
  max-width: 34.375rem;
}

.p-features__item:last-of-type .p-features__item-body {
  max-width: 36.75rem;
}

.p-features__title {
  padding-top: 3.6875rem;
  position: relative;
  color: #4091e7;
  font-size: max(14px, 1.75rem);
  line-height: 160%; /* 44.8px */
}
@media screen and (max-width: 767px) {
  .p-features__title {
    padding-top: 1.1875rem;
    font-size: 1.25rem;
  }
}

.p-features__num {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Poppins", sans-serif;
  font-size: 7.5rem;
  font-weight: 400;
  line-height: 100%; /* 120px */
  background: linear-gradient(90deg, rgba(64, 145, 231, 0.2) 0%, rgba(36, 203, 206, 0.2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-features__num {
    font-size: 3.75rem;
    right: 0;
    left: unset;
  }
}

.p-features__text {
  margin-top: 1.625rem;
  font-size: max(12px, 1rem);
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .p-features__text {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    line-height: 150%;
  }
}
.p-features__text br {
  display: none;
}
@media screen and (min-width: 900px) {
  .p-features__text br {
    display: block;
  }
}

.p-flow {
  background: url("../img/bg_flow.webp") no-repeat top center/cover;
}

.p-flow__text {
  margin-top: 1.875rem;
  text-align: center;
  font-size: max(12px, 1rem);
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .p-flow__text {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    line-height: 150%;
  }
}

.p-flow__wrap {
  margin-top: 3.125rem;
  display: flex;
  flex-direction: column;
  gap: 2.3125rem;
}
@media screen and (max-width: 767px) {
  .p-flow__wrap {
    margin-top: 2.5rem;
    gap: 2.5625rem;
  }
}

.p-flow__item {
  display: flex;
  gap: 3.6875rem;
  padding: 2.25rem 3.75rem 2.25rem;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-flow__item {
    padding: 1.3125rem 1.0625rem 1.875rem 1.125rem;
    flex-direction: column;
    gap: 0.375rem;
  }
}
.p-flow__item::after {
  content: "";
  position: absolute;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: #fff;
  width: 6.5rem;
  height: 2.625rem;
  bottom: -1.1875rem;
  left: 50%;
  translate: -50%;
}
.p-flow__item:last-of-type::after {
  display: none;
}

.p-flow__item-head {
  display: flex;
  gap: 3.6875rem;
}
@media screen and (max-width: 767px) {
  .p-flow__item-head {
    gap: 0;
  }
}

.p-flow__num {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  background: linear-gradient(90deg, #3675ba 0%, #24cbce 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.p-flow__num span {
  display: block;
  line-height: 100%;
}
.p-flow__num span:nth-of-type(1) {
  font-size: max(12px, 1.25rem);
}
@media screen and (max-width: 767px) {
  .p-flow__num span:nth-of-type(1) {
    font-size: 1.25rem;
  }
}
.p-flow__num span:nth-of-type(2) {
  font-size: max(20px, 2rem);
}
@media screen and (max-width: 767px) {
  .p-flow__num span:nth-of-type(2) {
    font-size: 2rem;
  }
}

.p-flow__img {
  width: 6.25rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-flow__img {
    width: 3.75rem;
    margin-inline: auto;
    transform: translateX(-1.4375rem);
  }
}

.p-flow__item-body {
  margin-left: 3.5rem;
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-flow__item-body {
    margin-top: 0;
    margin-left: 0rem;
  }
}
.p-flow__item-body .title {
  font-size: max(16px, 1.5rem);
}
@media screen and (max-width: 767px) {
  .p-flow__item-body .title {
    text-align: center;
    font-size: 1rem;
  }
}
.p-flow__item-body .text {
  margin-top: 1.625rem;
  font-size: max(12px, 1rem);
}
@media screen and (max-width: 767px) {
  .p-flow__item-body .text {
    margin-top: 0.4375rem;
    font-size: 0.875rem;
  }
}

.p-fv {
  padding-block: 12.5rem 5.4375rem;
  text-align: center;
  background: url("../img/bg_fv.webp") no-repeat center center/cover;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-fv {
    padding-block: 9.375rem 3.125rem;
    background: url("../img/bg_fv_sp.webp") no-repeat center center/cover;
  }
}

.p-fv__title {
  font-size: 4rem;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .p-fv__title {
    font-size: 2.25rem;
    line-height: 140%;
  }
}

.p-fv__text {
  margin-top: 1.875rem;
  font-size: 1.5rem;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .p-fv__text {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.p-fv__wrap {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-fv__wrap {
    margin-top: 5.875rem;
    gap: 0;
  }
}

.p-fv__item {
  width: max(120px, 13.125rem);
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-fv__item {
    width: 7.125rem;
  }
}

.p-fv__btn {
  position: absolute;
  left: 50%;
  translate: -50%;
  bottom: -1.9375rem;
}
@media screen and (max-width: 767px) {
  .p-fv__btn {
    position: fixed;
    bottom: 0.625rem;
    left: 50%;
    translate: -50%;
    z-index: 90;
    opacity: 0;
    pointer-events: none;
  }
  .p-fv__btn.js-show {
    opacity: 1;
    pointer-events: auto;
  }
}

.p-fv__contact {
  position: fixed;
  width: min(12rem, 192px);
  height: auto;
  right: 1.3125rem;
  bottom: 0.625rem;
  z-index: 90;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-fv__contact:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__contact {
    display: none;
  }
}

.p-introduction {
  padding: 5.625rem 0 3.625rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-introduction {
    padding: 4.9375rem 0 3.8125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-introduction__inner {
    padding: 0 0.75rem !important;
  }
}

.p-introduction__swiper-container,
.p-introduction__swiper,
.p-introduction__swiper-wrapper,
.p-introduction__swiper-slide {
  position: relative;
}

.p-introduction__swiper-container {
  margin-top: 3.75rem;
  width: 100vw;
  height: auto;
  margin-left: calc((100vw - 100%) / 2 * -1);
}
@media screen and (max-width: 767px) {
  .p-introduction__swiper-container {
    margin-top: 2.5rem;
  }
}

.p-introduction__swiper-wrapper {
  transition-timing-function: linear;
}

.p-introduction__swiper-slide {
  width: auto;
  height: 10.625rem;
}
@media screen and (max-width: 767px) {
  .p-introduction__swiper-slide {
    height: 4rem;
  }
}
.p-introduction__swiper-slide img {
  width: auto;
  height: 5rem;
  object-fit: cover;
  display: block;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-introduction__swiper-slide img {
    height: 2.5rem;
  }
}
.p-introduction__swiper-slide p {
  text-align: center;
  font-size: max(12px, 0.875rem);
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .p-introduction__swiper-slide p {
    font-size: 0.75rem;
  }
}

.p-message__top {
  background: url("../img/bg_message.webp") no-repeat top center/cover;
  padding-block: 7.125rem 6.875rem;
  text-align: center;
  color: #fff;
  position: relative;
}
@media screen and (min-width: 1700px) {
  .p-message__top {
    padding-block: 160px 130px;
  }
}
@media screen and (max-width: 767px) {
  .p-message__top {
    background: url("../img/bg_message_sp.webp") no-repeat top center/cover;
    padding-block: 7.5rem 4.375rem;
  }
}
@media screen and (max-width: 499px) {
  .p-message__top {
    background: url("../img/bg_message_sp.webp") no-repeat top center/cover;
    padding-block: 3.75rem;
  }
}
.p-message__top::after {
  content: "";
  position: absolute;
  background: url("../img/message-bubble02.webp") no-repeat top center/contain;
  width: 23.9375rem;
  height: 6rem;
  bottom: -3.375rem;
  left: 50%;
  translate: -50%;
}
@media screen and (max-width: 767px) {
  .p-message__top::after {
    background: url("../img/message-bubble02_sp.webp") no-repeat top center/contain;
    width: 21.875rem;
    height: 5.25rem;
    bottom: -2.6875rem;
  }
}

.p-message__top-title {
  font-size: 1.5rem;
  line-height: 100%;
  letter-spacing: 0.004em;
  padding-top: 3.625rem;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-message__top-title {
    font-size: 1rem;
    padding-top: 5.75rem;
  }
}
.p-message__top-title span {
  margin-top: 1.875rem;
  margin-right: 0.5rem;
  border: 0.0625rem solid #fff;
  padding: 0.8125rem 0.5rem 0.9375rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-message__top-title span {
    margin-top: 0.5625rem;
    margin-right: 0.3125rem;
    font-size: 1.25rem;
    padding: 0.6875rem 0.5625rem;
  }
}
.p-message__top-title::before {
  content: "";
  position: absolute;
  background: url("../img/message-bubble01.webp") no-repeat top center/contain;
  width: 6.375rem;
  height: 6.375rem;
  top: 0;
  left: -6.25rem;
}
@media screen and (max-width: 767px) {
  .p-message__top-title::before {
    width: 5.125rem;
    height: 5.125rem;
    left: -1.125rem;
  }
}

.p-plan__top-wrap {
  margin-top: 2.6875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.0625rem;
}
@media screen and (max-width: 767px) {
  .p-plan__top-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.1875rem;
  }
}

.p-plan__top-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-plan__top-item {
    gap: 0.375rem;
  }
}
.p-plan__top-item img {
  display: block;
  width: 7.1875rem;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-plan__top-item img {
    width: 6.25rem;
  }
}

.p-plan__top-item:first-of-type {
  padding: 2.125rem 3.8125rem 2.375rem;
  background: #f4f9ff;
  filter: drop-shadow(0px 0px 10px rgba(28, 75, 142, 0.3));
  color: #4091e7;
}
@media screen and (max-width: 767px) {
  .p-plan__top-item:first-of-type {
    padding: 1.875rem 1.25rem;
  }
}

.p-plan__top-item:nth-of-type(2) {
  padding: 2.125rem 2.1875rem 2.375rem;
  background: url(../img/bg_cta.webp) no-repeat top center/cover !important;
  filter: drop-shadow(0px 0px 10px rgba(28, 75, 142, 0.3));
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-plan__top-item:nth-of-type(2) {
    padding: 1.875rem 1.25rem;
  }
}

.p-plan__top-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-plan__top-title {
    line-height: 100%;
  }
}

.p-plan__top-message {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-plan__top-message {
    font-size: 1rem;
    line-height: 150%;
  }
}

.p-plan__top-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 160%;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-plan__top-text {
    font-size: 0.875rem;
    line-height: 150%;
  }
}

.p-plan__text {
  margin-top: 5rem;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  line-height: 140%; /* 33.6px */
  padding: 1rem;
  background: linear-gradient(90deg, #4091e7 0%, #24cbce 100%), #7d7d7d;
}
@media screen and (max-width: 767px) {
  .p-plan__text {
    margin-top: 3.125rem;
    font-size: 1rem;
    padding: 0.625rem;
  }
}

.p-plan__table {
  margin-top: 2.1875rem;
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-plan__table {
    margin-top: 1.875rem;
  }
}

.table-header {
  display: flex;
  gap: 0.625rem;
  justify-content: end;
  font-size: 1.5rem;
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .table-header {
    gap: 0.375rem;
    font-size: 0.875rem;
  }
}
.table-header div {
  width: 22.5rem;
  display: grid;
  place-items: center;
  padding-block: 1.125rem;
  background: #f2f8ff;
}
@media screen and (max-width: 767px) {
  .table-header div {
    padding: 0.625rem;
    width: min(17.3333333333vw, 100px);
    font-size: 1rem;
  }
}
.table-header div span {
  font-size: max(16px, 1.5rem);
  line-height: 100%;
}
@media screen and (max-width: 767px) {
  .table-header div span {
    width: 17px;
    font-size: 16px;
    writing-mode: vertical-rl;
    font-feature-settings: "vrt2" on;
    text-orientation: upright;
    letter-spacing: 2px;
  }
}
.table-header .report01 {
  background: #e4f1ff !important;
  color: #4091e7;
  font-size: 16px;
}
.table-header .report02 {
  background: url("../img/bg_cta.webp") no-repeat top center/cover !important;
  color: #fff;
  font-size: 16px;
}

.table-body {
  margin-top: 0.625rem;
  font-size: max(11px, 1.25rem);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .table-body {
    font-size: 0.875rem;
  }
}

.table-body__item {
  display: flex;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .table-body__item {
    gap: 0.375rem;
    justify-content: end;
  }
}
.table-body__item + .table-body__item {
  margin-top: 0.25rem;
}
.table-body__item div {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .table-body__item div {
    flex: unset;
  }
}

.table-body__th {
  width: 22.5rem;
  padding-block: 0.3125rem;
  background: #e4f1ff;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .table-body__th {
    width: 52.5333333333vw;
    line-height: 150%;
    padding: 0.4375rem 0.375rem;
  }
}
.table-body__th ul {
  margin-top: 0.625rem;
  text-align: left;
  width: fit-content;
  margin-inline: auto;
  font-size: max(10px, 1rem);
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .table-body__th ul {
    margin-top: 0.3125rem;
    font-size: 0.75rem;
  }
}

.table-body__td {
  width: 22.5rem;
  display: grid;
  place-items: center;
  background: #f2f8ff;
}
@media screen and (max-width: 767px) {
  .table-body__td {
    width: 17.3333333333vw;
    font-size: 1rem;
  }
}
.table-body__td.c-navy {
  font-size: 1.25rem;
}

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

.p-problem__inner {
  padding: 0 9.375rem;
}
@media screen and (min-width: 900px) {
  .p-problem__inner {
    padding: 0 16.875rem;
  }
}

.p-problem__top {
  background: url("../img/bg_problem.webp") no-repeat center bottom/cover;
}
@media screen and (max-width: 767px) {
  .p-problem__top {
    background: url("../img/bg_problem_sp.webp") no-repeat center bottom/cover;
  }
}

.p-problem__title-en {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 100%; /* 32px */
  background: linear-gradient(90deg, #4091e7 0%, #24cbce 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-problem__title-en {
    font-size: 1.5rem;
  }
}

.p-problem__title-ja {
  margin-top: 1.25rem;
  color: #1D2F53;
  font-size: 2rem;
  line-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .p-problem__title-ja {
    margin-top: 0.625rem;
    font-size: 1.25rem;
    gap: 0.5rem;
  }
}
.p-problem__title-ja::after {
  content: "";
  background: url("../img/deco_bubble.svg") no-repeat center center/cover;
  width: 25.875rem;
  height: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-problem__title-ja::after {
    background: url("../img/deco_bubble_sp.svg") no-repeat center center/cover;
    width: 17.1875rem;
    height: 1rem;
  }
}

.p-problem__wrap {
  margin-top: 2.375rem;
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-problem__wrap {
    flex-direction: column;
    gap: 0.625rem;
    width: 17.6875rem;
    margin-top: 1.875rem;
    margin-inline: auto;
  }
}

.p-problem__item {
  flex: 1;
}

.p-problem__bottom {
  padding-block: 3.5rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-problem__bottom {
    padding-block: 0.75rem 1.25rem;
  }
}

.p-problem__bottom-head {
  font-size: max(18px, 1.5rem);
  line-height: 100%;
  padding-block: 3.125rem 4.75rem;
  background: url("../img/deco_problem-body.webp") no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-problem__bottom-head {
    font-size: 1rem;
    padding-block: 2.5rem 1.25rem;
    background: url("../img/deco_problem-body.webp") no-repeat center center/16.9375rem auto;
  }
}
.p-problem__bottom-head .big {
  margin-top: 1.25rem;
  margin-right: 0.5625rem;
  font-size: max(21px, 2rem);
  line-height: 100%;
  color: #fff;
  background: #2962b2;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-problem__bottom-head .big {
    margin-top: 0.9375rem;
    font-size: 1.25rem;
    padding: 0.3125rem;
    margin-bottom: 0.625rem;
  }
}
.p-problem__bottom-head .small {
  margin-top: 1.25rem;
  font-size: max(11px, 1rem);
  line-height: 160%; /* 25.6px */
}
@media screen and (max-width: 767px) {
  .p-problem__bottom-head .small {
    margin-top: 1.875rem;
    font-size: 0.875rem;
    line-height: 150%;
  }
}

.p-problem__bottom-wrap {
  margin-top: 2.875rem;
  display: flex;
  flex-direction: column;
  gap: 5.375rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-problem__bottom-wrap {
    margin-top: 1.875rem;
    gap: 1.875rem;
    align-items: start;
  }
}

.p-problem__bottom-item .title {
  font-size: max(12px, 1rem);
  line-height: 100%;
  position: relative;
  padding-left: 3.25rem;
  text-align: left;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .p-problem__bottom-item .title {
    width: 38.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-problem__bottom-item .title {
    width: 100%;
    font-size: 0.875rem;
    line-height: 150%;
    text-align: left;
    padding-left: 1.5625rem;
  }
}
.p-problem__bottom-item .title span {
  font-size: max(16px, 1.5rem);
}
@media screen and (max-width: 767px) {
  .p-problem__bottom-item .title span {
    font-size: 1rem;
  }
}
.p-problem__bottom-item .title::before {
  content: "";
  position: absolute;
  background: url("../img/icon_problem.svg") no-repeat center center/contain;
  width: 2.625rem;
  height: 3rem;
  top: 50%;
  translate: 0 -50%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-problem__bottom-item .title::before {
    width: 1.3125rem;
    height: 1.5rem;
    top: 0;
    translate: unset;
  }
}
.p-problem__bottom-item .p-problem__bottom-img {
  margin-top: 2.125rem;
  display: block;
  height: auto;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-problem__bottom-item .p-problem__bottom-img {
    margin-top: 1.1875rem;
    width: 100% !important;
  }
}
.p-problem__bottom-item .p-problem__bottom-img a {
  position: absolute;
  font-size: max(12px, 0.75rem);
  font-weight: 500;
  line-height: 100%; /* 12px */
  letter-spacing: 0;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media (any-hover: hover) {
  .p-problem__bottom-item .p-problem__bottom-img a:hover {
    opacity: 0.7;
  }
}
.p-problem__bottom-item:first-of-type .p-problem__bottom-img {
  width: 54.616240267%;
  transform: translateX(-2.3125rem);
}
@media screen and (max-width: 767px) {
  .p-problem__bottom-item:first-of-type .p-problem__bottom-img {
    padding-bottom: 28px;
    transform: unset;
  }
}
.p-problem__bottom-item:first-of-type .p-problem__bottom-img a {
  bottom: 1px;
  left: calc(50% + 67px);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-problem__bottom-item:first-of-type .p-problem__bottom-img a {
    left: unset;
    right: 0;
  }
}
.p-problem__bottom-item:nth-of-type(2) .p-problem__bottom-img {
  width: 100%;
  padding-bottom: 22px;
}
.p-problem__bottom-item:nth-of-type(2) .p-problem__bottom-img a {
  bottom: 1px;
  right: 19.2%;
}
@media screen and (max-width: 767px) {
  .p-problem__bottom-item:nth-of-type(2) .p-problem__bottom-img a {
    right: 0;
  }
}
.p-problem__bottom-item:nth-of-type(3) .p-problem__bottom-img {
  width: 100%;
  padding-bottom: 11px;
}
@media screen and (max-width: 767px) {
  .p-problem__bottom-item:nth-of-type(3) .p-problem__bottom-img {
    margin-top: 2rem;
    padding-right: 0;
    padding-bottom: 22px;
  }
}
.p-problem__bottom-item:nth-of-type(3) .p-problem__bottom-img a {
  bottom: 0;
  right: 37px;
}
@media screen and (max-width: 767px) {
  .p-problem__bottom-item:nth-of-type(3) .p-problem__bottom-img a {
    right: 0;
  }
}

.p-problem__bottom-end {
  margin-top: 3.75rem;
  font-size: 1.5rem;
  line-height: 100%;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-problem__bottom-end {
    margin-top: 3.125rem;
    font-size: 1rem;
  }
}
.p-problem__bottom-end span {
  margin-top: 1.25rem;
  font-size: 1.5rem;
  color: #fff;
  background: #2962b2;
  padding: 0.625rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-problem__bottom-end span {
    font-size: 1rem;
    line-height: 150%;
    padding: 0.3125rem;
  }
}

.p-contact {
  overflow: hidden;
}

.p-contact__wrap {
  transform: translateX(6.25rem);
}
@media screen and (max-width: 767px) {
  .p-contact__wrap {
    transform: translateX(3.125rem);
  }
}
@media screen and (max-width: 499px) {
  .p-contact__wrap {
    transform: translateX(2.25rem);
  }
}

@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
.u-font {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.u-font__jp {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.u-font__en {
  font-family: "Poppins", sans-serif;
}

.u-text__center {
  text-align: center !important;
}
@media screen and (max-width: 767px) {
  .u-text__center--sp {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .u-text__center--pc {
    text-align: center !important;
  }
}

.u-text__left {
  text-align: left !important;
}
@media screen and (max-width: 767px) {
  .u-text__left--sp {
    text-align: left !important;
  }
}
@media (min-width: 768px) {
  .u-text__left--pc {
    text-align: left !important;
  }
}

.u-text__right {
  text-align: right !important;
}
@media screen and (max-width: 767px) {
  .u-text__right--sp {
    text-align: right !important;
  }
}
@media (min-width: 768px) {
  .u-text__right--pc {
    text-align: right !important;
  }
}

.u-text__nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .u-text__nowrap--sp {
    white-space: nowrap;
  }
}
@media (min-width: 768px) {
  .u-text__nowrap--pc {
    white-space: nowrap;
  }
}

.u-pointer__none {
  pointer-events: none !important;
}
@media screen and (max-width: 767px) {
  .u-pointer__none--sp {
    pointer-events: none !important;
  }
}
@media (min-width: 768px) {
  .u-pointer__none--pc {
    pointer-events: none !important;
  }
}