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

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, getThead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

html {
  font-size: 1rem;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
@media screen and (max-width: 1000px) {
  html {
    scroll-padding-top: 70px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  background-color: #FFFFFF;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-break: strict;
}

.l-inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.l-main {
  display: block;
  overflow: hidden;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  z-index: 100;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.45);
}
@media screen and (max-width: 1000px) {
  .l-header {
    box-shadow: none;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5px;
  max-width: 1250px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .l-header__inner {
    padding: 9px 15px 9px 20px;
    height: 70px;
  }
}
.l-header__left {
  display: flex;
  align-items: center;
  gap: 0 47px;
}
.l-header__logo {
  width: 237px;
  line-height: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 1000px) {
  .l-header__logo {
    width: 246px;
  }
}
.l-header__logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1000px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
}
.l-header__nav a {
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.8;
  transition: opacity 0.3s;
  white-space: nowrap;
}
@media (any-hover: hover) {
  .l-header__nav a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1000px) {
  .l-header__right {
    display: none;
  }
}

.c-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 101;
}
@media screen and (max-width: 1000px) {
  .c-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
}
.c-hamburger span {
  display: block;
  width: 23px;
  height: 3px;
  background-color: #003965;
  border-radius: 1px;
  transition: all 0.3s ease;
}
.c-hamburger.is-active span:nth-of-type(1) {
  transform: translateY(8px) rotate(45deg);
}
.c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.c-hamburger.is-active span:nth-of-type(3) {
  transform: translateY(-0.5rem) rotate(-45deg);
}

.c-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
  visibility: hidden;
  transition: visibility 0.4s;
  display: none;
}
@media screen and (max-width: 1000px) {
  .c-drawer {
    display: block;
  }
}
.c-drawer.is-active {
  visibility: visible;
}
.c-drawer.is-active .c-drawer__overlay {
  opacity: 1;
}
.c-drawer.is-active .c-drawer__nav {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.c-drawer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #EBF5FA;
  opacity: 0;
  transition: opacity 0.4s;
}
.c-drawer__nav {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%) translateY(calc(-100vh - 70px));
  width: 100%;
  height: calc(100vh - 70px);
  overflow-y: auto;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}
.c-drawer__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-drawer__list li {
  width: 100%;
}
.c-drawer__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65px;
  background: #FFFFFF;
  border-radius: 7px;
  padding: 0 18px 0 30px;
  font-size: 1rem;
  font-weight: 700;
  color: #2374ab;
}
.c-drawer__list a::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Crect width='30' height='30' rx='15' fill='%23EBF5FA'/%3E%3Cpath d='M13 10l5 5-5 5' stroke='%23144A87' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center center/contain;
}
.c-drawer__cta {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .c-drawer__cta {
    margin-top: 40px;
  }
}

@media screen and (max-width: 1000px) {
  body.is-locked {
    overflow: hidden;
  }
}

.l-footer {
  background: #333333;
  padding: 16px 0;
  text-align: center;
}
.l-footer__copyright {
  font-size: 0.75rem;
  color: #FFFFFF;
  line-height: 1.8;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #FFFFFF;
  background: linear-gradient(90deg, #0086c5 0%, #005aaa 100%);
  text-align: center;
  transition: opacity 0.3s ease;
  position: relative;
}
@media (any-hover: hover) {
  .c-btn:hover {
    opacity: 1;
  }
}
.c-btn::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #FFFFFF;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.c-btn--header {
  width: 290px;
  height: 60px;
  border-radius: 10px;
  font-size: 1.25rem;
  padding: 8px 16px 8px 30px;
  background: #FFF000;
  border: 4px solid transparent;
  color: #003965;
  justify-content: space-between;
  box-shadow: 3px 3px 1px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}
.c-btn--header:hover {
  opacity: 1;
  background: #FFFFFF;
  color: #003965;
  border-color: #FFF000;
}
.c-btn--header:hover::after {
  background-color: #003965;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='15' viewBox='0 0 12 15'%3E%3Cpath d='M3.5 1.5l7 6L3.5 13.5' stroke='%23FFFFFF' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.c-btn--header::after {
  position: relative;
  right: auto;
  top: auto;
  transform: none;
  width: 29px;
  height: 29px;
  border-style: none;
  border-radius: 50%;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='15' viewBox='0 0 12 15'%3E%3Cpath d='M3.5 1.5l7 6L3.5 13.5' stroke='%23005AAA' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 15px;
  flex-shrink: 0;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn--header {
    width: 250px;
    height: 50px;
    font-size: 0.9375rem;
    padding: 8px 12px 8px 20px;
  }
}
.c-btn--mv {
  width: 281px;
  height: 48px;
  border-radius: 30px;
  font-size: 1.25rem;
  padding: 8px 30px;
  justify-content: space-between;
}
.c-btn--mv::after {
  position: relative;
  right: auto;
  top: auto;
  transform: none;
  border-width: 6px 0 6px 8px;
}
@media screen and (max-width: 767px) {
  .c-btn--mv {
    width: 100%;
    max-width: 335px;
    height: 40px;
    justify-content: center;
    gap: 10px;
    font-size: 1.0625rem;
    padding: 6px 20px;
  }
  .c-btn--mv::after {
    border-width: 6px 0 6px 9px;
    width: 0;
    height: 0;
  }
}
.c-btn--sp-drawer {
  width: 290px;
  min-height: 60px;
  border-radius: 10px;
  font-size: 1.25rem;
  padding: 8px 16px 8px 30px;
  background: #FFF000;
  border: 4px solid transparent;
  color: #003965;
  justify-content: space-between;
  box-shadow: 3px 3px 1px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}
.c-btn--sp-drawer::after {
  position: relative;
  right: auto;
  top: auto;
  transform: none;
  width: 29px;
  height: 29px;
  border-style: none;
  border-radius: 50%;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='15' viewBox='0 0 12 15'%3E%3Cpath d='M3.5 1.5l7 6L3.5 13.5' stroke='%23005AAA' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 15px;
  flex-shrink: 0;
  transition: all 0.3s;
}
.c-btn--sp-drawer:hover {
  opacity: 1;
  background: #FFFFFF !important;
  color: #003965 !important;
  border-color: #FFF000 !important;
}
.c-btn--sp-drawer:hover::after {
  background-color: #003965 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='15' viewBox='0 0 12 15'%3E%3Cpath d='M3.5 1.5l7 6L3.5 13.5' stroke='%23FFFFFF' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}
.c-btn--cta {
  display: inline-flex;
  padding: 9px 56px;
  border-radius: 85px;
  font-size: 1.875rem;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .c-btn--cta {
    width: 330px;
    padding: 5px 30px;
    border-radius: 65px;
    font-size: 1.25rem;
    gap: 8px;
  }
}
.c-btn--cta::after {
  border: none;
  width: 50px;
  height: 50px;
  background: url("../img/icon-btn-arrow.svg") no-repeat center/contain;
  position: relative;
  right: auto;
  top: auto;
  transform: none;
}
@media screen and (max-width: 767px) {
  .c-btn--cta::after {
    width: 38px;
    height: 38px;
  }
}

.c-section-title {
  text-align: center;
}
.c-section-title__en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #144A87;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-section-title__en {
    font-size: 1.25rem;
  }
}
.c-section-title__ja {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: #005AAA;
  line-height: 1.6;
  margin-top: -3px;
}
@media screen and (max-width: 767px) {
  .c-section-title__ja {
    font-size: 1.875rem;
    line-height: 1.3;
    margin-top: 0px;
  }
}
.c-section-title--feature .c-section-title__ja {
  color: #333333;
}
@media screen and (max-width: 767px) {
  .c-section-title--feature .c-section-title__en {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-section-title--feature .c-section-title__ja {
    font-size: 2.25rem;
    margin-top: 3px;
  }
}

.p-mv {
  position: relative;
  overflow: hidden;
  margin: 90px 0 105px;
  padding: 80px 0 198px;
}
.p-mv::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/bg-mv.svg") no-repeat center bottom;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-mv::before {
    background: url("../img/bg-mv-sp.svg") no-repeat center bottom;
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .p-mv {
    padding: 36px 0 30px;
    margin: 70px 0 0;
  }
}
.p-mv__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  transform: translateX(40px);
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    min-height: auto;
    transform: none;
  }
}
.p-mv__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-mv__top {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
}
.p-mv__text-block {
  flex: 1;
  z-index: 2;
  text-align: left;
  padding-top: 14px;
}
@media screen and (max-width: 767px) {
  .p-mv__text-block {
    width: 345px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 0;
    text-align: center;
  }
}
.p-mv__illust {
  max-width: 613px;
  width: 100%;
  z-index: 1;
  transform: translateY(30px);
}
@media screen and (max-width: 767px) {
  .p-mv__illust {
    max-width: 347px;
    margin: 0 auto;
    transform: none;
  }
}
.p-mv__illust-wrap {
  display: block;
}
.p-mv__illust img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.p-mv__note {
  margin-top: 7px;
  padding-right: 40px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #333333;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-mv__note {
    margin-top: 6px;
    padding: 0;
  }
}
.p-mv__balloon {
  display: inline-block;
  width: auto;
  padding: 8px 18px;
  background-color: #C7E7F7;
  border-radius: 999px;
  position: relative;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-mv__balloon {
    padding: 6px 14px;
    margin: 0 auto 10px;
  }
}
.p-mv__balloon::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 48px;
  width: 10px;
  height: 7px;
  background: url("../img/mv-balloon-tail.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-mv__balloon::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-mv__balloon p {
  margin: 0;
  color: #003965;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-mv__balloon p {
    font-size: 1rem;
  }
}
.p-mv__lead {
  margin: 0;
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #144A87;
}
@media screen and (max-width: 767px) {
  .p-mv__lead {
    font-size: 1.625rem;
    line-height: 1.3;
    margin: 0 0 22px;
  }
}
.p-mv__logo {
  max-width: 400px;
  width: 100%;
  margin: 20px 0 0 -6px;
}
@media screen and (max-width: 767px) {
  .p-mv__logo {
    width: 320px;
    max-width: 100%;
    margin: 0 auto 40px;
    text-align: center;
  }
}
.p-mv__logo img {
  width: 100%;
  height: auto;
}
.p-mv__cta {
  width: 100%;
  text-align: left;
  margin-top: 33px;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-mv__cta--pc {
    display: none;
  }
}
.p-mv__cta--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-mv__cta--sp {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__cta {
    text-align: center;
    margin-top: 8px;
  }
}
.p-mv__cta .c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 290px;
  min-height: 60px;
  padding: 8px 16px 8px 30px;
  background: #FFF000;
  border-radius: 10px;
  border: 4px solid transparent;
  color: #003965;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  box-shadow: 3px 3px 1px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}
.p-mv__cta .c-btn:hover {
  background: #FFFFFF;
  color: #003965;
  border-color: #FFF000;
}
.p-mv__cta .c-btn:hover::after {
  background-color: #003965;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='15' viewBox='0 0 12 15'%3E%3Cpath d='M3.5 1.5l7 6L3.5 13.5' stroke='%23FFFFFF' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.p-mv__cta .c-btn::after {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='15' viewBox='0 0 12 15'%3E%3Cpath d='M3.5 1.5l7 6L3.5 13.5' stroke='%23005AAA' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 15px;
  transition: all 0.3s;
  border: none;
}
@media screen and (max-width: 767px) {
  .p-mv__cta .c-btn {
    width: 290px;
    min-height: 60px;
    font-size: 1.25rem;
  }
}

.p-intro {
  padding: 0 0 60px;
  margin: 0 0 60px;
}
@media screen and (max-width: 767px) {
  .p-intro {
    padding: 0 0 30px;
  }
}
.p-intro__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-intro__inner {
    flex-direction: column;
    gap: 71px;
  }
}
.p-intro__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-intro__content {
    gap: 10px;
  }
}
.p-intro__title {
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  color: transparent;
  background: linear-gradient(90deg, rgb(0, 90, 170), rgb(0, 134, 197));
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-intro__title {
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: -0.03em;
  }
}
.p-intro__desc {
  font-size: 1.125rem;
  line-height: 2;
  color: #333333;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-intro__desc {
    font-size: 1.125rem;
    line-height: 1.7;
  }
}
@media screen and (min-width: 768px) {
  .p-intro__desc p {
    margin-bottom: 2em;
  }
  .p-intro__desc p:last-child {
    margin-bottom: 0;
  }
}
.p-intro__illust {
  width: 450px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-intro__illust {
    width: 100%;
    max-width: 400px;
  }
}
.p-intro__illust-wrap {
  width: 100%;
  overflow: hidden;
}
.p-intro__illust video {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  display: block;
  border: none;
  outline: none;
}
.p-problem {
  padding: 90px 0 70px;
  background: linear-gradient(to bottom, #FFFFFF 114px, #EBF5FA 114px, #EBF5FA calc(100% - 101px), #FFFFFF calc(100% - 101px));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.p-problem::before {
  content: "";
  display: block;
  width: 100%;
  height: 114px;
  background: url(../img/bg-section-top-radius.svg) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-problem::before {
    height: 40px;
    background-size: 200% 100%;
  }
}
.p-problem::after {
  content: "";
  display: block;
  width: 100%;
  height: 101px;
  background: url(../img/bg-section-btm-blue.svg) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-problem::after {
    height: 73px;
  }
}
@media screen and (max-width: 767px) {
  .p-problem {
    padding: 60px 0 57px;
    background: linear-gradient(to bottom, #FFFFFF 40px, #EBF5FA 40px, #EBF5FA calc(100% - 47px), #FFFFFF calc(100% - 47px));
  }
}
.p-problem .l-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
@media screen and (max-width: 767px) {
  .p-problem .l-inner {
    gap: 20px;
  }
}
.p-problem__circles {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  max-width: 734px;
}
@media screen and (max-width: 767px) {
  .p-problem__circles {
    display: grid;
    grid-template-columns: repeat(2, 160px);
    justify-content: center;
    gap: 10px;
    margin-top: 0;
  }
}
.p-problem__circle {
  width: 176px;
  height: 176px;
  border-radius: 50%;
  border: 4px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, rgb(0, 90, 170), rgb(0, 134, 197)) border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
}
@media screen and (max-width: 767px) {
  .p-problem__circle {
    width: 160px;
    height: 160px;
    padding: 15px 5px;
  }
}
.p-problem__circle p {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  color: #005AAA;
  text-align: center;
  margin: 0;
}
.p-problem__illust {
  display: flex;
  justify-content: center;
  width: 76px;
}
.p-problem__illust img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .p-problem__illust {
    margin-top: -34px;
  }
}

.p-solution {
  padding: 60px 0 121px;
  background: linear-gradient(to top, #EBF5FA 101px, #FFFFFF 101px);
  color: #333333;
  position: relative;
}
.p-solution::after {
  content: "";
  display: block;
  width: 100%;
  height: 101px;
  background: url(../img/bg-section-btm-sharp.svg) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-solution::after {
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-solution {
    padding: 44px 0 170px;
    background: linear-gradient(to top, #EBF5FA 50px, #FFFFFF 50px);
  }
}
.p-solution .l-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
@media screen and (max-width: 767px) {
  .p-solution .c-section-title__en {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-solution .c-section-title__ja {
    font-size: 1.75rem;
  }
}
.p-solution__desc {
  text-align: center;
  font-size: 1.125rem;
  line-height: 2;
  max-width: 684px;
}
@media screen and (max-width: 767px) {
  .p-solution__desc {
    font-size: 1.125rem;
    text-align: left;
    line-height: 1.8;
  }
}
.p-solution__desc .u-fw-bold {
  font-weight: 700;
}
.p-solution__flow {
  display: grid;
  grid-template-columns: repeat(3, 280px);
  grid-template-rows: auto auto 1fr;
  justify-content: center;
  column-gap: 54px;
  width: 100%;
  max-width: 928px;
}
@media screen and (max-width: 767px) {
  .p-solution__flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
  }
}
.p-solution__step {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-solution__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 280px;
  }
}
.p-solution__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -37px;
  transform: translateY(-50%);
  width: 20px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='30' viewBox='0 0 20 30'%3E%3Cpath d='M0 0L20 15L0 30Z' fill='%23005AAA'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-solution__step:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -32px;
    transform: translateX(-50%);
    width: 26px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='20' viewBox='0 0 30 20'%3E%3Cpath d='M0 0L30 0L15 20Z' fill='%23005AAA'/%3E%3C/svg%3E");
  }
}
.p-solution__step-badge {
  grid-row: 1;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  padding: 4px 10px;
  background: linear-gradient(90deg, rgb(0, 90, 170), rgb(0, 134, 197));
  border-radius: 21px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: #EBF5FA;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: -10px;
}
@media screen and (max-width: 767px) {
  .p-solution__step-badge {
    margin-bottom: -10px;
  }
}
.p-solution__step-card {
  grid-row: 2/4;
  display: grid;
  grid-template-rows: subgrid;
  background: #EBF5FA;
  border-radius: 10px;
  padding: 26px 25px 25px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-solution__step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.p-solution__step-label {
  grid-row: 1;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  height: 100%;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: #005AAA;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-solution__step-label {
    height: auto;
    grid-template-rows: auto auto;
  }
}
.p-solution__step-label::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, rgb(0, 134, 197), rgb(146, 190, 79));
  border-radius: 2px;
  margin: 18px auto 20px auto;
}
@media screen and (max-width: 767px) {
  .p-solution__step-label::after {
    margin: 14px auto 16px auto;
  }
}
.p-solution__step-img {
  grid-row: 2;
  align-self: end;
  justify-self: center;
  width: 230px;
  max-width: 100%;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .p-solution__step-img {
    align-self: auto;
  }
}
.p-solution__step-img img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.p-solution__bg01, .p-solution__bg02 {
  position: absolute;
  border-radius: 100%;
  z-index: 10;
}
.p-solution__bg01 {
  width: 164px;
  height: 164px;
  background: #035CA9;
  right: -2%;
  bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-solution__bg01 {
    right: auto;
    left: -13%;
    bottom: -10px;
  }
}
.p-solution__bg02 {
  width: 35px;
  height: 35px;
  background: #0087C6;
  left: 3%;
  top: -60px;
}
@media screen and (max-width: 767px) {
  .p-solution__bg02 {
    top: -70px;
    left: 7%;
  }
}

.p-image {
  padding: 80px 0 267px;
  background: linear-gradient(to top, #FFFFFF 177px, #EBF5FA 177px);
  overflow: hidden;
  position: relative;
}
.p-image::after {
  content: "";
  display: block;
  width: 100%;
  height: 177px;
  background: url(../img/bg-section-btm-radius.svg) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-image::after {
    height: 26px;
    background-image: url(../img/bg-section-btm-radius_sp.svg);
    background-size: 100% 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-image {
    padding: 70px 0 86px;
    background: linear-gradient(to top, #FFFFFF 26px, #EBF5FA 26px);
  }
}
@media screen and (max-width: 767px) {
  .p-image .l-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-image__frame {
  max-width: 800px;
  margin: 20px auto 0;
  background: #FFFFFF;
  border-radius: 11px;
  padding: 30px 64px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-image__frame {
    margin-top: 28px;
    padding: 40px 20px;
    border-radius: 11px;
  }
}
.p-image__slider {
  overflow: hidden;
  padding: 5px;
  margin: -5px;
}
.p-image__slider .swiper-slide {
  height: auto;
}
.p-image__card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-image__card-content {
    flex-direction: column;
    text-align: center;
    gap: 22px;
  }
}
.p-image__card-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex: 1;
}
.p-image__card-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-image__card-step::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, rgb(0, 134, 197), rgb(146, 190, 79));
  border-radius: 2px;
  margin-top: 18px;
}
.p-image__card-step-num {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
  color: transparent;
  background: linear-gradient(90deg, #0086c5, #005aaa);
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0 0 -2px;
}
.p-image__card-step-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: transparent;
  background: linear-gradient(90deg, #0086c5, #005aaa);
  -webkit-background-clip: text;
  background-clip: text;
}
.p-image__card-desc {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: #333333;
  text-align: center;
  white-space: nowrap;
}
.p-image__card-img-block {
  width: 100%;
  max-width: 422px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-image__card-img-block {
    max-width: 280px;
    margin: 0 auto;
    justify-content: center;
  }
}
.p-image__card-img-inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-image__card-img-inner {
    text-align: right;
    margin-left: auto;
  }
}
.p-image__card-img-inner--single {
  max-width: 380px;
}
.p-image__card-img-inner--multi {
  max-width: 415px;
}
.p-image__card-img-inner img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.p-image__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 528px;
  margin: 0px auto 0;
  min-height: 44px;
}
@media screen and (max-width: 767px) {
  .p-image__controls {
    max-width: 300px;
    margin-top: 0;
  }
}
.p-image__nav {
  position: static !important;
  width: 26px !important;
  height: 26px !important;
  border-radius: 50%;
  background-color: #EBF5FA;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  margin-top: 0 !important;
  transition: opacity 0.3s;
}
.p-image__nav:hover {
  opacity: 0.7;
}
.p-image__nav::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-image__nav {
    width: 26px !important;
    height: 26px !important;
  }
}
.p-image__nav--prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='13' viewBox='0 0 10 20'%3E%3Cpath d='M10 0L0 10L10 20Z' fill='%23144A87'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px 13px;
}
@media screen and (max-width: 767px) {
  .p-image__nav--prev {
    background-size: 7px 13px;
  }
}
.p-image__nav--next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='13' viewBox='0 0 10 20'%3E%3Cpath d='M0 0L10 10L0 20Z' fill='%23144A87'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 7px 13px;
}
@media screen and (max-width: 767px) {
  .p-image__nav--next {
    background-size: 7px 13px;
  }
}
.p-image__pagination {
  position: static !important;
  width: auto !important;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .p-image__pagination {
    gap: 10px;
    padding: 0 5px;
  }
}
.p-image__pagination .swiper-pagination-bullet {
  width: 40px;
  height: 6px;
  background: #C7E7F7;
  border: none;
  opacity: 1;
  border-radius: 0;
  margin: 0 !important;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-image__pagination .swiper-pagination-bullet {
    width: 29px;
  }
}
.p-image__pagination .swiper-pagination-bullet-active {
  background: linear-gradient(90deg, rgb(0, 90, 170) 0%, rgb(0, 134, 197) 100%);
}

.p-cta {
  background: transparent;
  padding: 77px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding: 30px 0 20px;
  }
}
.p-cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-cta__content {
    gap: 12px;
  }
}
.p-cta__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #003965;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: 1.375rem;
    line-height: 1.2;
  }
}
.p-cta .c-btn--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 80px;
  padding: 10px 60px;
  background: #FFF000;
  border: 4px solid transparent;
  border-radius: 10px;
  color: #003965;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  box-shadow: 3px 3px 1px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}
.p-cta .c-btn--cta:hover {
  background: #FFFFFF;
  color: #003965;
  border-color: #FFF000;
}
.p-cta .c-btn--cta:hover::after {
  background-color: #003965;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='18' viewBox='0 0 14 18'%3E%3Cpath d='M3.5 1.5l9 7.5L3.5 16.5' stroke='%23FFFFFF' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
@media screen and (max-width: 767px) {
  .p-cta .c-btn--cta:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='15' viewBox='0 0 12 15'%3E%3Cpath d='M3.5 1.5l7 6L3.5 13.5' stroke='%23FFFFFF' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
}
.p-cta .c-btn--cta::after {
  content: "";
  display: inline-block;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='18' viewBox='0 0 14 18'%3E%3Cpath d='M3.5 1.5l9 7.5L3.5 16.5' stroke='%23005AAA' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 18px;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-cta .c-btn--cta::after {
    width: 29px;
    height: 29px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='15' viewBox='0 0 12 15'%3E%3Cpath d='M3.5 1.5l7 6L3.5 13.5' stroke='%23005AAA' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 12px 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-cta .c-btn--cta {
    width: 330px;
    max-width: 100%;
    min-height: auto;
    padding: 10px 0;
    font-size: 1.25rem;
    border-radius: 10px;
  }
}

.p-feature {
  background: linear-gradient(to bottom, #FFFFFF 177px, #EBF5FA 177px);
  padding: 103px 0 76px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.p-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 177px;
  background: url("../img/bg-feature.svg") no-repeat center top;
  background-size: 100% 100%;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-feature::before {
    height: 40px;
    background-image: url("../img/bg-feature_sp.svg");
    background-size: 100% 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-feature {
    padding: 60px 0 54px;
    background: linear-gradient(to bottom, #FFFFFF 40px, #EBF5FA 40px);
  }
}
.p-feature .l-inner {
  position: relative;
  z-index: 1;
}
.p-feature__lead {
  font-size: 1rem;
  line-height: 2;
  margin-top: 3px;
  margin-bottom: 46px;
}
@media screen and (max-width: 767px) {
  .p-feature__lead {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-top: 38px;
    margin-bottom: 38px;
  }
}
.p-feature__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 55px;
  max-width: 998px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-feature__grid {
    max-width: 383px;
    width: 100%;
    gap: 10px 30px;
  }
}
.p-feature__item {
  width: 250px;
  height: 250px;
  position: relative;
  z-index: 1;
}
.p-feature__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-feature__item::before {
    width: 150px;
    height: 150px;
  }
}
.p-feature__item:nth-child(1)::before {
  background-image: url("../img/bg-feature-blob1.svg");
}
.p-feature__item:not(:nth-child(1))::before {
  background-image: url("../img/bg-feature-blob2.svg");
}
.p-feature__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-feature__item {
    width: 150px;
    height: 150px;
  }
}
.p-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 80px;
}
.p-feature__icon img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
@media screen and (max-width: 767px) {
  .p-feature__icon {
    width: 60px;
    height: 40px;
  }
}
.p-feature__name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-feature__name {
    font-size: 0.875rem;
    line-height: 1.2;
  }
}

.p-banner-wrapper {
  background-color: #FFFFFF;
  text-align: center;
  position: relative;
}
.p-banner-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #0059a9;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-banner-wrapper::after {
    display: none;
  }
}
.p-banner-wrapper img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1366px;
  height: auto;
  vertical-align: bottom;
}
@media screen and (min-width: 768px) {
  .p-banner-wrapper img {
    clip-path: inset(0 2px 0 0);
  }
}
@media screen and (max-width: 767px) {
  .p-banner-wrapper {
    padding: 0;
  }
}

.u-grad-text {
  color: transparent;
  background: linear-gradient(90deg, #0086c5, #005aaa);
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
}
.u-grad-text span.has-dot {
  display: inline;
}
.u-grad-text span.has-dot::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: linear-gradient(180deg, #0086c5, #005aaa);
  -webkit-text-fill-color: initial;
  -webkit-background-clip: initial;
  background-clip: border-box;
  margin-left: -0.55em;
  margin-top: -1px;
}

.u-display-sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-display-sp {
    display: inline !important;
  }
}

.pc-only, .u-display-pc {
  display: inline !important;
}
@media screen and (max-width: 767px) {
  .pc-only, .u-display-pc {
    display: none !important;
  }
}

.u-font-en {
  font-family: "Montserrat", sans-serif;
}

.u-fw-bold {
  font-weight: 700 !important;
}
/*# sourceMappingURL=style.css.map */
