@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  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;
  font: inherit;
  font-size: 100%;
  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,
aside,
figure,
figcaption {
  display: block;
}

a {
  text-decoration: none;
}

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

address {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

body {
  color: #2A2F4E;
}

@media (min-width: 820px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

html {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}
@media screen and (max-width: 499px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  html {
    font-size: calc(16 / 375 * 500 * 1px);
  }
}
@media screen and (min-width: 769px) and (max-width: 1439px) {
  html {
    font-size: calc(16 / 1440 * 100vw);
  }
}
@media screen and (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}

button {
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

body.is-scroll {
  overflow: hidden;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ===============================================
# pcのみ　spのみ　表示
=============================================== */
.pc-only {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header {
    height: 4.125rem;
  }
}

body:has(.drawer.js-show) .header,
body.is-scroll .header {
  background-color: #fff;
}

.header__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 5rem;
  height: 4.75rem;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 0 1rem;
    height: 4.125rem;
  }
}

.header__logo {
  width: 5.25rem;
  aspect-ratio: 84/60;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 4.375rem;
  }
}

.header__logo-link {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  .header__logo-link:hover {
    opacity: 0.7;
  }
}
.header__nav {
  margin-left: auto;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .header__nav-list {
    gap: 16px;
    padding-bottom: 4px;
  }
}

.header__nav-link {
  display: grid;
  place-content: center;
  height: 4.75rem;
  padding: 0 1rem;
  color: #2A2F4E;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: color 0.25s ease, opacity 0.25s ease;
  transition: color 0.25s ease, opacity 0.25s ease;
}
.header__nav-link:hover {
  color: #213AC9;
  opacity: 0.9;
}

.header__contact {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8125rem;
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  background: -webkit-gradient(linear, left top, right bottom, from(#283FF1), to(#0D21B9));
  background: linear-gradient(to bottom right, #283FF1 0%, #0D21B9 100%);
  border-radius: 4px;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.03em;
  white-space: nowrap;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.25s ease, transform 0.2s ease;
  transition: opacity 0.25s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (max-width: 768px) {
  .header__contact {
    display: none;
  }
}

.header__contact-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__contact-icon--mail {
  background: url(../images/new/mail-icon.webp) no-repeat center/contain;
  width: 1.75rem;
  aspect-ratio: 1/1;
}

.header__contact-icon--arrow {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.0823529412);
  position: relative;
  overflow: hidden; /* 1つ目の矢印を隠す */
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}

.header__contact-icon--arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-200%, -50%);
          transform: translate(-200%, -50%); /* 左側に配置（隠れた状態） */
  width: 0.75rem;
  aspect-ratio: 12/10;
  -webkit-mask-image: url(../images/new/arrow-right.svg);
          mask-image: url(../images/new/arrow-right.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  -webkit-transition: none;
  transition: none; /* 通常時はアニメーションなし */
}

.header__contact-icon--arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); /* 中央に配置（表示されている状態） */
  width: 0.75rem;
  aspect-ratio: 12/10;
  -webkit-mask-image: url(../images/new/arrow-right.svg);
          mask-image: url(../images/new/arrow-right.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  -webkit-transition: none;
  transition: none; /* 通常時はアニメーションなし */
}

@media (any-hover: hover) {
  .header__contact:hover .header__contact-icon--arrow::before {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); /* 中央に移動（表示される） */
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease; /* hover時のみアニメーション */
  }
  .header__contact:hover .header__contact-icon--arrow::after {
    -webkit-transform: translate(100%, -50%);
            transform: translate(100%, -50%); /* 右に移動（消える） */
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease; /* hover時のみアニメーション */
  }
  .header__contact:hover .header__contact-icon--arrow::before,
  .header__contact:hover .header__contact-icon--arrow::after {
    background-color: #213AC9;
  }
  .header__contact:hover .header__contact-icon--arrow {
    background-color: #fff;
  }
}
.header__contact-text {
  display: inline-block;
}

.header.js-active {
  background-color: #fff;
}

.header__menu-btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    gap: 0.3125rem;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
  }
}

.header__menu-btn-line {
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  background-color: #2A2F4E;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__menu-btn-line:nth-child(1) {
  -webkit-transform-origin: center;
          transform-origin: center;
}
.header__menu-btn-line:nth-child(2) {
  -webkit-transform-origin: center;
          transform-origin: center;
}
.header__menu-btn-line:nth-child(3) {
  -webkit-transform-origin: center;
          transform-origin: center;
}

.header__menu-btn.js-active .header__menu-btn-line:nth-child(1) {
  -webkit-transform: translateY(0.4375rem) rotate(45deg);
          transform: translateY(0.4375rem) rotate(45deg);
}
.header__menu-btn.js-active .header__menu-btn-line:nth-child(2) {
  opacity: 0;
}
.header__menu-btn.js-active .header__menu-btn-line:nth-child(3) {
  -webkit-transform: translateY(-0.4375rem) rotate(-45deg);
          transform: translateY(-0.4375rem) rotate(-45deg);
}

.drawer__icon {
  display: none;
}
@media screen and (max-width: 768px) {
  .drawer__icon {
    width: 1.375rem;
    height: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: absolute;
    z-index: 102;
    top: 50%;
    right: 1.8125rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.drawer__icon--bar {
  width: 100%;
  height: 2px;
  background: #213AC9;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.drawer {
  translate: 101%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
.drawer.js-show {
  translate: 0;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  -webkit-transform: translateY(0.4375rem) rotate(45deg);
          transform: translateY(0.4375rem) rotate(45deg);
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  opacity: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  -webkit-transform: translateY(-0.4375rem) rotate(-45deg);
          transform: translateY(-0.4375rem) rotate(-45deg);
}

.drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 100%;
  height: 100svh;
  background: #fff;
  overflow-y: scroll;
}

.drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 4.125rem 1rem 0;
}

.drawer__list {
  max-width: 500px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 0.5rem 5.4375rem;
}

.drawer__item a {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid #213AC9;
  color: #2A2F4E;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  position: relative;
}

.drawer__item a::after {
  content: "";
  width: 0.75rem;
  aspect-ratio: 12/10;
  -webkit-mask-image: url(../images/new/arrow-right.svg);
          mask-image: url(../images/new/arrow-right.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #213AC9;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.drawer__btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0;
  max-width: 500px;
  margin-inline: auto;
}

.drawer__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 1rem 0.75rem 1rem;
  border-radius: 0.25rem;
  width: 100%;
  position: relative;
}

.drawer__btn--download {
  background: -webkit-gradient(linear, left top, right bottom, from(#283FF1), to(#0D21B9));
  background: linear-gradient(to bottom right, #283FF1 0%, #0D21B9 100%);
}

.drawer__btn--consultation {
  background: linear-gradient(135deg, rgb(255, 138, 54) 0%, rgb(232, 97, 0) 100%);
  color: #fff;
}

.drawer__btn-text-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.drawer__btn-text {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
}

.drawer__btn-text--01 {
  font-size: 0.8125rem;
}

.drawer__btn-text--02 {
  font-size: 1.125rem;
}

.drawer__btn-icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.0823529412);
}

.drawer__btn-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1rem;
  aspect-ratio: 16/13;
  -webkit-mask-image: url(../images/new/arrow-right.svg);
          mask-image: url(../images/new/arrow-right.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
}

.footer {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 4.5rem;
  }
}

.footer::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: #182A8E;
}

.footer__deco {
  position: absolute;
  z-index: 1;
  width: 36.25rem;
  height: 36.25rem;
  border-radius: 50%;
  background-color: rgba(0, 234, 255, 0.5);
  -webkit-filter: blur(180px);
          filter: blur(180px);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .footer__deco {
    width: 18.125rem;
    height: 18.125rem;
    -webkit-filter: blur(80px);
            filter: blur(80px);
  }
}

.footer__deco--01 {
  left: -16.875rem;
  top: 5.75rem;
}
@media screen and (max-width: 768px) {
  .footer__deco--01 {
    left: -5.875rem;
    top: auto;
    bottom: -5rem;
  }
}

.footer__deco--02 {
  width: 43.75rem;
  height: 43.75rem;
  background-color: rgba(0, 234, 255, 0.6);
  -webkit-filter: blur(160px);
          filter: blur(160px);
  right: -15.625rem;
  top: -20.625rem;
}
@media screen and (max-width: 768px) {
  .footer__deco--02 {
    width: 21.875rem;
    height: 21.875rem;
    right: -7.6875rem;
    top: -6rem;
    -webkit-filter: blur(98px);
            filter: blur(98px);
  }
}

.footer__contents {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4rem;
  padding: 2.875rem 5rem 4rem;
  margin-inline: auto;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .footer__contents {
    max-width: 500px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
    padding: 2.5rem 1rem;
  }
}

.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .footer__left {
    gap: 2rem;
  }
}

.footer__logo-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.footer__logo a {
  display: block;
  width: 11.1875rem;
  height: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .footer__logo a {
    width: 7rem;
  }
}

@media (any-hover: hover) {
  .footer__logo a:hover {
    opacity: 0.7;
  }
}
.footer__catch {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.07em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .footer__catch {
    font-size: 0.875rem;
    letter-spacing: 0.07em;
  }
}

.footer__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.footer__company-name {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .footer__company-name {
    font-size: 1.5rem;
  }
}

.footer__company-address {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .footer__company-address {
    font-size: 0.875rem;
  }
}

.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .footer__right {
    gap: 0;
  }
}

@media screen and (max-width: 768px) {
  .footer__nav {
    width: 100%;
  }
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .footer__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.footer__nav-item {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .footer__nav-item {
    border-bottom: 1px solid #DADCE3;
  }
}

.footer__nav-link {
  display: block;
  padding: 0.5rem 0;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  -webkit-transition: border-color 0.25s ease, opacity 0.25s ease;
  transition: border-color 0.25s ease, opacity 0.25s ease;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .footer__nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 0.875rem;
    padding: 1rem 0;
    text-align: left;
    border-bottom: none;
  }
}

@media screen and (max-width: 768px) {
  .footer__nav-text {
    display: block;
  }
}

.footer__nav-icon {
  display: none;
}
@media screen and (max-width: 768px) {
  .footer__nav-icon {
    display: block;
    width: 0.75rem;
    aspect-ratio: 12/10;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 0.375rem;
  }
}
.footer__nav-icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__nav-link:hover {
  border-bottom-color: #fff;
  opacity: 0.9;
}

.footer__copyright {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 0.5rem;
  padding: 1rem 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    padding: 1rem 0;
  }
}

.footer__copyright-text {
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  display: block;
}
@media screen and (max-width: 768px) {
  .footer__copyright-text {
    font-size: 0.6875rem;
    letter-spacing: 0.03em;
  }
}

.fixed-cta {
  display: none;
}
@media screen and (max-width: 768px) {
  .fixed-cta {
    display: block;
    padding: 0.75rem 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.8);
    -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

.fixed-cta__inner {
  max-width: 500px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  padding-inline: 0.75rem;
}

.fixed-cta__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.25rem 0.5rem 0.5rem;
  border-radius: 0.25rem;
  width: 100%;
  max-width: 15rem;
  position: relative;
  text-decoration: none;
}

.fixed-cta__btn--download {
  background: #fff;
  color: #213AC9;
  border: 1px solid #213AC9;
}

.fixed-cta__btn--download .fixed-cta__btn-text {
  color: #213AC9;
}

.fixed-cta__btn--consultation {
  background: linear-gradient(135deg, rgb(255, 138, 54) 0%, rgb(232, 97, 0) 100%);
  color: #fff;
}

.fixed-cta__btn--consultation .fixed-cta__btn-text {
  color: #fff;
}

.fixed-cta__btn-text-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.fixed-cta__btn-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
}

.fixed-cta__btn-text--01 {
  font-size: 0.625rem;
}

.fixed-cta__btn-text--02 {
  font-size: 0.8125rem;
}

.fv {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: -4.75rem;
}
@media screen and (max-width: 768px) {
  .fv {
    min-height: auto;
    margin-top: -4.125rem;
  }
}

.fv__bg {
  background: url(../images/new/fv-bg.webp) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .fv__bg {
    background: url(../images/new/fv-bg_sp.webp) no-repeat center/cover;
  }
}
.fv__bg img {
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin-inline: auto;
  padding: 6.75rem 5.875rem 3.0625rem 5rem;
}
@media screen and (max-width: 768px) {
  .fv__inner {
    padding: 4.625rem 1rem 1rem;
    max-width: 500px;
  }
}

.fv__contents {
  display: grid;
  grid-template-columns: 35.5rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
  row-gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .fv__contents {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.fv__copy {
  grid-column: 1/2;
  grid-row: 1/2;
  width: 35.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .fv__copy {
    width: 100%;
    gap: 1rem;
  }
}

.fv__badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding: 0 0.5rem 0.0625rem;
  background: -webkit-gradient(linear, left top, right bottom, from(#203FEF), to(#0C1EA0));
  background: linear-gradient(to bottom right, #203FEF 0%, #0C1EA0 100%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.fv__badge-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 0.07em;
  color: #fff;
  -webkit-transform: skew(-10deg);
          transform: skew(-10deg);
}
@media screen and (max-width: 768px) {
  .fv__badge-text {
    font-size: 1rem;
  }
}
.fv__badge-text--en {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.fv__heading-group {
  margin-top: -0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
}
@media screen and (max-width: 768px) {
  .fv__heading-group {
    margin-top: -0.25rem;
    gap: 0.5rem;
  }
}

.fv__heading-main {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 29.625rem;
  height: 4.125rem;
}
@media screen and (max-width: 768px) {
  .fv__heading-main {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 50px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.fv__heading-multiply {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2.4375rem;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: #2A2F4E;
}
@media screen and (max-width: 768px) {
  .fv__heading-multiply {
    font-size: 1.8125rem;
    margin: 0 0.1875rem;
  }
}

.fv__heading-icon {
  width: 16.0625rem;
  aspect-ratio: 257/53;
}
@media screen and (max-width: 768px) {
  .fv__heading-icon {
    width: 11.875rem;
  }
}

.fv__heading-mask {
  width: 6.875rem;
  aspect-ratio: 110/53;
}
@media screen and (max-width: 768px) {
  .fv__heading-mask {
    width: 5.0625rem;
  }
}

.fv__heading-ni {
  margin-left: 0.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #2A2F4E;
}
@media screen and (max-width: 768px) {
  .fv__heading-ni {
    font-size: 1.875rem;
  }
}

.fv__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 4rem;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: #2A2F4E;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .fv__heading {
    font-size: 2.8125rem;
    white-space: nowrap;
  }
}

.fv__heading .small {
  font-size: 2.75rem;
}
@media screen and (max-width: 768px) {
  .fv__heading .small {
    font-size: 2rem;
  }
}

.fv__reward {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0;
  padding: 0.5rem 0 0;
  border-top: 1px solid #2A2F4E;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .fv__reward {
    white-space: normal;
    display: block;
    line-height: 2;
  }
}
.fv__reward::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2.25rem;
  width: 8.25rem;
  height: 0.5rem;
  background-color: rgba(14, 31, 162, 0.2);
}
@media screen and (max-width: 768px) {
  .fv__reward::before {
    top: 2.1875rem;
  }
}

.fv__reward-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: #2A2F4E;
}

.fv__reward-number {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 2.125rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #2A2F4E;
}
@media screen and (max-width: 768px) {
  .fv__reward-number {
    margin-left: -0.25rem;
    letter-spacing: -0.1em;
    font-size: 2.25rem;
  }
}

.fv__reward-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: #2A2F4E;
}

.fv__reward-desc-underline {
  text-decoration-line: underline;
  text-decoration-color: rgba(14, 31, 162, 0.1254901961);
  text-decoration-thickness: 0.5rem;
  text-underline-offset: -0.125rem;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media screen and (max-width: 768px) {
  .fv__reward-desc-underline {
    text-underline-offset: -0.25rem;
  }
}

.fv__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #2A2F4E;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .fv__lead {
    font-size: 1rem;
  }
}

.fv__stats-box {
  grid-column: 1/2;
  grid-row: 2/3;
}
@media screen and (max-width: 768px) {
  .fv__stats-box {
    margin-top: 1rem;
    grid-row: 3/4;
  }
}

.fv__stats {
  display: grid;
  grid-template-columns: repeat(3, 10.375rem);
  height: 10.375rem;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .fv__stats {
    height: 6.75rem;
    grid-template-columns: repeat(3, 6.75rem);
    gap: 0.5rem;
  }
}

.fv__stat-circle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 10.375rem;
  height: 10.375rem;
  padding: 0.9375rem;
  background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(227, 234, 255) 100%);
  border-radius: 50%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .fv__stat-circle {
    width: 6.75rem;
    height: 6.75rem;
  }
}

.fv__stat-circle--02 {
  padding: 1rem 1rem 1.5rem;
}
@media screen and (max-width: 768px) {
  .fv__stat-circle--02 {
    padding: 0;
  }
}

.fv__stat-circle--03 {
  padding: 1rem 1rem 1.5rem;
}
@media screen and (max-width: 768px) {
  .fv__stat-circle--03 {
    padding: 0;
  }
}

.fv__stat-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(227, 234, 255) 100%) padding-box, linear-gradient(135deg, rgb(0, 204, 255) 0%, rgb(0, 38, 255) 51%, rgb(0, 9, 58) 100%) border-box;
  z-index: -1;
}

.fv__stat-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .fv__stat-top {
    gap: 0.125rem;
  }
}

.fv__stat-circle--02 .fv__stat-top {
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .fv__stat-circle--02 .fv__stat-top {
    gap: 0.3125rem;
  }
}

.fv__stat-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #213AC9;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .fv__stat-label {
    font-size: 1rem;
  }
}

.fv__stat-circle--02 .fv__stat-label,
.fv__stat-circle--03 .fv__stat-label {
  font-size: 1rem;
  color: #2A2F4E;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .fv__stat-circle--02 .fv__stat-label,
  .fv__stat-circle--03 .fv__stat-label {
    font-size: 0.75rem;
  }
}

.fv__stat-number-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.125rem;
}

.fv__stat-number {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1;
  color: #213AC9;
}
.fv__stat-number--large {
  font-size: 2.25rem;
}
@media screen and (max-width: 768px) {
  .fv__stat-number--large {
    font-size: 1.8125rem;
  }
}
@media screen and (max-width: 768px) {
  .fv__stat-number {
    font-size: 1.75rem;
  }
}

.fv__stat-unit {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #213AC9;
}
@media screen and (max-width: 768px) {
  .fv__stat-unit {
    font-size: 1rem;
  }
}

.fv__stat-suffix {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #213AC9;
}
@media screen and (max-width: 768px) {
  .fv__stat-suffix {
    font-size: 1rem;
  }
}

.fv__stat-name-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  width: 100%;
}

.fv__stat-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #213AC9;
}
@media screen and (max-width: 768px) {
  .fv__stat-name {
    font-size: 1.25rem;
  }
}

.fv__stat-name-suffix {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #213AC9;
}
@media screen and (max-width: 768px) {
  .fv__stat-name-suffix {
    font-size: 0.875rem;
  }
}

.fv__stat-name-main {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #213AC9;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .fv__stat-name-main {
    font-size: 1.125rem;
  }
}

.fv__stat-circle--03 .fv__stat-name-main {
  color: #213AC9;
}

.fv__stat-paragraph {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  width: 100%;
  max-width: 138.86px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fv__stat-paragraph {
    gap: 0.125rem;
  }
}

.fv__stat-percent-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.0625rem;
}

.fv__stat-percent {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #213AC9;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .fv__stat-percent {
    font-size: 1.75rem;
  }
}

.fv__stat-percent-unit {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #213AC9;
}
@media screen and (max-width: 768px) {
  .fv__stat-percent-unit {
    font-size: 1.125rem;
  }
}

.fv__stat-percent-suffix {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #213AC9;
}
@media screen and (max-width: 768px) {
  .fv__stat-percent-suffix {
    font-size: 0.875rem;
  }
}

.fv__stat-note {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #213AC9;
  white-space: nowrap;
  text-align: center;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 1.125rem;
}
@media screen and (max-width: 768px) {
  .fv__stat-note {
    font-size: 0.6875rem;
    bottom: 0.4375rem;
  }
}

.fv__notes {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .fv__notes {
    margin-top: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.fv__note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: #2A2F4E;
}
@media screen and (max-width: 768px) {
  .fv__note {
    text-align: left;
    font-size: 0.6875rem;
    line-height: 1.5;
    text-align: right;
  }
}

.fv__img {
  grid-column: 2/3;
  grid-row: 1/3;
  width: 39.625rem;
  aspect-ratio: 634/532;
}
@media screen and (max-width: 768px) {
  .fv__img {
    grid-column: 1/2;
    grid-row: 2/3;
    width: 100%;
  }
}

.btn-block {
  position: relative;
  background: url(../images/new/fv-bottom-bg.webp) no-repeat center/cover;
  padding: 1.875rem 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .btn-block {
    padding: 1rem 0;
  }
}

.btn-block__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  max-width: 90rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 768px) {
  .btn-block__inner {
    max-width: 500px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.75rem;
    padding-inline: 1rem;
  }
}

.btn-block__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.75rem 1.5rem 1rem 1rem;
  border-radius: 0.25rem;
  width: 100%;
  max-width: 30rem;
  position: relative;
  -webkit-transition: background-color border 0.3s ease;
  transition: background-color border 0.3s ease;
}
@media screen and (max-width: 768px) {
  .btn-block__btn {
    max-width: 100%;
    padding: 0.75rem 1rem 1rem 1rem;
  }
}

.btn-block__btn--download {
  background: #fff;
  color: #213AC9;
}

@media (any-hover: hover) {
  .btn-block__btn--download:hover .btn-block__btn-icon {
    background: #fff;
    border: 1px solid #213AC9;
  }
  .btn-block__btn--download:hover .btn-block__btn-icon::before {
    background: #213AC9;
  }
  .btn-block__btn--download:hover .btn-block__btn-icon::after {
    background: #213AC9;
  }
}
.btn-block__btn--download .btn-block__btn-text {
  color: #213AC9;
}

.btn-block__btn--download .btn-block__btn-icon {
  background-color: #213AC9;
}

.btn-block__btn--download .btn-block__btn-icon::before {
  background-color: #213AC9;
}

.btn-block__btn--download .btn-block__btn-icon::after {
  background-color: #fff;
}

.btn-block__btn--consultation {
  background: linear-gradient(135deg, rgb(255, 138, 54) 0%, rgb(232, 97, 0) 100%);
  color: #fff;
}

@media (any-hover: hover) {
  .btn-block__btn--consultation:hover .btn-block__btn-icon {
    background: #fff;
  }
  .btn-block__btn--consultation:hover .btn-block__btn-icon::before {
    background: #FF8026;
  }
  .btn-block__btn--consultation:hover .btn-block__btn-icon::after {
    background: #FF8026;
  }
}
.btn-block__btn--consultation .btn-block__btn-text {
  color: #fff;
}

.btn-block__btn--consultation .btn-block__btn-icon {
  background-color: rgba(255, 255, 255, 0.0823529412);
}

.btn-block__btn--consultation .btn-block__btn-icon::before {
  background-color: #FF8026;
}

.btn-block__btn--consultation .btn-block__btn-icon::after {
  background-color: #fff;
}

.btn-block__btn-text-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.btn-block__btn-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
}

.btn-block__btn-text--01 {
  font-size: 1.375rem;
}
@media screen and (max-width: 768px) {
  .btn-block__btn-text--01 {
    font-size: 1rem;
  }
}

.btn-block__btn-text--02 {
  font-size: 1.75rem;
}
@media screen and (max-width: 768px) {
  .btn-block__btn-text--02 {
    font-size: 1.5rem;
  }
}

.btn-block__btn-icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.25rem;
  overflow: hidden;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}
@media screen and (max-width: 768px) {
  .btn-block__btn-icon {
    width: 1.75rem;
    height: 1.75rem;
    right: 0.75rem;
  }
}

.btn-block__btn-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-200%, -50%);
          transform: translate(-200%, -50%);
  width: 1.25rem;
  aspect-ratio: 12/10;
  -webkit-mask-image: url(../images/new/arrow-right.svg);
          mask-image: url(../images/new/arrow-right.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 768px) {
  .btn-block__btn-icon::before {
    width: 0.875rem;
  }
}

.btn-block__btn-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.25rem;
  aspect-ratio: 12/10;
  -webkit-mask-image: url(../images/new/arrow-right.svg);
          mask-image: url(../images/new/arrow-right.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 768px) {
  .btn-block__btn-icon::after {
    width: 0.875rem;
  }
}

@media (any-hover: hover) {
  .btn-block__btn:hover .btn-block__btn-icon::before {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .btn-block__btn:hover .btn-block__btn-icon::after {
    -webkit-transform: translate(100%, -50%);
            transform: translate(100%, -50%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}
.movie {
  text-align: center;
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .movie {
    margin-top: 3.5rem;
  }
}

@media screen and (max-width: 768px) {
  .inner.movie__inner {
    padding: 0;
  }
}

.movie__file {
  margin-top: 3.5rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
  width: 100%;
  max-width: 50rem;
  height: 28.125rem;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .movie__file {
    max-width: 22.5rem;
    height: 11.25rem;
    margin-top: 2.0625rem;
    border-radius: 6%;
    padding-inline: 1rem;
  }
}

.movie__file iframe {
  width: 100%;
  height: 100%;
}

.movie-logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  white-space: nowrap;
  margin-top: -4.125rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .movie-logo {
    margin-top: -1.625rem;
  }
}

.movie-logo__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: loopText 24s linear infinite;
          animation: loopText 24s linear infinite;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@-webkit-keyframes loopText {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes loopText {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.movie-logo__item {
  padding: 0 2.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 11.5rem;
  font-weight: 900;
  color: #D3D8F4;
  font-family: "Plus Jakarta Sans";
  line-height: 1;
  white-space: nowrap;
  display: block;
}
@media screen and (max-width: 768px) {
  .movie-logo__item {
    font-size: 4.5rem;
    padding: 0 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .section-lead.--move {
    margin-top: 1.25rem;
  }
}

.problem {
  margin-block: 7.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .problem {
    margin-block: 4rem;
    margin-bottom: 3.375rem;
  }
}

.problem-inner {
  width: 100%;
  max-width: 82.5rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .problem-inner {
    padding-inline: 1rem;
    max-width: 23.4375rem;
  }
}

.problem-inner.--sub {
  width: 100%;
  max-width: 70rem;
  padding-inline: 1.25rem;
  height: 100%;
  margin-inline: auto;
}

.problem-mv {
  background: url("../images/new/problem-bg.webp") no-repeat center/cover;
  width: 100%;
  height: auto;
  aspect-ratio: 1280/560;
  color: #fff;
  text-align: center;
  padding-top: 4.4375rem;
  padding-bottom: 4.4375rem;
}
@media screen and (max-width: 768px) {
  .problem-mv {
    background: url("../images/new/problem-bg-sp.webp") no-repeat center/cover;
    width: 100%;
    padding-inline: 1rem;
    padding-top: 2.5rem;
    padding-bottom: 2.75rem;
    line-height: 1.6;
  }
}

.problem-text {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: 900;
  color: #fff;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .problem-text {
    font-size: 1.5rem;
  }
}

.problem-text.--border {
  border-bottom: 1px solid #fff;
}

.problem-text.--bottom {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .problem-text.--bottom {
    font-size: 1.5rem;
    margin-top: 1.875rem;
  }
}

.problem-mv__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 24px;
  padding-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .problem-mv__box {
    font-size: 1.5rem;
    display: block;
  }
}

.problem-mv__note {
  font-weight: 900;
  text-align: left;
}

.problem-mv__ms {
  font-size: 3.5rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .problem-mv__ms {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .problem-mv__ms.--end {
    margin-top: -7px;
    margin-left: 6px;
    letter-spacing: 0.03em;
  }
}

.problem-huge {
  font-size: 8.5rem;
  font-family: "Plus Jakarta Sans";
  line-height: 1;
  letter-spacing: -0.1em;
}
@media screen and (max-width: 768px) {
  .problem-huge {
    font-size: 4rem;
    margin-left: 0.125rem;
  }
}

.problem-lage {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.5;
  font-family: "Plus Jakarta Sans";
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .problem-lage {
    font-size: 3rem;
    letter-spacing: 0;
    margin-left: -0.375rem;
  }
}

.problem-lage.--normal {
  letter-spacing: -0.2em;
}
@media screen and (max-width: 768px) {
  .problem-lage.--normal {
    font-size: 2.75rem;
    letter-spacing: 0;
    margin-left: 0;
  }
}

.problem-medium.--normal {
  letter-spacing: -0.2em;
}
@media screen and (max-width: 768px) {
  .problem-medium.--normal {
    font-size: 2rem;
    letter-spacing: 0;
    margin-left: -0.375rem;
  }
}

@media screen and (max-width: 768px) {
  .problem-medium.--normal.--02 {
    margin-left: -0.375rem;
  }
}

.problem-img {
  width: 100%;
  height: 100%;
  max-width: 19.625rem;
  height: 10.25rem;
}
.problem-img img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .problem-img {
    max-width: 12.625rem;
    height: 6.625rem;
    margin-top: 2rem;
    margin-inline: auto;
    display: block;
  }
  .problem-img img {
    width: 100%;
    height: 100%;
  }
}

.problem-white__box {
  margin-top: 7.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .problem-white__box {
    display: block;
    margin-top: 2.5rem;
  }
}

.problem-white__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .problem-white__wrapper {
    display: block;
  }
}

.problem-white__catch {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .problem-white__catch {
    display: block;
  }
}

.problem-white__heading {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .problem-white__heading {
    font-size: 2rem;
    margin-top: 0.5625rem;
  }
}

.problem__underline {
  display: inline-block;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 1.375rem;
}
@media screen and (max-width: 768px) {
  .problem__underline {
    text-underline-offset: 0.75rem;
  }
}

.problem-white__heading.text-red {
  color: #FF3030;
}

.red-large {
  font-size: 6rem;
  line-height: 1;
  letter-spacing: -0.2em;
  color: #FF3030;
}
@media screen and (max-width: 768px) {
  .red-large {
    font-size: 4rem;
  }
}

.text-red {
  color: #FF3030;
}

.text-red.--problem {
  margin-left: -0.5rem;
}

.en-font-size {
  font-size: 4.5rem;
  line-height: 1.5;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 768px) {
  .en-font-size {
    font-size: 3rem;
    line-height: 1;
  }
}

.problem-white__ms {
  text-align: left;
  width: 100%;
  max-width: 33rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .problem-white__ms {
    gap: 1.5rem;
    margin-top: 2.75rem;
  }
}

.problem-white__text {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: left;
  color: #2A2F4E;
}
@media screen and (max-width: 768px) {
  .problem-white__text {
    font-size: 1.125rem;
  }
}

.problem-white__text.text02 {
  margin-top: 2rem;
}

.problem-white__heading.--sub {
  font-size: 3rem;
  line-height: 1.5;
  margin-top: 12.5rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .problem-white__heading.--sub {
    font-size: 2rem;
    margin-top: 7.1875rem;
  }
}

.problem-white__heading.--sub::after {
  content: "";
  position: absolute;
  top: -9.5rem;
  left: 50%;
  width: 1px;
  height: 7.5rem;
  background: #2A2F4E;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .problem-white__heading.--sub::after {
    top: -5.5rem;
    height: 4.5rem;
  }
}

.problem-item__box {
  padding-top: 5rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 68.25rem;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: auto;
  gap: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .problem-item__box {
    display: block;
    margin-top: 2.8125rem;
    padding-top: 0;
  }
}

.problem-item {
  width: 100%;
  height: 100%;
  max-width: 23.75rem;
  border-radius: 50%;
  border: 1px solid #0C24DA;
  aspect-ratio: 1/1;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin-left: -20px;
}
@media screen and (max-width: 768px) {
  .problem-item {
    margin-left: 0;
    margin-top: -1.1875rem;
  }
}

.problem-item:nth-child(1) {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .problem-item:nth-child(1) {
    margin-top: 0;
  }
}

.problem-number {
  font-size: 3rem;
  font-family: "Plus Jakarta Sans";
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
  color: #0C24DA;
  font-weight: 900;
  position: absolute;
  left: 40%;
  top: -12%;
  -webkit-transform: translate(0%, 50%);
          transform: translate(0%, 50%);
}
@media screen and (max-width: 768px) {
  .problem-number {
    font-size: 2.5rem;
    left: 0rem;
    top: -0.625rem;
    -webkit-transform: translate(50%, 50%);
            transform: translate(50%, 50%);
  }
}

.problem-item__img {
  margin-top: 1.53125rem;
  width: 100%;
  max-width: 5.5rem;
  height: 5.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .problem-item__img {
    max-width: 3.5rem;
    height: 3.5rem;
    margin-top: 0.9375rem;
  }
}

.problem-item__img.--01 {
  margin-top: 3.375rem;
}
@media screen and (max-width: 768px) {
  .problem-item__img.--01 {
    margin-top: 1.125rem;
  }
}

.problem-item__img.--02 {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .problem-item__img.--02 {
    margin-top: 0.9375rem;
  }
}

.problem-item__img img {
  width: 100%;
}

.problem-item__title {
  margin-top: 0.5rem;
  font-size: 1.75rem;
  line-height: 1.8;
  font-weight: 900;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .problem-item__title {
    font-size: 1.5rem;
  }
}

.problem-item__text {
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-top: 1.75rem;
  white-space: normal;
  max-width: 18.625rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .problem-item__text {
    margin-top: 1rem;
    font-size: 1rem;
    max-width: 16.625rem;
  }
}

/* ===============================================
# 文字の装飾
=============================================== */
.en-font {
  font-family: "Plus Jakarta Sans";
  font-weight: 900;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .en-font {
    letter-spacing: 0.05em;
  }
}

.text-grad {
  background: -webkit-gradient(linear, left top, right top, from(#00daf3), color-stop(51%, #1a2aa2), to(#09167f));
  background: linear-gradient(90deg, #00daf3 0%, #1a2aa2 51%, #09167f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-grad.--big {
  font-size: 3.5rem;
}
@media screen and (max-width: 768px) {
  .text-grad.--big {
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 900;
    letter-spacing: 0.01em;
  }
}

.text__small {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .text__small {
    font-size: 1.75rem;
  }
}

.text__small {
  margin-left: -0.25rem;
}

@media screen and (max-width: 768px) {
  .text-heading-sp {
    font-size: 1.75rem;
  }
}

.concern {
  padding-top: 7.5rem;
  margin-inline: auto;
  background: -webkit-gradient(linear, left top, left bottom, from(#F3F4F8), color-stop(55%, #EAECF6), to(#fff));
  background: linear-gradient(to bottom, #F3F4F8 0%, #EAECF6 55%, #fff 100%);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .concern {
    padding-top: 3.75rem;
  }
}

.concern::before,
.concern::after {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 17.5rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .concern::before,
  .concern::after {
    max-width: 6.25rem;
  }
}

.concern::before {
  top: 2.25rem;
  right: calc(50% + 27.5rem);
  background: url("../images/new/concern-deco01.webp") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .concern::before {
    top: 10.4375rem;
    right: calc(50% + 5.5rem);
  }
}

.concern::after {
  content: "";
  top: 11.75rem;
  left: calc(50% + 27.5rem);
  background: url("../images/new/concern-deco02.webp") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .concern::after {
    top: 11.6875rem;
    left: calc(50% + 5.5rem);
  }
}

.concern-ms {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .concern-ms {
    font-size: 1.125rem;
  }
}

.concern-lead {
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .concern-lead {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 768px) {
  .concern-lead.--sp {
    margin-top: 2.5rem;
  }
}

.concern-lead-box {
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .concern-lead-box {
    margin-top: 5.5rem;
  }
}

.concern-lead-box.--warning {
  margin-top: 5.125rem;
}
@media screen and (max-width: 768px) {
  .concern-lead-box.--warning {
    margin-top: 2.5rem;
  }
}

.concern-heading {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .concern-heading {
    margin-top: 0.5rem;
    font-size: 2rem;
  }
}

.concern-items-box {
  display: grid;
  max-width: 67.8125rem;
  -webkit-column-gap: 3.5625rem;
     -moz-column-gap: 3.5625rem;
          column-gap: 3.5625rem;
  row-gap: 2.25rem;
  margin: 4.625rem auto 0;
  place-content: center;
}
@media screen and (max-width: 768px) {
  .concern-items-box {
    max-width: 500px;
    margin: 1.875rem auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}

.concern-items {
  background-color: #fff;
  border-radius: 4px;
  text-align: left;
  padding-inline: 2rem;
  width: 32.125rem;
  height: 13.9375rem;
  place-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .concern-items {
    max-width: 21.0625rem;
    height: auto;
    padding: 0.875rem 0.625rem 1rem 1rem;
    margin-inline: auto;
  }
}

@media screen and (max-width: 768px) {
  .concern-items:nth-child(3) {
    padding: 1rem 0.625rem 1rem 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .concern-items:nth-child(4) {
    padding-left: 0.75rem;
  }
}

.concern-items::before,
.concern-items::after {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 2.25rem;
  height: 2.25rem;
}
@media screen and (max-width: 768px) {
  .concern-items::before,
  .concern-items::after {
    max-width: 1.5625rem;
    height: 1.5625rem;
  }
}

.concern-items::before {
  background: url("../images/new/concern-deco03.webp") no-repeat center/contain;
  top: 0%;
  left: 6%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}

.concern-items::after {
  background: url("../images/new/concern-deco03.webp") no-repeat center/contain;
  bottom: -14%;
  right: 0;
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(180deg);
          transform: translateY(-50%) translateX(-50%) rotate(180deg);
}

.concern-items:last-child:nth-child(odd) {
  grid-column: 1/span 2;
  justify-self: center;
  margin-left: 2.5rem;
}
@media screen and (max-width: 768px) {
  .concern-items:last-child:nth-child(odd) {
    margin-left: 0.75rem;
  }
}

.concern-item {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .concern-item {
    font-size: 1.125rem;
    line-height: 1.8;
    letter-spacing: 0.06em;
  }
}

.concern-item__reverse {
  color: #fff;
  background-color: #2A2F4E;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: 0.3125rem;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding-left: 0.25rem;
  padding-bottom: 0.125rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .concern-item__reverse {
    font-size: 1.125rem;
    letter-spacing: 0.08em;
    padding-left: 0.25rem;
  }
}

.concern-white-bg {
  padding-bottom: 0.1875rem;
  margin-right: -1.875rem;
  background-color: #fff;
}

.concern-item__reverse span {
  background-color: #fff;
  color: #2A2F4E;
  border: #fff 1px solid;
}

.concern-warning {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .concern-warning {
    font-size: 1.75rem;
    margin-top: 1.5rem;
  }
}

.concern .concern-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.concern .concern-deco::before,
.concern .concern-deco::after {
  content: "";
  position: absolute;
  width: 31.25rem;
  height: 31.25rem;
  border-radius: 50%;
  background-color: rgba(113, 167, 255, 0.4);
  -webkit-filter: blur(50px);
          filter: blur(50px);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .concern .concern-deco::before,
  .concern .concern-deco::after {
    width: 15.625rem;
    height: 15.625rem;
    -webkit-filter: blur(30px);
            filter: blur(30px);
  }
}

.concern .concern-deco::before {
  left: calc(50% - 53.25rem);
  top: 109.9375rem;
}
@media screen and (max-width: 768px) {
  .concern .concern-deco::before {
    top: auto;
    bottom: 18.4375rem;
    left: auto;
    right: calc(50% + 3.5rem);
  }
}

.concern .concern-deco::after {
  left: calc(50% + 19rem);
  top: 123.375rem;
}
@media screen and (max-width: 768px) {
  .concern .concern-deco::after {
    top: auto;
    bottom: 4.6875rem;
    left: calc(50% + 1.0625rem);
  }
}

.solution {
  width: 100%;
  margin-top: -8.75rem;
  margin-bottom: -1px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .solution {
    margin-top: -4rem;
  }
}

.solution-top__box {
  background: url("../images/new/solution-bg.webp") no-repeat center/cover;
  padding-top: 15rem;
}
@media screen and (max-width: 768px) {
  .solution-top__box {
    background: url("../images/new/solution-bg-sp.webp") no-repeat center/cover;
    padding-top: 2.5rem;
  }
}

.solution-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .solution-top {
    max-width: 500px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.solution-top__area {
  padding-left: 5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .solution-top__area {
    padding-left: 1rem;
    padding-top: 7.5rem;
  }
}

.solution-top__area::after {
  content: "";
  position: absolute;
  width: 25.9375rem;
  aspect-ratio: 415/382;
  -webkit-transform: translate(100%, 0%);
          transform: translate(100%, 0%);
  top: 0;
  right: 1.75rem;
  background: url("../images/new/solution-staff.webp") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .solution-top__area::after {
    width: 10rem;
    aspect-ratio: 314/280;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    top: 0.6875rem;
    right: -0.25rem;
    background: url("../images/new/solution-staff-sp.webp") no-repeat center/contain;
  }
}

.solution-top-title {
  font-size: 5.375rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #fff;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .solution-top-title {
    font-size: 2rem;
  }
}

.solution-top-img {
  width: 100%;
  height: 21.875rem;
  max-width: 25.9375rem;
  aspect-ratio: 415/350;
}
@media screen and (max-width: 768px) {
  .solution-top-img {
    max-width: 10rem;
    position: relative;
    -webkit-transform: translateX(50%) translateY(0%);
            transform: translateX(50%) translateY(0%);
    top: 1.5625rem;
    right: -8.75rem;
  }
}
.solution-top-img img {
  width: 100%;
  aspect-ratio: 451/380;
}
@media screen and (max-width: 768px) {
  .solution-top-img img {
    aspect-ratio: 160/140;
  }
}

.solution-top-lead {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #fff;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .solution-top-lead {
    font-size: 1.125rem;
    margin-top: 1.5rem;
  }
}

.solution-top-circles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  height: auto;
  margin-top: 5rem;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 768px) {
  .solution-top-circles {
    margin-top: 0;
    padding-inline: 1.34375rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.solution-top-ms {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .solution-top-ms {
    font-size: 1.375rem;
  }
}

.solution-top-text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .solution-top-text {
    font-size: 1rem;
  }
}

.solution-top-circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding: 16px;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  max-width: 28.3125rem;
  aspect-ratio: 453/453;
  border: 1px solid #dadce3;
  background: linear-gradient(135deg, rgba(28, 54, 200, 0.7) 0%, rgba(75, 95, 211, 0.7) 50%, rgba(29, 55, 199, 0.7) 100%);
  margin-left: -2.1875rem;
}
@media screen and (max-width: 768px) {
  .solution-top-circle {
    max-width: 18.75rem;
    aspect-ratio: 300/300;
    margin-top: -2.5rem;
    gap: 1rem;
    margin-left: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: linear-gradient(135deg, rgba(28, 54, 200, 0.7) 0%, rgba(75, 95, 211, 0.7) 50%, rgba(29, 55, 199, 0.7) 100%);
  }
}

.solution-top-circle:first-child {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .solution-top-circle:first-child {
    margin-top: 2.5rem;
  }
}

.solution-bottom-bg {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(10%, rgba(38, 63, 201, 0)), to(#fff));
  background: linear-gradient(180deg, transparent, rgba(38, 63, 201, 0) 10%, #fff 100%);
  width: 100%;
  height: 28.125rem;
  margin: -21.875rem 0 -0.0625rem;
}
@media screen and (max-width: 768px) {
  .solution-bottom-bg {
    height: 25.375rem;
  }
}

.solution-center__feature {
  background-color: #fff;
  padding-top: 6rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .solution-center__feature {
    padding-top: 0rem;
  }
}

@media screen and (min-width: 1440px) {
  .solution-center__feature::before {
    content: "";
    position: absolute;
    top: 1.4375rem;
    right: -4.4375rem;
    width: 39.7222222222vw;
    max-width: 690px;
    aspect-ratio: 572/733;
    background: url("../images/new/solution-img.webp") no-repeat center/contain;
  }
}

.solution-center__inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-left: 2.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .solution-center__inner {
    max-width: 500px;
    padding: 3.125rem 0.75rem 0 1rem;
  }
}

.solution-center__inner::after {
  content: "";
  position: absolute;
  top: -1.0625rem;
  right: -4.4375rem;
  width: 35.75rem;
  aspect-ratio: 572/733;
  background: url("../images/new/solution-img.webp") no-repeat center/contain;
}
@media screen and (min-width: 1440px) {
  .solution-center__inner::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .solution-center__inner::after {
    background: url(../images/new/solution-img_sp.webp) no-repeat center/contain;
    width: 100%;
    aspect-ratio: 750/964;
    top: auto;
    bottom: 19.6875rem;
  }
}

.solution-center__heading {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .solution-center__heading {
    min-width: 21.4375rem;
  }
}

.solution-center {
  font-size: 4rem;
  line-height: 1.54;
  letter-spacing: 0.03em;
  text-align: left;
  color: #2A2F4E;
  font-weight: 900;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .solution-center {
    font-size: 2.5rem;
    line-height: 1.5;
  }
}

@media screen and (max-width: 768px) {
  .solution-center.--small {
    font-size: 2rem;
  }
}

.solution-center.--blue {
  color: #213AC9;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .solution-center.--blue {
    font-size: 2rem;
    margin-top: 0;
  }
}

.solution-underline {
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 1.875rem;
  text-decoration-color: #2A2F4E;
}
@media screen and (max-width: 768px) {
  .solution-underline {
    text-underline-offset: 0.875rem;
    line-height: 1.5;
  }
}

.solution-center.--blue .solution-underline {
  text-decoration-color: #2A2F4E;
}

.solution-center-en {
  font-size: 4.75rem;
  font-family: "Plus Jakarta Sans";
  vertical-align: -3px;
}
@media screen and (max-width: 768px) {
  .solution-center-en {
    font-size: 2.5rem;
    line-height: 1.5;
  }
}

.solution-center__text {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: left;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .solution-center__text {
    font-size: 1.125rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 3;
  }
}

@media screen and (max-width: 768px) {
  .solution-center__bottom {
    margin-top: 28.8125rem;
  }
}

.solution-center__text.--wide {
  line-height: 1.8;
}

.solution-center__emphasis {
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: left;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .solution-center__emphasis {
    font-size: 1.375rem;
    line-height: 1.6;
  }
}

.solution-center__emphasis.--second {
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .solution-center__emphasis.--second {
    margin-top: 1.5rem;
    font-size: 1.75rem;
    line-height: 1.5;
  }
}

.solution-center__emphasis.--second .text__small {
  font-size: 2rem;
  letter-spacing: -0.06em;
  display: inline-block;
  margin-left: -0.625rem;
}
@media screen and (max-width: 768px) {
  .solution-center__emphasis.--second .text__small {
    font-size: 1.75rem;
  }
}

.solution-center__emphasis .text-grad.--lg {
  font-size: 3rem;
  margin-left: -0.5rem;
}
@media screen and (max-width: 768px) {
  .solution-center__emphasis .text-grad.--lg {
    margin-left: 0;
    font-size: 2.25rem;
    line-height: 1.5;
    font-weight: 900;
  }
}

@media screen and (max-width: 768px) {
  .solution-center__emphasis .bansou {
    background: -webkit-gradient(linear, left top, right top, from(#00daf3), color-stop(51%, #1a2aa2), to(#09167f));
    background: linear-gradient(90deg, #00daf3 0%, #1a2aa2 51%, #09167f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.solution-bottom__box {
  margin-block: 6rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .solution-bottom__box {
    margin-block: 3.5rem;
  }
}

.solution-bottom-inner {
  padding-inline: 2.5rem;
}
@media screen and (max-width: 768px) {
  .solution-bottom-inner {
    padding-inline: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .solution-bottom-titles {
    text-align: center;
  }
}

.solution-bottom-title {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .solution-bottom-title {
    font-size: 1.5rem;
    line-height: 2;
  }
}

@media screen and (max-width: 768px) {
  .solution-bottom-small {
    font-size: 1.5rem;
  }
}

.solution-logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 5.5rem;
}
@media screen and (max-width: 768px) {
  .solution-logo {
    margin-top: 3.5rem;
  }
}

.solution-logo__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: loopText 24s linear infinite;
          animation: loopText 24s linear infinite;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.solution-logo__item {
  padding: 0 2.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 11.5rem;
  font-weight: 900;
  color: #D3D8F4;
  font-family: "Plus Jakarta Sans";
  line-height: 1;
  white-space: nowrap;
  display: block;
}
@media screen and (max-width: 768px) {
  .solution-logo__item {
    font-size: 4.5rem;
    padding: 0 1.25rem;
  }
}

.solution-bottom__menu.--blue.solution-bottom__menu01 {
  grid-area: a;
}

.solution-bottom__menu.solution-bottom__menu02 {
  grid-area: b;
}

.solution-bottom__menu.--blue.solution-bottom__menu03 {
  grid-area: c;
}

.solution-bottom__menu.solution-bottom__menu04 {
  grid-area: d;
}

.solution-bottom__menu.solution-bottom__menu05 {
  grid-area: e;
}

.solution-bottom__menu.--blue.solution-bottom__menu06 {
  grid-area: f;
}

.solution-bottom__menu.solution-bottom__menu07 {
  grid-area: g;
}

.solution-bottom__menu.--blue.solution-bottom__menu08 {
  grid-area: h;
}

.solution-bottom__lists > :nth-child(4n) {
  margin-right: 0;
}

.solution-bottom__lists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  max-width: 85rem;
  margin-top: 3.75rem;
  margin-inline: auto;
  grid-template-areas: "a b c d" "e f g h";
}
@media screen and (max-width: 768px) {
  .solution-bottom__lists {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    max-width: 21.4375rem;
    margin-top: 1.625rem;
    gap: 0.5rem;
    grid-template-areas: "a b" "e f" "c d" "g h";
  }
}

.solution-bottom__menu {
  padding-left: 2rem;
  padding-top: 2rem;
  max-width: 20.5rem;
  height: auto;
  background-color: #fff;
  color: #213AC9;
  border: 1px solid #213AC9;
  aspect-ratio: 328/300;
  border-radius: 0.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .solution-bottom__menu {
    max-width: 10.4375rem;
    padding-left: 0;
    padding-inline: 0.75rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    aspect-ratio: 167/244;
    padding-right: 0.625rem;
  }
}

.solution-bottom__menu::before {
  content: "";
  position: absolute;
  -webkit-transform: translateY(50%) translateX(100%);
          transform: translateY(50%) translateX(100%);
  width: 100%;
  left: 2.5rem;
  top: 5rem;
  max-width: 8.375rem;
  height: 8.375rem;
}
@media screen and (max-width: 768px) {
  .solution-bottom__menu::before {
    max-width: 5.5rem;
    height: 5.5rem;
    -webkit-transform: translateY(50%) translateX(100%);
            transform: translateY(50%) translateX(100%);
    left: -1.25rem;
    top: 6.5rem;
  }
}

.solution-bottom__menu01::before {
  background: url(../images/new/solution-icon01.webp) no-repeat center/contain;
  grid-area: a;
}

.solution-bottom__menu02::before {
  background: url(../images/new/solution-icon02.webp) no-repeat center/contain;
  grid-area: b;
}

.solution-bottom__menu03::before {
  background: url(../images/new/solution-icon03.webp) no-repeat center/contain;
  grid-area: c;
}

.solution-bottom__menu04::before {
  background: url(../images/new/solution-icon04.webp) no-repeat center/contain;
  grid-area: d;
}

.solution-bottom__menu05::before {
  background: url(../images/new/solution-icon05.webp) no-repeat center/contain;
  grid-area: e;
}

.solution-bottom__menu06::before {
  background: url(../images/new/solution-icon06.webp) no-repeat center/contain;
  grid-area: f;
}

.solution-bottom__menu07::before {
  background: url(../images/new/solution-icon07.webp) no-repeat center/contain;
  grid-area: g;
}

.solution-bottom__menu08::before {
  background: url(../images/new/solution-icon08.webp) no-repeat center/contain;
  grid-area: h;
}

.solution-bottom__menu.--blue {
  background-color: #213AC9;
  color: #fff;
}

.solution-bottom__item {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .solution-bottom__item {
    font-size: 1.125rem;
    line-height: 1.3;
  }
}

.solution-bottom__text {
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: left;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .solution-bottom__text {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 0.75rem;
  }
}

.strength {
  margin-top: 5.75rem;
  margin-bottom: 7.5rem;
  width: 100%;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .strength {
    margin: 3.5rem 0;
  }
}

.strength-inner {
  width: 100%;
  max-width: 90rem;
  padding-inline: 5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .strength-inner {
    max-width: 23.4375rem;
    padding-inline: 1rem;
  }
}

.strength-future__heading-img {
  position: relative;
  z-index: 1;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .strength-future__heading-img {
    margin-top: 1rem;
  }
}

.strength-no {
  font-size: 1.125rem;
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-align: left;
  color: #585961;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .strength-no {
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
  }
}

.strength-future-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 6.625rem;
  gap: 4.6875rem;
}
@media screen and (max-width: 768px) {
  .strength-future-sec {
    margin-top: 3.5rem;
    gap: 1.5rem;
  }
}

.strength-future-sec.--future {
  margin-top: 12.5rem;
}
@media screen and (max-width: 768px) {
  .strength-future-sec.--future {
    margin-top: 5rem;
  }
}

.strength-future-sec.--future.--02 {
  padding-bottom: 2.25rem;
  margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  .strength-future-sec.--future.--02 {
    margin-top: 5rem;
    padding-bottom: 0;
  }
}

.strength-title {
  font-size: 4.5rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: 900;
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .strength-title {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .strength-title.--sp {
    font-size: 2.25rem;
  }
}

.strength-title.--top {
  margin-left: -0.5rem;
}

@media screen and (max-width: 768px) {
  .strength-future__heading.--01 {
    width: 100%;
  }
}

.strength-future__heading-img {
  width: 100%;
  height: 100%;
  max-width: 36.625rem;
  aspect-ratio: 586/68;
}
@media screen and (max-width: 768px) {
  .strength-future__heading-img {
    max-width: 19.25rem;
    height: 2.1875rem;
  }
}
.strength-future__heading-img img {
  width: 100%;
  height: auto;
}

.strength-future__heading-img.--future03 {
  max-width: 56.875rem;
  aspect-ratio: 910/70;
}
@media screen and (max-width: 768px) {
  .strength-future__heading-img.--future03 {
    max-width: 19.375rem;
    aspect-ratio: 310/82;
  }
}

.strength-future-box {
  font-size: 3.25rem;
}
@media screen and (max-width: 768px) {
  .strength-future-box {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}

@media screen and (max-width: 768px) {
  .strength-future-box.--03 .strength-item__text.--large {
    margin-top: 0.5rem;
  }
}

.strength-future__heading {
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 0;
}

.strength-future__heading::after {
  position: absolute;
  font-size: 12.625rem;
  font-family: "Plus Jakarta Sans";
  color: #f3f9ff;
  line-height: 0.7425742574;
  text-align: right;
  z-index: -1;
  right: 0;
  top: -5.4375rem;
  margin: 0 calc(50% - 50vw);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .strength-future__heading::after {
    margin: 0;
    font-size: 3.5rem;
    line-height: 0.75;
    right: 0;
    top: -2.625rem;
    z-index: -2;
  }
}

.strength-future__heading.--01::after {
  content: "Feature.01";
}

.strength-future__heading.--02::after {
  content: "Feature.02";
}

.strength-future__heading.--03::after {
  content: "Feature.03";
}

.strength-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 80rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .strength-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.strength-box:nth-child(5) {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .strength-box.--middle {
    margin-top: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .strength-box.--03 {
    margin-top: 2.1875rem;
  }
}

@media screen and (max-width: 768px) {
  .strength-box.--03 .strength-item__text.--second {
    margin-top: 0.5rem;
  }
}

.strength-items {
  width: 100%;
  max-width: 42.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-block: auto;
}
@media screen and (max-width: 768px) {
  .strength-items {
    max-width: 21.4375rem;
    -webkit-box-align: left;
        -ms-flex-align: left;
            align-items: left;
    gap: 0.5rem;
  }
}

@media screen and (max-width: 768px) {
  .strength-items.--04 {
    gap: 0.3125rem;
  }
}

@media screen and (max-width: 768px) {
  .strength-items.--02 {
    margin-top: 1.875rem;
  }
}

@media screen and (max-width: 768px) {
  .strength-items.--05,
  .strength-items.--03 {
    gap: 0;
  }
}

.strength-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.125rem;
  background-color: #213AC9;
  border-radius: 120px;
  max-width: 5.625rem;
  height: 2.625rem;
}
@media screen and (max-width: 768px) {
  .strength-item {
    max-width: 3.5625rem;
    height: 1.75rem;
  }
}

.strength-item.--03 {
  margin-bottom: 0.75rem;
}

.strength-item__no {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .strength-item__no {
    font-size: 0.875rem;
  }
}

.strength-item__no.--en {
  font-size: 2rem;
  font-family: "Plus Jakarta Sans";
  line-height: 1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .strength-item__no.--en {
    font-size: 1.375rem;
  }
}

.strength-item__text {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .strength-item__text {
    font-size: 1.375rem;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .strength-item__text.mt8 {
    margin-top: 0.5rem;
  }
}

.strength-item__text.--top {
  margin-top: -0.1875rem;
}
.strength-item__text .strength-strong {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .strength-item__text .strength-strong {
    font-size: 2rem;
  }
}

.strength-item__text .strength-item__text-en.strength-strong {
  letter-spacing: -0.07em;
}

.strength-item__text.--future .strength-strong {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .strength-item__text.--future .strength-strong {
    font-size: 1.5rem;
  }
}

.strength-item__text-en {
  font-family: "Plus Jakarta Sans";
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .strength-item__text-en {
    font-size: 2.25rem;
  }
}

.strength-gra__blue {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  padding-left: 0.5rem;
  padding-right: 1rem;
  margin-right: 0.375rem;
  margin-top: 1rem;
  font-style: oblique;
  background: -webkit-gradient(linear, left top, right top, from(#203fef), to(#0c1ea0));
  background: linear-gradient(90deg, #203fef 0%, #0c1ea0 100%);
}
@media screen and (max-width: 768px) {
  .strength-gra__blue {
    font-size: 1.5rem;
    letter-spacing: 0.07em;
    padding-left: 0.25rem;
    padding-right: 0.5rem;
  }
}

.strength-gra__blue.--large {
  font-size: 3rem;
  letter-spacing: 0.07em;
  padding-bottom: 0.25rem;
}
@media screen and (max-width: 768px) {
  .strength-gra__blue.--large {
    font-size: 1.5rem;
    padding: 0 0.25rem 0.125rem 0.25rem;
  }
}

.strength-img {
  width: 100%;
  height: auto;
  max-width: 35.625rem;
  aspect-ratio: 570/380;
}
@media screen and (max-width: 768px) {
  .strength-img {
    max-width: 21.4375rem;
    aspect-ratio: 343/228;
  }
}
.strength-img img {
  width: 100%;
}

.strength-img.future {
  position: absolute;
  top: 20%;
}

.strength-catch {
  width: 100%;
  max-width: 67.5rem;
  margin-inline: auto;
  margin-top: 5rem;
  padding-block: 4rem;
  padding-inline: 4rem;
  background-color: #F6F7FA;
  text-align: center;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .strength-catch {
    padding-inline: 1rem;
    padding-block: 2.5rem;
    max-width: 21.4375rem;
    margin-top: 2.5rem;
  }
}

.strength-catch__title-en {
  display: inline-block;
  font-size: 1.125rem;
  font-family: "Plus Jakarta Sans";
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: 900;
  background: -webkit-gradient(linear, left top, right top, from(#00daf3), color-stop(51%, #1a2aa2), to(#09167f));
  background: linear-gradient(90deg, #00daf3 0%, #1a2aa2 51%, #09167f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .strength-catch__title-en {
    font-size: 0.75rem;
  }
}

.strength-catch__title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 0.5rem;
  border-bottom: 1px solid #2A2F4E;
  margin-top: 0.625rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .strength-catch__title {
    margin-top: 0.5rem;
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
  }
}

.strength-catch__lead {
  line-height: 1.8;
  letter-spacing: 0.03em;
  font-size: 1.375rem;
  font-weight: 900;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .strength-catch__lead {
    font-size: 1.125rem;
    margin-top: 1rem;
  }
}

.strength-catch__lead.--blue {
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  color: #213AC9;
}
@media screen and (max-width: 768px) {
  .strength-catch__lead.--blue {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.strength-future-box {
  position: relative;
}

@media screen and (max-width: 768px) {
  .strength-future-box.--future {
    margin-top: 15.625rem;
  }
}

@media screen and (max-width: 768px) {
  .strength-future-box.--future.--03 {
    margin-top: 18.75rem;
  }
}

.strength-future-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1.25rem;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .strength-future-items {
    gap: 1rem;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .strength-future-items:nth-child(2) {
    border-top: 1px solid #2A2F4E;
    padding-top: 20px;
  }
}

.strength-item__lead {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .strength-item__lead {
    font-size: 1.125rem;
    font-weight: 700;
    gap: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .strength-item__lead.--future02 {
    border-top: 1px solid #2A2F4E;
    padding-top: 1.5rem;
  }
}

.strength-img.--future {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50%;
}
@media screen and (max-width: 768px) {
  .strength-img.--future {
    right: 0;
    top: -29.6875rem;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    width: 100%;
  }
}

.strength-img.--future.--03 {
  top: 40%;
}
@media screen and (max-width: 768px) {
  .strength-img.--future.--03 {
    top: -29.875rem;
  }
}

.strength-en-font {
  font-size: 5.25rem;
  font-family: "Plus Jakarta Sans";
}
@media screen and (max-width: 768px) {
  .strength-en-font {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .strength-jp-middle {
    font-size: 1.5rem;
  }
}

.strength-en-exbold {
  font-size: 9.75rem;
  font-family: "Plus Jakarta Sans";
  line-height: 1;
  vertical-align: -10px;
  margin-left: -0.75rem;
}
@media screen and (max-width: 768px) {
  .strength-en-exbold {
    font-size: 5rem;
  }
}

@media screen and (max-width: 768px) {
  .strength-en-exbold.text-grad {
    margin-left: -0.375rem;
  }
}

.strength-en-bold.--no {
  font-size: 5.5rem;
  font-family: "Plus Jakarta Sans";
}
@media screen and (max-width: 768px) {
  .strength-en-bold.--no {
    font-size: 3rem;
  }
}

.strength-jp-exbold {
  font-size: 7.5rem;
  font-weight: 900;
  margin-left: -1rem;
}
@media screen and (max-width: 768px) {
  .strength-jp-exbold {
    font-size: 3.5rem;
    margin-left: -0.625rem;
  }
}

.case {
  text-align: center;
  padding-block: 7.5rem;
  background-color: #F6F7FA;
}
@media screen and (max-width: 768px) {
  .case {
    padding-block: 3.5rem;
  }
}

.case-title::after {
  content: "CASE";
  left: 30%;
  top: -100%;
}
@media screen and (max-width: 768px) {
  .case-title::after {
    left: -8%;
    top: 40%;
    -webkit-transform: translateY(-50%) translateX(50%);
            transform: translateY(-50%) translateX(50%);
  }
}

.case-inner {
  width: 100%;
  max-width: 80rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .case-inner {
    max-width: 23.4375rem;
    padding-inline: 1rem;
  }
}

.case-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  max-width: 67.5rem;
  margin-inline: auto;
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .case-wrapper {
    margin-top: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.case-box {
  background-color: #fff;
  width: 100%;
  max-width: 32.5rem;
  padding: 1.5rem;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .case-box {
    max-width: 23.4375rem;
    padding: 1rem;
    margin-bottom: 1rem;
  }
}
.case-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.0625rem;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#00daf3), color-stop(51%, #1a2aa2), to(#09167f));
  background: linear-gradient(180deg, #00daf3 0%, #1a2aa2 51%, #09167f 100%);
}

.case-blue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  color: #213AC9;
  gap: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .case-blue {
    font-size: 0.8125rem;
  }
}

.case-plan {
  border-radius: 151px;
  width: 4.3125rem;
  height: 1.625rem;
  border: 1px solid #213ac9;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .case-plan {
    font-size: 0.6875rem;
    height: 1.3125rem;
    width: 3.5625rem;
  }
}

.case-item {
  font-size: 1.75rem;
  font-family: "Noto Sans JP";
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: left;
  color: #333333;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .case-item {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-top: 0.25rem;
  }
}

.case-note {
  margin-top: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .case-note {
    margin-top: 0.75rem;
  }
}

.case-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #213AC9;
  letter-spacing: 0.03em;
  line-height: 1.5;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .case-link a {
    font-size: 0.875rem;
    margin-top: 2rem;
  }
}

.case-link .arrow {
  width: 1.25rem;
  margin-left: 0.75rem;
  aspect-ratio: 1/1;
  background: #213AC9;
  border: 1px solid #213AC9;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}

.case-link .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-200%, -50%);
          transform: translate(-200%, -50%);
  width: 0.625rem;
  aspect-ratio: 10/8;
  -webkit-mask-image: url(../images/new/arrow-right.svg);
          mask-image: url(../images/new/arrow-right.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #213AC9;
  -webkit-transition: none;
  transition: none;
}

.case-link .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.625rem;
  aspect-ratio: 10/8;
  -webkit-mask-image: url(../images/new/arrow-right.svg);
          mask-image: url(../images/new/arrow-right.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  -webkit-transition: none;
  transition: none;
}

@media (any-hover: hover) {
  .case-link a:hover .arrow::before {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .case-link a:hover .arrow::after {
    -webkit-transform: translate(100%, -50%);
            transform: translate(100%, -50%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .case-link a:hover .arrow {
    background: #fff;
  }
  .case-link a:hover .arrow::after {
    background-color: #213AC9;
  }
}
.case-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#283ff1), to(#0d21b9));
  background: linear-gradient(180deg, #283ff1 0%, #0d21b9 100%);
  border-radius: 4px;
  width: 100%;
  max-width: 18.75rem;
  height: auto;
  margin-inline: auto;
  margin-top: 3.5rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #fff;
  text-align: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  position: relative;
}
@media screen and (max-width: 768px) {
  .case-btn a {
    max-width: 21.4375rem;
    margin-top: 0.5rem;
    font-size: 1.125rem;
  }
}

.case-btn .arrow {
  width: 2rem;
  aspect-ratio: 1/1;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.0823529412);
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  overflow: hidden;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}

.case-btn .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-200%, -50%);
          transform: translate(-200%, -50%);
  width: 1rem;
  aspect-ratio: 16/13;
  -webkit-mask-image: url(../images/new/arrow-right.svg);
          mask-image: url(../images/new/arrow-right.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #213AC9;
  -webkit-transition: none;
  transition: none;
}

.case-btn .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1rem;
  aspect-ratio: 16/13;
  -webkit-mask-image: url(../images/new/arrow-right.svg);
          mask-image: url(../images/new/arrow-right.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  -webkit-transition: none;
  transition: none;
}

@media (any-hover: hover) {
  .case-btn a:hover .arrow::before {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .case-btn a:hover .arrow::after {
    -webkit-transform: translate(100%, -50%);
            transform: translate(100%, -50%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .case-btn a:hover .arrow {
    background: #fff;
  }
  .case-btn a:hover .arrow::after {
    background-color: #213AC9;
  }
}
.contact__block {
  padding: 7.5rem 0;
  background: #F6F7FA;
}
@media screen and (max-width: 768px) {
  .contact__block {
    padding: 3.5rem 0;
  }
}

@media screen and (max-width: 768px) {
  .section-title.contact-title {
    line-height: 1.5;
  }
}

.contact-title::after {
  content: "CONTACT";
  left: 15%;
  top: -100%;
}
@media screen and (max-width: 768px) {
  .contact-title::after {
    left: 50%;
    top: -1rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.contact__text {
  margin-top: 3.5rem;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__text {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.faq {
  background-color: #F6F7FA;
  padding-bottom: 7.5rem;
  padding-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .faq {
    padding-bottom: 3.5rem;
    padding-top: 3.5rem;
  }
}

summary {
  display: block;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
@media (any-hover: hover) {
  summary:hover {
    cursor: pointer;
  }
}

.faq-inner {
  width: 100%;
  max-width: 72.5rem;
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .faq-inner {
    max-width: 23.4375rem;
    padding-inline: 1rem;
  }
}

.faq-title::after {
  content: "FAQ";
  left: 33%;
  top: -100%;
}
@media screen and (max-width: 768px) {
  .faq-title::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -1rem;
  }
}

.faq-items {
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .faq-items {
    margin-top: 1.5rem;
  }
}

.faq-item {
  padding: 2rem 1.5rem 2rem;
  border-bottom: 1px solid #DADCE3;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media screen and (max-width: 768px) {
  .faq-item {
    font-size: 1rem;
    padding: 0rem;
  }
}

.faq-item.is-opened {
  background-color: #fff;
}

.faq-item-question {
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  position: relative;
}
@media screen and (max-width: 768px) {
  .faq-item-question {
    padding: 1rem 2.5rem 1rem 2.6875rem;
  }
}

@media screen and (max-width: 768px) {
  .faq-item.is-opened .faq-item-question {
    padding: 1rem 2.5rem 1rem 2.6875rem;
  }
}

.faq-item-question::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 2rem;
  height: 2rem;
  background: url("../images/new/faq-arrow.webp") no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .faq-item-question::after {
    width: 1.5rem;
    height: 1.5rem;
    right: 0.5rem;
  }
}

.faq-item-question-text {
  position: relative;
  padding-inline: 2.8125rem 2.1875rem;
  width: 100%;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .faq-item-question-text {
    padding: 0;
    font-size: 1rem;
  }
}

.faq-item-question-text::after {
  content: "Q.";
  position: absolute;
  top: 0.5lh;
  translate: 0 -50%;
  left: 0;
  font-size: 1.75rem;
  font-family: "Plus Jakarta Sans";
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-align: left;
  color: #213AC9;
}
@media screen and (max-width: 768px) {
  .faq-item-question-text::after {
    font-size: 1.25rem;
    left: -2.1875rem;
  }
}

.faq-item.is-opened .faq-item-question::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.faq-item-answer {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s ease, opacity 0.3s ease;
  transition: height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .faq-item-answer {
    padding-left: 1rem;
  }
}

.faq-item-answer-text {
  padding-top: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: left;
  padding-right: 2rem;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .faq-item-answer-text {
    font-size: 0.8125rem;
    padding: 0 1rem 1.5rem 0;
  }
}

.flow {
  text-align: left;
  margin-inline: auto;
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .flow {
    padding: 3.5rem 0;
  }
}

.section-title.flow-title::after {
  content: "FLOW";
  left: 27%;
  top: -100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#d3d8f4), to(#FBFCFF)), no-repeat;
  background: linear-gradient(180deg, #d3d8f4 0%, #FBFCFF 100%), no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 768px) {
  .section-title.flow-title::after {
    left: 50%;
    top: -1rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.flow-text {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: center;
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .flow-text {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.flow-step-group {
  margin-top: 3.25rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
  max-width: 54.1875rem;
}
@media screen and (max-width: 768px) {
  .flow-step-group {
    margin-top: 1.5rem;
    padding-inline: 0rem;
    max-width: 21.4375rem;
  }
}

.flow-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  text-align: left;
  gap: 2rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .flow-step {
    gap: 1rem;
    padding-bottom: 1.5rem;
  }
}

.flow-step-no__box {
  max-width: 4rem;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .flow-step-no__box {
    max-width: 2.5rem;
  }
}

.flow-step-no__box::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 110%;
  background-color: #585961;
  width: 1px;
  height: 4.375rem;
}
.flow-step-no__box.--06::before {
  content: none;
}

.flow-step-no {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background-color: #213AC9;
  border-radius: 50px;
  width: 4rem;
  height: 4rem;
  color: #fff;
  font-size: 1.5rem;
  font-family: "Plus Jakarta Sans";
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flow-step-no {
    max-width: 2.5rem;
    height: 2.5rem;
  }
}

.flow-step-heading {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .flow-step-heading {
    font-size: 1.25rem;
  }
}

.flow-step-lead {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: left;
  margin-top: 1.125rem;
}
@media screen and (max-width: 768px) {
  .flow-step-lead {
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 768px) {
  .flow-step-list {
    min-width: 17.625rem;
  }
}

.flow-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.75rem 2rem 1rem 1rem;
  background: -webkit-gradient(linear, left top, right top, from(#ff8a36), to(#e86100));
  background: linear-gradient(90deg, #ff8a36 0%, #e86100 100%);
  border-radius: 4px;
  width: 100%;
  max-width: 30rem;
  height: 6.0625rem;
  margin-top: 3.5rem;
  margin-inline: auto;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .flow-btn a {
    margin-top: 1.5rem;
  }
}

.flow-btn a .arrow {
  width: 2.5rem;
  aspect-ratio: 1/1;
  background: rgba(255, 255, 255, 0.0823529412);
  border-radius: 4px;
  position: absolute;
  overflow: hidden;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}
.flow-btn a .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-200%, -50%);
          transform: translate(-200%, -50%);
  width: 1.25rem;
  aspect-ratio: 20/16;
  -webkit-mask-image: url(../images/new/arrow-right.svg);
          mask-image: url(../images/new/arrow-right.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #FF8026;
  -webkit-transition: none;
  transition: none;
}
.flow-btn a .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.25rem;
  aspect-ratio: 20/16;
  -webkit-mask-image: url(../images/new/arrow-right.svg);
          mask-image: url(../images/new/arrow-right.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  -webkit-transition: none;
  transition: none;
}

@media (any-hover: hover) {
  .flow-btn:hover a .arrow::before {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .flow-btn:hover a .arrow::after {
    -webkit-transform: translate(100%, -50%);
            transform: translate(100%, -50%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}
@media (any-hover: hover) {
  .flow-btn:hover a .arrow {
    background: #fff;
  }
  .flow-btn:hover a .arrow::after {
    background-color: #FF8026;
  }
}
.flow-btn-note {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flow-btn-note {
    font-size: 1.125rem;
  }
}

.flow-btn-text {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flow-btn-text {
    font-size: 1.25rem;
  }
}

.plan {
  text-align: center;
  padding-top: 7.5rem;
  background-color: #F6F7FA;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .plan {
    padding: 3.5rem 0;
  }
}

.plan-inner {
  width: 100%;
  max-width: 80rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
}

.plan-title::after {
  content: "PLAN";
  left: 30%;
  top: -100%;
}
@media screen and (max-width: 768px) {
  .plan-title::after {
    left: 50%;
    top: -1rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.plan__contents {
  margin-top: 3.5rem;
  overflow-x: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .plan__contents {
    margin-top: 1.5rem;
  }
}

.plan-table-scroll-hint {
  display: none;
  position: absolute;
  right: 50%;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  z-index: 10;
  pointer-events: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(246, 247, 250, 0)), color-stop(20%, rgba(246, 247, 250, 0.8)), to(rgb(246, 247, 250)));
  background: linear-gradient(90deg, rgba(246, 247, 250, 0) 0%, rgba(246, 247, 250, 0.8) 20%, rgb(246, 247, 250) 100%);
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
@media screen and (max-width: 768px) {
  .plan-table-scroll-hint {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.plan-table-scroll-hint.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.plan-table-scroll-hint__icon {
  width: 1.5rem;
  height: 1.5rem;
  -webkit-animation: scroll-hint-bounce 1.5s ease-in-out infinite;
          animation: scroll-hint-bounce 1.5s ease-in-out infinite;
}

.plan-table-scroll-hint__text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #2A2F4E;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@-webkit-keyframes scroll-hint-bounce {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
}

@keyframes scroll-hint-bounce {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
}
.plan-table {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
@media screen and (min-width: 496px) {
  .plan-table {
    padding-left: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .plan-table {
    width: 31rem;
    gap: 0;
    padding-left: 0;
  }
}

.plan-table__row {
  display: grid;
  grid-template-columns: 160px repeat(3, 1fr);
  gap: 0.375rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .plan-table__row {
    grid-template-columns: 4.0625rem repeat(3, 1fr);
    -webkit-column-gap: 0.25rem;
       -moz-column-gap: 0.25rem;
            column-gap: 0.25rem;
    row-gap: 0.5rem;
    padding: 0.25rem 0;
  }
}

.plan-table__row::before {
  content: "";
  position: absolute;
  top: -0.375rem;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: #DADCE3;
}
@media screen and (max-width: 768px) {
  .plan-table__row::before {
    top: 0rem;
  }
}

.plan-table__label {
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .plan-table__label {
    padding: 0;
    width: 4.0625rem;
  }
}

@media screen and (max-width: 768px) {
  .plan-table__row--head {
    gap: 0.375rem;
    padding: 0.375rem 0;
  }
  .plan-table__row--head::before {
    top: -0.375rem;
  }
  .plan-table__row--head .plan-table__label {
    background-color: transparent;
  }
}

.plan-table__row--head .plan-table__label {
  background-color: #F6F7FA;
}

.plan-table__label-text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #2A2F4E;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .plan-table__label-text {
    font-size: 0.75rem;
    line-height: 1.3;
  }
}

.plan-table__cell {
  background-color: #fff;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .plan-table__cell {
    padding: 0.5rem 0.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}

.plan-table__cell.--narrow {
  padding: 1.25rem 1.5rem;
}
@media screen and (max-width: 768px) {
  .plan-table__cell.--narrow {
    padding: 0.5rem 0.25rem;
  }
}

.plan-table__row--head .plan-table__cell {
  background: linear-gradient(136deg, rgb(0, 204, 255) 0%, rgb(35, 78, 157) 50%, rgb(2, 32, 88) 100%);
  border-radius: 8px 8px 0px 0px;
  color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.25rem;
  padding: 1rem 1.5rem 1.5rem;
}
@media screen and (max-width: 768px) {
  .plan-table__row--head .plan-table__cell {
    padding: 0.25rem 0.25rem 0.5rem;
    gap: 0.25rem;
  }
}

.plan-table__head-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.25rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .plan-table__head-inner {
    gap: 0.25rem;
  }
}

.plan-table__plan-en {
  font-size: 2.25rem;
  font-family: "Plus Jakarta Sans";
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .plan-table__plan-en {
    font-size: 1.375rem;
  }
}

.plan-table__plan-text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .plan-table__plan-text {
    font-size: 1rem;
  }
}

.plan-table__plan-detail {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .plan-table__plan-detail {
    font-size: 0.625rem;
    line-height: 1.3;
  }
}

.plan-table__cell-text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #2A2F4E;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .plan-table__cell-text {
    font-size: 0.75rem;
  }
}

.plan-table__cell-text .small {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .plan-table__cell-text .small {
    font-size: 0.625rem;
  }
}

@media screen and (max-width: 768px) {
  .plan-table__row--cta {
    height: 4.0625rem;
    padding: 0.375rem 0;
    gap: 0.375rem;
  }
  .plan-table__row--cta .plan-table__cell {
    padding: 0.5rem;
    gap: 1.5rem;
  }
}

.plan-table__row--cta .plan-table__cell {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  border-bottom: none;
}

.plan-table__btn {
  display: grid;
  place-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  color: #fff;
  background: linear-gradient(135deg, rgb(40, 63, 241) 0%, rgb(13, 33, 185) 100%);
  border-radius: 4px;
  border: 1px solid transparent;
  width: 12.5rem;
  max-width: 100%;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .plan-table__btn {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
  }
}

@media (any-hover: hover) {
  .plan-table__btn:hover {
    background: linear-gradient(white, white) padding-box, linear-gradient(135deg, rgb(40, 63, 241) 0%, rgb(13, 33, 185) 100%) border-box;
    color: #213AC9;
  }
}
.plan-note {
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: center;
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .plan-note {
    font-size: 0.875rem;
    margin-top: 1.5rem;
  }
}

.inner {
  width: 100%;
  height: 100%;
  max-width: 85rem;
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-inline: 1rem;
  }
}

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

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

.download {
  background: url("../images/new//cta-bg.webp") no-repeat center/cover;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .download {
    background: url("../images/new/cta-bg-sp.webp") no-repeat center/cover;
  }
}

.download-inner {
  padding-top: 5.625rem;
  padding-bottom: 6rem;
  width: 100%;
  height: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .download-inner {
    padding-block: 3.25rem;
  }
}

.download-heading {
  font-size: 1.375rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .download-heading {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
  }
}

.download::before {
  content: "DOWNLOAD";
  position: absolute;
  top: 16%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  font-size: 7rem;
  font-weight: 900;
  font-family: "Plus Jakarta Sans";
  line-height: 1;
  text-align: center;
  color: #2d42bc;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .download::before {
    font-size: 3.5rem;
    top: 3.5rem;
  }
}

.download-lead {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .download-lead {
    font-size: 2rem;
    margin-top: 1rem;
    letter-spacing: 0.05em;
  }
}

.download-text {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .download-text {
    font-size: 1rem;
    margin-top: 1.75rem;
    letter-spacing: 0.05em;
  }
}

.download-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ff8026;
  border-radius: 4px;
  width: 100%;
  max-width: 31.25rem;
  height: 6.9375rem;
  margin-top: 2.5rem;
  margin-inline: auto;
  color: #fff;
  position: relative;
  -webkit-transition: all 0.4;
  transition: all 0.4;
}
@media screen and (max-width: 768px) {
  .download-btn {
    max-width: 21.0625rem;
    height: 4.8125rem;
    padding-inline: 1rem;
    margin-top: 1.75rem;
  }
}

.download-btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1rem;
  width: 100%;
  padding-left: 1rem;
  padding-top: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .download-btn-group {
    padding-top: 0.5rem;
    padding-left: 0;
  }
}

.download-btn-img {
  aspect-ratio: 118/83;
  max-width: 7.375rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .download-btn-img {
    max-width: 3.75rem;
    aspect-ratio: 60/40;
  }
}

.download-btn__icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  overflow: hidden;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}
.download-btn__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-200%, -50%);
          transform: translate(-200%, -50%);
  width: 1.25rem;
  aspect-ratio: 12/10;
  -webkit-mask-image: url(../images/new/arrow-right.svg);
          mask-image: url(../images/new/arrow-right.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #FF8026;
  -webkit-transition: none;
  transition: none;
}
.download-btn__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.25rem;
  aspect-ratio: 12/10;
  -webkit-mask-image: url(../images/new/arrow-right.svg);
          mask-image: url(../images/new/arrow-right.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 768px) {
  .download-btn__icon {
    width: 2rem;
    height: 2rem;
    right: 0.5rem;
  }
  .download-btn__icon::before, .download-btn__icon::after {
    width: 1rem;
  }
}

@media (any-hover: hover) {
  .download-btn:hover .download-btn__icon::before {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .download-btn:hover .download-btn__icon::after {
    -webkit-transform: translate(100%, -50%);
            transform: translate(100%, -50%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}
@media (any-hover: hover) {
  .download-btn:hover .download-btn__icon {
    background: #fff;
  }
  .download-btn:hover .download-btn__icon::after {
    background: #FF8026;
  }
}
.download-btn-text {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  color: #fff;
}

.download-btn-text.--01 {
  font-size: 1.375rem;
}
@media screen and (max-width: 768px) {
  .download-btn-text.--01 {
    font-size: 1.125rem;
  }
}

.download-btn-text.--02 {
  font-size: 1.75rem;
}
@media screen and (max-width: 768px) {
  .download-btn-text.--02 {
    font-size: 1.25rem;
  }
}

.section-title {
  font-family: "Material", "Noto Sans JP", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  color: #2A2F4E;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    line-height: 1.5;
    margin-top: 1rem;
  }
}

.section-title::after {
  position: absolute;
  font-size: 11.5rem;
  font-family: "Plus Jakarta Sans";
  line-height: 1;
  letter-spacing: normal;
  background: -webkit-gradient(linear, left top, left bottom, from(#d3d8f4), to(#f3f4fc)), no-repeat;
  background: linear-gradient(180deg, #d3d8f4 0%, #f3f4fc 100%), no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .section-title::after {
    font-size: 4.5rem;
  }
}

.section-lead {
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .section-lead {
    font-size: 1.125rem;
    line-height: 1.2;
  }
}

.catch {
  width: 100%;
  max-width: 67.5rem;
  margin-inline: auto;
  background-color: #fff;
  text-align: center;
  padding: 5rem 6.125rem;
  margin-top: 6rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .catch {
    margin-top: 2.5rem;
    padding-inline: 0rem;
    padding-block: 2.5rem;
    max-width: 21.4375rem;
    border-radius: 4px;
  }
}

.catch-inner {
  padding-inline: 1.25rem;
  max-width: 72.8125rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .catch-inner {
    max-width: 21.4375rem;
    padding-inline: 1rem;
  }
}

.catch-lead {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .catch-lead {
    font-size: 1.125rem;
  }
}

.catch-note {
  font-size: 3.75rem;
  font-family: "Plus Jakarta Sans";
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  color: #2A2F4E;
  margin-top: 3.1875rem;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .catch-note {
    font-size: 2.5rem;
    margin-top: 1.6875rem;
  }
}

.catch-note-small {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .catch-note-small {
    font-size: 1.75rem;
  }
}

.catch-text-box {
  display: inline;
  border-bottom: 1px solid #2A2F4E;
}

.catch-text {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  color: #2A2F4E;
  margin-top: 1rem;
}
.catch-text span.border {
  border-bottom: 1px solid #2A2F4E;
}
.catch-text span {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .catch-text span {
    padding-bottom: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .catch-text {
    font-size: 2rem;
    margin-top: 0.25rem;
  }
}

@media screen and (max-width: 768px) {
  .catch-text.--ms-sp {
    margin-top: 0.5rem;
  }
}

.catch-ms {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  color: #2A2F4E;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .catch-ms {
    font-size: 1.125rem;
    margin-top: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .catch-ms.--ms-sp {
    margin-top: 0.5rem;
  }
}

.catch-img {
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  width: 55.25rem;
  height: 8.25rem;
  margin-left: -1rem;
}
.catch-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 884/132;
}
@media screen and (max-width: 768px) {
  .catch-img {
    margin-top: 0;
    margin-bottom: 1.5rem;
    margin-left: 0.0625rem;
    width: 19.5rem;
    height: 6.25rem;
  }
  .catch-img img {
    aspect-ratio: 312/100;
  }
}

.c-form {
	max-width: 800px;
	margin: 3.5rem auto !important;
	background: #fff;
	border-radius: 8px !important;
}

.hsfc-Row {
padding: 12px 0 !important;
}

.hsfc-CheckboxFieldGroup__Options {
padding: 12px 0 !important;
}