@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
body {
  color: #333;
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

/* pc幅での電話発信しない*/
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.6vw;
  }
}
@media (min-width: 1000px) {
  html {
    font-size: 16px;
  }
}

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

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

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

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

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

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

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

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

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

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

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

textarea {
  resize: vertical;
}

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

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

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

.inner {
  width: 100%;
  max-width: 23.4375rem;
  padding-inline: 15px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1050px;
    padding-inline: 25px;
  }
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  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;
  -webkit-transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}
.loading.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loading__content {
  text-align: center;
}

.loading__spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 0.1875rem solid #f3f3f3;
  border-top: 0.1875rem solid #181c62;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin: 0 auto 1.25rem;
}
@media screen and (min-width: 768px) {
  .loading__spinner {
    width: 3.75rem;
    height: 3.75rem;
    border-width: 0.25rem;
    margin-bottom: 1.875rem;
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1.875rem);
            transform: translateY(1.875rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1.875rem);
            transform: translateY(1.875rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeInUp {
  opacity: 0;
  -webkit-animation: fadeInUp 1s ease-out forwards;
          animation: fadeInUp 1s ease-out forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.fv {
  width: 100%;
  opacity: 0;
  -webkit-transform: translateY(1.25rem);
          transform: translateY(1.25rem);
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
  aspect-ratio: 375/463;
}
.fv.is-loaded {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .fv {
    aspect-ratio: 1336/807;
  }
}

.fv-slider {
  position: absolute;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .fv-slider {
    width: 100%;
  }
}

.fv__image {
  height: 100%;
  aspect-ratio: 375/409;
}
@media screen and (min-width: 768px) {
  .fv__image {
    aspect-ratio: 1336/807;
  }
}

.fv__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.fv-slider.is-show {
  opacity: 1;
}

.fv__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-inline: 0.9375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    padding-inline: 10.625rem;
  }
}

.fv__catch {
  margin-top: clamp(4rem, 0.238rem + 16.05vw, 8.063rem);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .fv__catch {
    margin-top: clamp(2.5rem, 5vw, 7.125rem);
  }
}

.fv__line {
  display: inline-block;
  position: relative;
  font-size: clamp(1.438rem, 0.852rem + 2.5vw, 2.938rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #ffffff;
  padding-block: 0.3125rem;
  padding-inline: 0.375rem 0.5rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .fv__line {
    margin-top: 1.5rem;
    padding-block: 0.6875rem;
    padding-inline: 0.9375rem;
  }
}

.fv__line-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #181c62;
  opacity: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
  z-index: 1;
}

.fv__line-text {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(1.875rem);
          transform: translateY(1.875rem);
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  z-index: 2;
  position: relative;
}

.fv__line.is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fv__line.is-animated .fv__line-bg {
  opacity: 1;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.fv__line.is-animated .fv__line-text {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fv__line--highlight {
  font-size: clamp(2.5rem, 1.476rem + 4.37vw, 5.125rem);
  padding-right: 0;
}

.fv__sub {
  margin-top: clamp(5rem, 0.217rem + 20.41vw, 10rem);
  font-weight: 700;
  color: #181c62;
  font-size: clamp(0.938rem, 0.572rem + 1.56vw, 1.875rem);
}
@media screen and (min-width: 768px) {
  .fv__sub {
    margin-top: clamp(2.5rem, 5vw, 8.75rem);
    margin-bottom: 0.625rem;
  }
}

.fv__sub-text {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .fv__sub-text {
    margin-top: 0.625rem;
  }
}

.fv__sub-text--accent {
  color: #d92f00;
}

.fv__sub-text--name {
  font-size: clamp(1.688rem, -0.106rem + 7.65vw, 3.563rem);
  margin-top: 0.1875rem;
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  .fv__sub-text--name {
    font-size: 4.125rem;
    margin-top: 0;
  }
}

.fv-bottom {
  width: 100%;
  z-index: 10;
  background-color: #181c62;
  padding-inline: 0.9375rem;
  padding-block: 1.125rem 3rem;
}
@media screen and (min-width: 768px) {
  .fv-bottom {
    background-image: url(../images/fv-bottom@2x.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-block: 1.3125rem 1.75rem;
  }
}

.fv-bottom__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .fv-bottom__info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.9375rem;
  }
}

.fv-bottom__logo {
  aspect-ratio: 170/150;
  width: 100%;
  max-width: 10.625rem;
}

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

.fv-bottom__text {
  color: #ffffff;
  font-size: 0.9375rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .fv-bottom__text {
    font-size: 1.9375rem;
    line-height: 1.6;
  }
}

.fv-bottom__text--yellow {
  color: #fff200;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .fv-bottom__text--yellow {
    font-size: 2.875rem;
    white-space: nowrap;
  }
}

.cta-btns {
  display: -ms-grid;
  display: grid;
  gap: 0.875rem;
  margin-top: 0.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta-btns {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    margin-top: 1.6875rem;
    max-width: 62.5rem;
    margin-inline: auto;
  }
}

.cta-btns__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .cta-btns__item {
    gap: 0.25rem;
  }
}

.cta-btns__label {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #181c62;
  background-color: #ffffff;
  padding: 0.0625rem 2.5rem;
  border-radius: 1.25rem;
  display: inline-block;
  margin-inline: auto;
  border: 1px solid #181c62;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .cta-btns__label {
    font-size: 1.125rem;
    padding: 0.0625rem 3.625rem;
  }
}

.cta-btns__btn {
  display: inline-block;
  font-size: clamp(1.0625rem, 2.5vw, 1.5rem);
  font-weight: bold;
  text-align: center;
  padding-block: 0.9375rem;
  border: 2px solid #181c62;
  border-radius: 0.5rem;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: -0.6875rem;
}
@media screen and (min-width: 768px) {
  .cta-btns__btn {
    margin-top: -1.25rem;
    padding-block: 1.4375rem;
  }
}

.cta-btns__btn--orange {
  background-color: #f97316;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .cta-btns__btn--orange {
    padding-inline: 1.25rem 0.8125rem;
  }
}

.cta-btns__btn--orange:hover {
  background-color: #ea580c;
}

.cta-btns__btn--white {
  background-color: #fff;
  color: #181c62;
}
@media screen and (min-width: 768px) {
  .cta-btns__btn--white {
    padding-inline: 0.8125rem 1.25rem;
  }
}

.cta-btns__btn--white:hover {
  background-color: #f3f4f6;
}

@media screen and (min-width: 768px) {
  .cta-btns {
    -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;
  }
  .cta-btns__item {
    width: rrrem(260);
  }
}
.problem {
  background-image: url("../images/problemSP.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .problem {
    padding-block: 5rem;
    background-image: url("../images/problem@2x.jpg");
    padding-inline: 25px;
  }
}

.problem__inner {
  padding-bottom: 6rem;
  background-image: url("../images/problem-topSP.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  aspect-ratio: 375/1720;
}
@media screen and (min-width: 768px) {
  .problem__inner {
    padding-bottom: 10.25rem;
    background-image: url("../images/problem-top.png");
    max-width: 66.375rem;
    aspect-ratio: 1062/1592;
  }
}

.problem__top {
  width: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-inline: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .problem__top {
    padding-inline: 3.375rem;
  }
}

.problem__heading {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
  padding-top: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .problem__heading {
    font-size: 2.5rem;
    padding-top: 4.875rem;
    letter-spacing: 4px;
  }
}

.problem__list {
  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;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .problem__list {
    margin-top: 3.75rem;
    gap: 3.875rem;
  }
}

.problem__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 0.5rem;
  gap: 1.625rem;
  width: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .problem__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.875rem;
    margin-inline: auto;
  }
}

@media screen and (min-width: 768px) {
  .problem__item:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 2.125rem;
  }
}

.problem__img {
  aspect-ratio: 315/205;
}
@media screen and (min-width: 768px) {
  .problem__img {
    aspect-ratio: 420/273;
    max-width: 26.25rem;
  }
}

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

.problem__title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #0c0e33;
}
@media screen and (min-width: 768px) {
  .problem__title {
    margin-left: -0.25rem;
    font-size: 1.875rem;
  }
}

.problem__points {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: #333;
  line-height: 1.6;
  display: -ms-grid;
  display: grid;
  gap: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .problem__points {
    font-size: 1.125rem;
    margin-top: 1.125rem;
    gap: 0.8125rem;
  }
}

.problem__points li {
  position: relative;
  padding-left: 1.75rem;
}
@media screen and (min-width: 768px) {
  .problem__points li {
    padding-left: 2rem;
    white-space: nowrap;
  }
}

.problem__points li::before {
  position: absolute;
  content: "";
  background-image: url(../../images/check.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 21px;
  height: 21px;
  top: 14px;
  left: 12px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .problem__points li::before {
    width: 26px;
    height: 26px;
    left: 14px;
  }
}

.problem__cta {
  margin-top: 1.875rem;
  display: -ms-grid;
  display: grid;
  gap: 1.125rem;
  text-align: center;
  color: #0c0e33;
}
@media screen and (min-width: 768px) {
  .problem__cta {
    margin-top: 5rem;
    gap: 3.75rem;
  }
}

.problem__text {
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .problem__text {
    font-size: 1.5rem;
  }
}

.problem__cta-title {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .problem__cta-title {
    font-size: 1.5rem;
  }
}

.problem__bottom {
  padding-block: 0.3125rem 1.875rem;
  width: 77%;
  margin-inline: auto;
}

.problem__bottom img {
  width: 100%;
}

.about__container {
  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.875rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .about__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4.0625rem;
    margin-top: 4.375rem;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
  }
}

.about__image {
  aspect-ratio: 344/243;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .about__image {
    aspect-ratio: 545/384;
    margin-top: 0.75rem;
    max-width: 34.0625rem;
  }
}

.about__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__content {
  display: -ms-grid;
  display: grid;
  gap: 1.4375rem;
}

.section-title {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 1.4375rem;
  text-align: center;
  color: #0c0e33;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-title--white {
  color: #ffffff;
}

.section-title--small {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .section-title--small {
    font-size: 2.5rem;
  }
}

.common-text {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  color: #333;
  line-height: 1.6;
  letter-spacing: -0.1em;
}
@media screen and (min-width: 768px) {
  .common-text {
    font-size: 1.125rem;
  }
}

.common-text--bold {
  font-weight: 700;
}

.common-text--red {
  color: #d92f00;
}

.text-wrap {
  letter-spacing: -0.4375rem;
}

.common-text--small {
  font-size: 0.9375rem;
}

/* スクロールで下から表示されるアニメーション */
@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.scroll-fade-in {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 1.2s ease-out, -webkit-transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, -webkit-transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out, -webkit-transform 1.2s ease-out;
}
.scroll-fade-in.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.feature {
  background-color: #e6f0f7;
}

.feature__heading {
  aspect-ratio: 201/93;
  width: 100%;
  max-width: 201px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .feature__heading {
    aspect-ratio: 325/150;
  }
}

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

.feature__list {
  margin-top: 0.8125rem;
  display: -ms-grid;
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .feature__list {
    margin-top: 2.75rem;
    gap: 2.25rem;
  }
}

@media screen and (min-width: 768px) {
  .feature__item {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 25.9375rem 32.5625rem;
    grid-template-columns: 25.9375rem 32.5625rem;
    -ms-grid-rows: 25% 75%;
    grid-template-rows: 25% 75%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
        grid-template-areas: "item2 item1" "item2 item3";
  }
}
@media screen and (min-width: 768px) {
  .feature__item:nth-child(even) {
        grid-template-areas: "item1 item2" "item3 item2";
    -ms-grid-columns: 32.5625rem 25.9375rem;
    grid-template-columns: 32.5625rem 25.9375rem;
  }
}

.item1 {
  grid-area: item1;
}

.item2 {
  grid-area: item2;
}

.item3 {
  grid-area: item3;
}

@media screen and (min-width: 768px){
  .item1 {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .feature__item:nth-child(even) > .item1 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .item2 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .feature__item:nth-child(even) > .item2 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
  }
  .item3 {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .feature__item:nth-child(even) > .item3 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
}

.feature__label {
  font-size: 0.9375rem;
  color: #181c62;
  padding-left: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .feature__label {
    font-size: 1.375rem;
  }
}

.feature__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -0.9375rem;
  color: #181c62;
}
@media screen and (min-width: 768px) {
  .feature__number {
    margin-top: -1.1875rem;
  }
}

.feature__head-num {
  font-family: "DIN 2014", "Arial", sans-serif;
  font-size: 3.125rem;
  color: #181c62;
}
@media screen and (min-width: 768px) {
  .feature__head-num {
    font-size: 3.75rem;
  }
}

.feature__title {
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: #333;
  font-weight: bold;
  line-height: 1.2;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .feature__title {
    font-size: 2rem;
    margin-left: 1.25rem;
  }
}

.feature__title-border {
  color: #1d2087;
  position: relative;
}

.feature__title-border::before {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background-color: #fff200;
  position: absolute;
  bottom: 0.3125rem;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .feature__title-border::before {
    height: 0.9375rem;
  }
}

.feature__img {
  aspect-ratio: 343/271;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .feature__img {
    margin-top: 2.3125rem;
    aspect-ratio: 414/313;
  }
}

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

.feature__item:nth-child(5) .feature__img {
  aspect-ratio: 344/188;
}

.feature__item-content {
  margin-top: 0.625rem;
  display: -ms-grid;
  display: grid;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .feature__item-content {
    margin-top: 2.625rem;
    gap: 1.5rem;
  }
}

.feature__footer {
  margin-top: 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .feature__footer {
    margin-top: 5.1875rem;
  }
}

.feature__footer::before {
  content: "";
  background-image: url(../images/fukidashi1@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -1.875rem;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .feature__footer::before {
    background-image: url(../images/fukidashiPC@2x.png);
  }
}

.feature__footer-text {
  font-size: 1.25rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: bold;
  color: #333;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .feature__footer-text {
    font-size: 2.25rem;
  }
}

.border-yellow {
  position: relative;
}

.border-yellow::before {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background-color: #fff200;
  position: absolute;
  bottom: 0.3125rem;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .border-yellow::before {
    height: 0.9375rem;
  }
}

.trust__container {
  background-color: #eff7fb;
  padding: 2rem 0.9375rem;
  display: -ms-grid;
  display: grid;
  gap: 1.8125rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .trust__container {
    padding: 5rem 4.375rem;
    gap: 3.9375rem;
    margin-top: 3.75rem;
  }
}

.trust__item-content {
  background-color: #ffffff;
  padding-block: 1.1875rem 0.5625rem;
  padding-inline: 0.9375rem;
  display: -ms-grid;
  display: grid;
  gap: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .trust__item-content {
    padding-block: 2.4375rem 2.1875rem;
    padding-inline: 1.25rem;
  }
}

.trust__title {
  font-size: 1rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: #333;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .trust__title {
    font-size: 1.25rem;
  }
}

.section-wrapper {
  padding-block: 2.5rem;
}
@media screen and (min-width: 768px) {
  .section-wrapper {
    padding-block: 5rem;
  }
}

.function {
  background-color: #181c62;
  color: #fff;
}

.function__list {
  counter-reset: number;
  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.9375rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .function__list {
    gap: 1.1875rem;
    margin-top: 3.75rem;
  }
}

.function__item {
  background-color: #ffffff;
  padding: 0.875rem 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.2;
  font-weight: bold;
  position: relative;
  padding-left: 2.9375rem;
  color: #333;
  border: 1px solid #ffffff;
}
@media screen and (min-width: 768px) {
  .function__item {
    border: 2px solid #ffffff;
    padding-block: 1.75rem;
    padding-left: 6.6875rem;
    font-size: 1.375rem;
  }
}

.function__item::before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #181c62;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.6875rem;
  width: 2.5rem;
  height: 100%;
  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 (min-width: 768px) {
  .function__item::before {
    width: 4.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .price {
    background-image: url("../images/price-bg@2x.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-block: 3.75rem;
    color: #333;
    text-align: center;
  }
}

.price__heading {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.5px;
}

.price__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .price__text {
    margin-bottom: 1rem;
    margin-top: 3.75rem;
  }
}

.price__emphasis-red {
  color: #d92f00;
  font-weight: bold;
}

.price__img {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .price__img {
    display: none;
  }
}

.price__img img {
  width: 100%;
  max-width: 37.5rem;
  height: auto;
  border-radius: 0.5rem;
}

.price__text {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 45rem;
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  gap: 1.875rem;
}

.price__cta {
  margin-top: 4.9375rem;
}
@media screen and (min-width: 768px) {
  .price__cta {
    margin-top: 5.0625rem;
  }
}

.benefit {
  background-color: #eff7fb;
  position: relative;
}

.benefit::before {
  content: "";
  background-image: url("../images/benefit-bgSP@2x.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 23.4375rem;
  height: 72.625rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .benefit::before {
    background-image: url("../images/benefit-bg@2x.jpg");
    width: 100%;
    height: 100%;
  }
}

.benefit__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .benefit__list {
    margin-top: 3.75rem;
  }
}

.benefit__item {
  position: relative;
}

.benefit__item-number {
  position: absolute;
  top: -1.875rem;
  left: 0.625rem;
  z-index: 1;
  aspect-ratio: 62/25;
  max-width: 5.875rem;
}
@media screen and (min-width: 768px) {
  .benefit__item-number {
    aspect-ratio: 115/44;
    max-width: 7.1875rem;
    top: -1.875rem;
    left: 0.625rem;
  }
}

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

.benefit__bg {
  max-width: 77.75rem;
  aspect-ratio: 375/210;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
@media screen and (min-width: 768px) {
  .benefit__bg {
    margin-left: calc(-50vw + 50%);
    margin-right: auto;
    aspect-ratio: 1244/421;
  }
}

@media screen and (min-width: 768px) {
  .benefit__item:nth-child(2) .benefit__bg {
    margin-left: auto;
    margin-right: calc(-50vw + 50%);
  }
}

.benefit__bg img {
  width: 100%;
  height: auto;
  display: block;
}

.benefit__content {
  padding: 1.5rem;
  display: -ms-grid;
  display: grid;
  gap: 0.75rem;
  background-color: #ffffff;
  margin-top: -7.125rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .benefit__content {
    margin-inline: auto;
    width: 100%;
    max-width: 568px;
    padding: 2.625rem 3.1875rem 3.25rem 2.5rem;
  }
}

.benefit__label {
  font-size: 0.875rem;
  font-weight: bold;
  color: #181c62;
}

.benefit__title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
}

.benefit__text {
  font-size: 0.9375rem;
  color: #333;
  line-height: 1.6;
}

.benefit__text--emphasis {
  font-weight: bold;
  color: #181c62;
}

.benefit__text--emphasis-red {
  font-weight: bold;
  color: #d92f00;
}

@media screen and (min-width: 768px) {
  .benefit__title {
    font-size: 1.25rem;
  }
  .benefit__text {
    font-size: 1rem;
  }
}
.benefit__cta {
  margin-top: 2.625rem;
}
@media screen and (min-width: 768px) {
  .benefit__cta {
    margin-top: 5rem;
  }
}

.prepare {
  background-image: url("../images/prepare-bgSP@2x.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 4rem;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .prepare {
    background-image: url("../images/prepare-bg@2x.jpg");
  }
}

.prepare__content {
  display: -ms-grid;
  display: grid;
  gap: 3rem;
  max-width: 42.5rem;
  margin-inline: auto;
  margin-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .prepare__content {
    margin-top: 3.375rem;
  }
}

.prepare__content-item {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
}

.prepare__emphasis-blue {
  color: #60a5fa;
  font-weight: bold;
}

.prepare__emphasis {
  font-weight: bold;
  text-decoration: underline;
}

.prepare__emphasis-red {
  color: #d92f00;
  font-weight: bold;
}

.prepare__action {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  margin-top: 0.75rem;
}

@media screen and (min-width: 768px) {
  .prepare__heading {
    font-size: 1.75rem;
  }
  .prepare__text {
    font-size: 1rem;
  }
  .prepare__action {
    font-size: 1.125rem;
  }
}
.qa {
  background-color: #f0f1f7;
}

.qa__list {
  display: -ms-grid;
  display: grid;
  gap: 1.125rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .qa__list {
    gap: 1.875rem;
    margin-top: 3.75rem;
  }
}

.qa__item {
  background-color: #ffffff;
  border-radius: 1.25rem;
  text-align: left;
}

.qa__question {
  padding: 1.875rem 0.625rem 1.0625rem 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  border-bottom: 3px solid #e5e5e5;
}
@media screen and (min-width: 768px) {
  .qa__question {
    padding: 1.875rem 1.0625rem 0.9375rem 1.9375rem;
  }
}

.qa__icon {
  font-weight: 700;
  font-size: 1.125rem;
  color: #1c2a55;
}
@media screen and (min-width: 768px) {
  .qa__icon {
    font-size: 1.875rem;
  }
}

.qa__title {
  font-weight: 700;
  font-size: 1.125rem;
  color: #333;
  line-height: 1.2;
  letter-spacing: -0.05em;
  text-align: left;
  padding-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .qa__title {
    font-size: 1.3125rem;
    padding-left: 1rem;
    padding-top: 0.625rem;
  }
}

.qa__answer {
  padding: 1.875rem 0.625rem 1.0625rem 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (min-width: 768px) {
  .qa__answer {
    padding: 1.875rem 1.0625rem 0.9375rem 1.9375rem;
  }
}

.qa__answer-content {
  display: -ms-grid;
  display: grid;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .qa__answer-content {
    gap: 1.5rem;
    padding-left: 1rem;
    padding-top: 0.625rem;
  }
}

.qa__cta {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .qa__cta {
    margin-top: 5rem;
  }
}

.footer {
  background-color: #f0f1f7;
  text-align: center;
  padding-bottom: 1.25rem;
}

.footer__privacy {
  font-size: 0.75rem;
  color: #333;
  text-align: center;
}