@charset "UTF-8";
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
}
@media screen and (min-width: 768px) {
  html {
    font-size: clamp(10px, 0.423vw + 7.887px, 16px);
  }
}

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

main {
  overflow-x: hidden;
}

.pc-hidden {
  display: none;
}

@media (max-width: 1000px) {
  .hidden-1000 {
    display: none;
  }
}
@media (max-width: 768px) {
  .sp-hidden {
    display: none;
  }
  .pc-hidden {
    display: block;
  }
}
/* 最初は透明で、30px下に下げておく */
.js-fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}

/* このクラスがついたら元の位置に戻る */
.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header--sp {
  display: block;
}
@media (min-width: 768px) {
  .header--sp {
    display: none;
  }
}

.header__inner {
  padding: 2.0625rem 1rem 0.6875rem 1.25rem;
}

.header__wrapper--sp {
  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;
}

.header__logo {
  width: 5rem;
}

.header__btn {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.header__btn-trial .hero__button-trail {
  padding: 0.375rem 0.75rem;
  gap: 0.5rem;
  border: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.75rem;
}
.header__btn-trial .hero__button-text--small {
  font-size: 0.5625rem;
}
.header__btn-trial .hero__button-text {
  font-size: 0.8125rem;
}
.header__btn-trial .hero__button-arrow {
  width: 0.9375rem;
  height: 0.9375rem;
}
.header__btn-trial .hero__button-arrow img {
  display: block;
}

.header__btn-menu {
  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.3125rem;
  width: 2.5625rem;
  height: 2.5625rem;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#1136d5), to(#0970e2));
  background: linear-gradient(to right, #1136d5, #0970e2);
  border: none;
  cursor: pointer;
  padding: 0;
}

.header__menu-bar {
  display: block;
  width: 1.125rem;
  height: 1px;
  background-color: white;
  border-radius: 0.5px;
}

.hero {
  position: static;
  overflow: hidden;
}
@media (min-width: 1001px) {
  .hero {
    position: relative;
  }
}

.hero__wrapper {
  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: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
}
@media (min-width: 1001px) {
  .hero__wrapper {
    -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;
  }
}

.hero__content-wrapper {
  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) {
  .hero__content-wrapper {
    display: block;
  }
}

.hero__text-container {
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#0072ce), to(#102ad4));
  background: linear-gradient(to right, #0072ce, #102ad4);
  color: #fff;
  text-align: center;
  position: static;
  z-index: 2;
  border-radius: 0 200px 200px 0;
  padding: 2.125rem 1.25rem 1.25rem;
}
@media screen and (min-width:1001px) {
  .hero__text-container {
    border-radius: 0 500px 500px 0;
    padding-left: 3.125rem;
    width: 55%;
    position: relative;
    padding-block: 4.625rem;
    text-align: left;
  }
}

.hero__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.hero__discription {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 0.75rem;
  gap: 0.75rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media screen and (min-width: 768px) {
  .hero__discription {
    margin-bottom: 1rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.hero__discription-text {
  font-size: clamp(13px, 1.361vw, 30px);
  font-weight: bold;
  letter-spacing: 1.8px;
}

.hero__discription-text--black {
  font-size: clamp(15px, 1.679vw, 37px);
  font-weight: bold;
  background-color: #000;
  padding: 0.25rem 0.5rem;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .hero__discription-text--black {
    padding: 0.5rem 1.5rem;
    letter-spacing: 4px;
  }
}

.hero__title {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: clamp(40px, 4.356vw, 96px);
  font-weight: bold;
  margin-bottom: 1.125rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .hero__title {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1001px) {
  .hero__title {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.hero__title-sub {
  font-size: clamp(19px, 1.996vw, 44px);
  font-weight: bold;
  margin-bottom: 0.75rem;
  text-align: start;
}

.hero__title--sub--small {
  font-size: clamp(12px, 1.27vw, 28px);
  margin-bottom: 1rem;
  text-align: start;
}

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

.hero__button-trail {
  color: #000;
  padding: 0.75rem 1.5rem;
  background: -webkit-gradient(linear, right top, left top, from(#f9d509), to(#f7c503));
  background: linear-gradient(to left, #f9d509, #f7c503);
  border-radius: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 3px #f1e1be solid;
  -webkit-box-shadow: 0 3px 0px 0 rgb(255, 140, 0);
          box-shadow: 0 3px 0px 0 rgb(255, 140, 0);
  gap: 1rem;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}
.hero__button-trail:hover {
  -webkit-transform: translateY(0.1875rem);
          transform: translateY(0.1875rem);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.hero__button-text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero__button-text--small {
  font-size: clamp(14px, 1.089vw, 24px);
  font-weight: bold;
}

.hero__button-text {
  font-size: clamp(18px, 1.452vw, 32px);
  font-weight: bold;
}

.hero__button-arrow {
  width: 1.5rem;
  aspect-ratio: 1/1;
  -ms-flex-item-align: center;
      align-self: center;
}

.hero__img-container {
  width: 100%;
  height: auto;
  background-color: #070c63;
  z-index: 1;
  position: static;
  top: 0;
  left: 0;
  padding: 1.75rem 1.0625rem;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  margin-top: 0;
}
@media (min-width: 1001px) {
  .hero__img-container {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    left: auto;
    height: 80%;
    padding: 0;
  }
}

.hero__img {
  width: 100%;
  position: static;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  margin-inline: auto;
  max-width: 37.5rem;
}
@media (min-width: 1001px) {
  .hero__img {
    position: absolute;
    top: 50%;
    left: calc(50vw + 16.5rem);
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 80%;
  }
}
.hero__img img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__img-man {
  display: none;
}
@media (min-width: 1001px) {
  .hero__img-man {
    display: block;
    position: absolute;
    left: calc(50vw - 2.8125rem);
    width: 29%;
    z-index: 3;
    height: -webkit-fit-content !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
  }
  .hero__img-man img {
    width: auto;
    height: 100%;
    display: block;
    max-width: 28.125rem;
  }
}

.hero__img-logo {
  display: block;
  max-width: 9.375rem;
  margin-inline: auto;
  margin-bottom: 0.75rem;
}
@media (min-width: 1001px) {
  .hero__img-logo {
    display: none;
  }
}

.hero__btn-download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-inline: 1.25rem;
  max-width: 25rem;
  margin: 1.125rem auto;
}
@media (min-width: 1001px) {
  .hero__btn-download {
    display: none;
  }
}

.hero__download-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  border-radius: 29px;
  border: 2px solid #000;
  background: #f8c505;
  color: #010000;
  font-size: 1.3125rem;
  font-weight: 800;
  padding: 0.8125rem 1.375rem;
  -webkit-box-shadow: 0 3px 0px 0 rgb(0, 0, 0);
          box-shadow: 0 3px 0px 0 rgb(0, 0, 0);
}

/* ３つの特徴 */
.hero__features {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .hero__features {
    margin-top: 2.125rem;
  }
}

.hero__features-inner {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.hero__features-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 45px;
}
.hero__features-wrapper > :nth-child(3) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.hero__features-wrapper > :nth-child(5) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.hero__features-wrapper > :nth-child(1) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (min-width:1001px) {
  .hero__features-wrapper {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: clamp(12px, -22.29px + 6.86vw, 60px);
  }
  .hero__features-wrapper > :nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .hero__features-wrapper > :nth-child(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .hero__features-wrapper > :nth-child(3) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .hero__features-wrapper > :nth-child(4) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .hero__features-wrapper > :nth-child(5) {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}

.hero__line {
  display: none;
}
@media (min-width: 767px) {
  .hero__line {
    display: block;
    width: 1px;
    height: clamp(60px, -50px + 10.4167vw, 100px);
    background-color: #1f72ea;
  }
}

.hero__feature-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4px;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .hero__feature-title {
    margin-bottom: 12px;
    gap: 12px;
  }
}

.hero__feature-icon {
  width: clamp(24px, -28.57px + 6.845vw, 70px);
  height: clamp(24px, -28.57px + 6.845vw, 70px);
}

.hero__feature-text {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  .hero__feature-text {
    font-size: 2.4375rem;
  }
}

.hero__feature-discription {
  font-size: 0.625rem;
  font-weight: bold;
  letter-spacing: 1.5px;
}
@media screen and (min-width: 768px) {
  .hero__feature-discription {
    font-size: 1.25rem;
  }
}

/* ファーストビューセクションコンセプト帯 */
.hero__concept {
  margin-top: 1.5rem;
  padding-block: 1.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#1148d8), to(#70affb));
  background: linear-gradient(to right, #1148d8, #70affb);
}
@media screen and (min-width: 768px) {
  .hero__concept {
    margin-top: 3rem;
  }
}

.hero__concept-inner {
  text-align: center;
  font-weight: bold;
  padding-inline: 2.75rem;
}
@media (min-width: 768px) {
  .hero__concept-inner {
    padding-inline: 0;
  }
}

.hero__concept--yellow {
  color: #ffdd20;
  font-size: clamp(17px, 2.15px + 1.9345vw, 30px);
  letter-spacing: 2px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .hero__concept--yellow {
    margin-bottom: 0;
  }
}

.hero__concept--white {
  color: #fff;
  font-size: clamp(17px, 2.15px + 1.9345vw, 30px);
  letter-spacing: 2px;
}

/* worryセクション */
.worry {
  padding-block: 40px;
}

.worry__inner {
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .worry__inner {
    padding-inline: 3.125rem;
  }
}

.worry__head,
.assistant__head {
  text-align: center;
}

.worry__title--blue,
.assistant__title--blue {
  font-size: 1.5625rem;
  font-weight: bold;
  color: #3551dc;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .worry__title--blue,
  .assistant__title--blue {
    font-size: 2.25rem;
    letter-spacing: 2px;
  }
}

.worry__title--black,
.assistant__title--black {
  font-size: 1.125rem;
  font-weight: bold;
  color: #091d3b;
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  .worry__title--black,
  .assistant__title--black {
    font-size: 1.5rem;
  }
}

.worry__head-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .worry__head-labels {
    gap: 1.375rem;
  }
  .worry__head-labels li {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}

.worry__label-item {
  display: inline-block;
  padding: 0.3125rem 0.4375rem;
  background-color: #edf7ff;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .worry__label-item {
    padding: 0.75rem 1.125rem;
    font-size: 1.625rem;
    letter-spacing: 1.5px;
    line-height: normal;
  }
}

.worry__label-text {
  display: none;
}
@media screen and (min-width: 768px) {
  .worry__label-text {
    display: inline-block;
    margin-left: -0.9375rem;
    font-weight: 600;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}

.worry__wrapper {
  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;
  max-width: 112.5rem;
  width: 100%;
  margin-inline: auto;
  height: 100%;
  background: none;
}
@media screen and (min-width:1201px) {
  .worry__wrapper {
    margin-top: 3.5rem;
    background-image: url(../assets/lp-img/worry-background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-block: 3.5rem;
    border-radius: 0.75rem;
    overflow: hidden;
    padding-inline: 11vw;
    border-radius: 2.9375rem;
    overflow: hidden;
  }
}

.worry__container {
  background-color: transparent;
  max-width: 90rem;
  margin-inline: auto;
  padding: 2rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
@media screen and (min-width:1201px) {
  .worry__container {
    background-color: #fff;
    border-radius: 12px;
    max-width: 1200px;
    margin-inline: auto;
    padding: 2rem;
    width: 100%;
  }
}

.worry__container-items {
  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: 1.375rem;
}
@media (min-width: 1001px) {
  .worry__container-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.worry__img {
  max-width: 28.125rem;
}

.worry__merit-container {
  display: none;
}
@media screen and (min-width: 768px) {
  .worry__merit-container {
    display: block;
    border-radius: 1.25rem;
    overflow: hidden;
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  }
}

.worry__arrow-container {
  position: relative;
  max-width: 20rem;
}
.worry__arrow-container img {
  height: 8.625rem;
}
@media screen and (min-width: 768px) {
  .worry__arrow-container img {
    height: auto;
  }
}

.worry__arrow-container--text {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
}
@media (min-width: 1300px) {
  .worry__arrow-container--text {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-left: 2rem;
  }
}

.worry__arrow-text {
  font-size: 1.125rem;
  color: #fff;
  letter-spacing: 1.5px;
  font-weight: bold;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width:1401px) {
  .worry__arrow-text {
    font-size: 2rem;
  }
}
.worry__arrow-text span {
  display: block;
  margin-top: 0.5rem;
}

.worry__merit-head {
  background-color: #1e72e9;
  padding: 1.125rem 1rem;
}

.worry__merit-title {
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .worry__merit-title {
    font-size: 1.5rem;
    white-space: nowrap;
  }
}
@media (min-width: 1001px) {
  .worry__merit-title {
    text-align: left;
  }
}

.worry__merit-body {
  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: 0;
}
@media screen and (min-width: 768px) {
  .worry__merit-body {
    padding: 1.5rem 1rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1001px) {
  .worry__merit-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.worry__merit-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #1e73e9;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem 0.75rem;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .worry__merit-item {
    padding: 1rem 1.5rem;
  }
}

.worry__merit-check {
  width: 1.625rem;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .worry__merit-check {
    width: 2rem;
  }
}

.worry__merit-text {
  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.375rem;
}

.worry__merit-text--main {
  font-size: 1.5rem;
  font-weight: bold;
}

.worry__merit-text--sub {
  font-size: 0.625rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .worry__merit-text--sub {
    font-size: 0.625rem;
  }
}

.worry__merit-body--sp {
  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: 768px) {
  .worry__merit-body--sp {
    display: none;
  }
}

/* アシスタントセクション */
.assistant__inner {
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .assistant__inner {
    padding-inline: 3.125rem;
  }
}

.assistant__wrapper {
  background-image: none;
}
@media screen and (min-width:1201px) {
  .assistant__wrapper {
    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;
    margin-top: 2rem;
    max-width: 112.5rem;
    width: 100%;
    margin-inline: auto;
    height: 100%;
    padding-block: 4.375rem;
    background-image: url(../assets/lp-img/assistant-background.png);
    background-size: cover;
    overflow: hidden;
    border-radius: 2.9375rem;
  }
}

@media screen and (min-width:1201px) {
  .assistant__container {
    background-color: #fff;
    border-radius: 12px;
    max-width: 1200px;
    margin-inline: auto;
    padding: 2rem;
    width: 100%;
  }
}

.assistant__item-head {
  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:1201px) {
  .assistant__item-head {
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.assistant__label {
  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;
  border: 5px #fff solid;
  border-radius: 30px;
  padding: 0.5rem 1rem;
  max-width: 12.1875rem;
  width: 100%;
  color: #fff;
  font-weight: bold;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .assistant__label {
    max-width: 18.75rem;
    margin-inline: 0;
    font-size: 1.5rem;
  }
}

.assistant__label--customer {
  background-color: #ee7a25;
  margin-bottom: 1.625rem;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
}

.assistant__label--director {
  background-color: #0e69aa;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .assistant__label--director {
    margin-inline: auto;
  }
}
@media screen and (min-width:1201px) {
  .assistant__label--director {
    margin-inline: 0;
    margin-bottom: -1.5rem;
  }
}

.assistant__label--pc {
  display: none;
}
@media screen and (min-width:1201px) {
  .assistant__label--pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.assistant__label--sp {
  font-size: 1rem;
  padding: 0.625rem 1.25rem;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
  margin: 0 auto -2.5rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .assistant__label--sp {
    display: none;
    margin: 0;
  }
}

.assistant__customer {
  max-width: 37.5rem;
  margin-inline: auto;
  margin-top: 2rem;
}
@media screen and (min-width:1201px) {
  .assistant__customer {
    position: relative;
    max-width: 18.75rem;
    padding-top: 1.25rem;
    padding-left: 1.25rem;
    margin-top: 0;
  }
}

.assistant__customer-img {
  max-width: 25rem;
  margin-bottom: 0.75rem;
}
@media screen and (min-width:1201px) {
  .assistant__customer-img {
    margin-bottom: 0;
  }
}

.assistant__director {
  padding-top: 1.25rem;
  border-radius: 4px;
  background-color: #edf7ff;
  max-width: 37.5rem;
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width:1201px) {
  .assistant__director {
    max-width: 53.125rem;
    margin: 0;
  }
}

.assistant__director-img {
  padding: 0.625rem 0.625rem 1.875rem;
  max-width: 25rem;
  margin-inline: auto;
}
@media screen and (min-width:1201px) {
  .assistant__director-img {
    max-width: 100%;
  }
}

.assistant__director-arrow {
  display: none;
}
@media screen and (min-width:1201px) {
  .assistant__director-arrow {
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.625rem;
    position: absolute;
    top: 38%;
    left: -3.4375rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    max-width: 13.125rem;
    width: 100%;
    z-index: 3;
  }
}

.assistant__director-arrow--text {
  font-size: 1.5rem;
  color: #1e73e7;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
}

@media screen and (min-width:1201px) {
  .assistant__director {
    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;
    background-color: #edf7ff;
    padding: 1.25rem 1.25rem 2.5rem 7.5rem;
    border-radius: 12px;
  }
}

.assistant__director-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.assistant__director-text-list {
  display: none;
}
@media screen and (min-width:1201px) {
  .assistant__director-text-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: 3.75rem;
    margin-top: 1.375rem;
    margin-left: -0.75rem;
    -webkit-transform: translateX(-3.5rem);
            transform: translateX(-3.5rem);
  }
}

.assistant__director-text-icon {
  border-radius: 5px;
  overflow: hidden;
  width: 2.875rem;
  height: 2.875rem;
}

.assistant__text-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.assistant__director-text {
  font-size: 1.625rem;
  font-weight: bold;
  letter-spacing: 0.09375rem;
}

.assistant_director-heading {
  color: #091d3b;
  text-align: center;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.4375rem; /* 143.75% */
  letter-spacing: 0.01rem;
}
@media screen and (min-width:1201px) {
  .assistant_director-heading {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: end;
    padding-right: 5rem;
    margin-top: -2.875rem;
  }
}

.assistant__phrase {
  font-size: 0.875rem;
  color: #0072ce;
  font-weight: bold;
  text-align: center;
  margin-top: 0.75rem;
  margin-bottom: 0.875rem;
  letter-spacing: 1.1px;
}
@media screen and (min-width:1201px) {
  .assistant__phrase {
    font-size: 1.625rem;
    margin-top: 1.0625rem;
    margin-bottom: 5rem;
  }
}
.assistant__phrase--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .assistant__phrase--sp {
    display: block;
  }
}
.assistant__phrase--pc {
  display: none;
}
@media screen and (min-width:1201px) {
  .assistant__phrase--pc {
    display: block;
  }
}

.assistant__item-footer {
  background-color: #edf7ff;
  padding: 0 2.8125rem 2.25rem;
  max-width: 37.5rem;
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width:1201px) {
  .assistant__item-footer {
    padding: 2.125rem 3.75rem 3.75rem;
    max-width: 100%;
  }
}

.assistant__footer-title {
  color: #3551dc;
  font-size: 1rem;
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width:1201px) {
  .assistant__footer-title {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }
}

.assistant__footer-cards {
  display: grid;
  gap: 1.4375rem;
  margin-top: 1.875rem;
  max-width: 18.75rem;
  margin-inline: auto;
}
@media screen and (min-width:1201px) {
  .assistant__footer-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}

.assistant__footer-card {
  border-radius: 8px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-inline: auto;
  width: 100%;
  max-width: 25rem;
}

.assistant__card-head {
  font-size: 1.125rem;
  background-color: #1e73e7;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 0.5rem;
}
@media screen and (min-width:1201px) {
  .assistant__card-head {
    font-size: 1.5rem;
  }
}

.assistant__card-body {
  background-color: #fff;
  padding: 0.625rem 1.5625rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
  gap: 0.75rem;
}
@media screen and (min-width:1201px) {
  .assistant__card-body {
    padding: 1.25rem 3rem 0;
  }
}

.assistant__card-text {
  font-size: 0.6875rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width:1201px) {
  .assistant__card-text {
    font-size: 0.875rem;
    letter-spacing: 0.09375rem;
  }
}

.assistant__card-img {
  height: 6.25rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width:1201px) {
  .assistant__card-img {
    height: 10rem;
  }
}

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

.expert {
  margin-top: 50px;
}

.expert__inner {
  padding-inline: 1.375rem;
}
@media screen and (min-width:1001px) {
  .expert__inner {
    padding-inline: 3.125rem;
  }
}

.expert__wrapper {
  background-color: #ecf7ff;
  border-radius: 4px;
  overflow: hidden;
  padding-block: 3.4375rem;
  max-width: 37.5rem;
  margin-inline: auto;
}
@media screen and (min-width:1001px) {
  .expert__wrapper {
    max-width: 112.5rem;
    border-radius: 2.9375rem;
  }
}

.expert__head {
  padding-inline: 1.25rem;
  margin-inline: auto;
  margin-bottom: 3.125rem;
}
@media screen and (min-width:1001px) {
  .expert__head {
    margin-bottom: 8.125rem;
  }
}

.expert__title {
  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.625rem;
}
@media screen and (min-width:1001px) {
  .expert__title {
    -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;
  }
}

.expert__title--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.expert__title-text {
  color: #3551dc;
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 900;
  line-height: 1.1; /* 117.647% */
  letter-spacing: 0.17px;
  white-space: nowrap;
}
@media screen and (min-width:1001px) {
  .expert__title-text {
    font-size: 2.3125rem;
    line-height: 1;
  }
}

.expert__title--number {
  color: #3551dc;
  text-align: center;
  font-weight: 900;
  line-height: 0.8; /* 46.512% */
  letter-spacing: 2.15px;
  font-size: 2.6875rem;
}
@media screen and (min-width:1001px) {
  .expert__title--number {
    font-size: 7.0625rem;
    line-height: 0.9;
  }
}

.expert__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.0625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 3.5rem;
}
@media screen and (min-width:1001px) {
  .expert__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6.4375rem;
    margin-bottom: 8.125rem;
  }
}

.expert__img {
  width: 5.9375rem;
  height: 5.9375rem;
  margin-inline: auto;
  margin-bottom: 0.5rem;
}
@media screen and (min-width:1001px) {
  .expert__img {
    width: 12.8125rem;
    height: 12.8125rem;
    margin-bottom: 3.125rem;
  }
}

.expert__text {
  color: #091d3b;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.66px;
}
@media screen and (min-width:1001px) {
  .expert__text {
    font-size: 1.3125rem;
    line-height: 1.6;
  }
}

.expert__btn a {
  position: relative;
  color: #010000;
  font-family: "Noto Sans JP";
  font-size: 1.3125rem;
  font-weight: 700;
  border-radius: 1.8125rem;
  border: 2px solid #334fd3;
  background: #fefefe;
  -webkit-box-shadow: 0 4px 0 0 #3551db;
          box-shadow: 0 4px 0 0 #3551db;
  width: 100%;
  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;
  padding: 0.8125rem;
  max-width: 19.3125rem;
  margin-inline: auto;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.expert__btn img {
  position: absolute;
  top: 50%;
  right: 5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 1.25rem;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (min-width:1001px) {
  .expert__btn a {
    max-width: 31.25rem;
    border-radius: 6.25rem;
    font-size: 1.875rem;
    -webkit-box-shadow: 0 7px 0 0 #3551db;
            box-shadow: 0 7px 0 0 #3551db;
  }
  .expert__btn a:hover {
    -webkit-box-shadow: 0 0px 0 0 #3551db;
            box-shadow: 0 0px 0 0 #3551db;
    -webkit-transform: translateY(7px);
            transform: translateY(7px);
  }
  .expert__btn img {
    max-width: 1.875rem;
  }
}

.service {
  margin-top: 3.3125rem;
}

.service__inner {
  padding-inline: 1.375rem;
}
@media screen and (min-width:1001px) {
  .service__inner {
    padding-inline: 3.4375rem;
  }
}

.service__wrapper {
  background-color: #f5f5f5;
  border-radius: 0.25rem;
  overflow: hidden;
  padding-block: 2.25rem;
}
@media screen and (min-width:1001px) {
  .service__wrapper {
    max-width: 112.5rem;
    border-radius: 2.9375rem;
    margin-inline: auto;
    padding-top: 4.3125rem;
    padding-bottom: 5.625rem;
  }
}

.service__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.service__title-lead {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 133.333% */
  letter-spacing: 0.45px;
  margin-bottom: 0.4375rem;
}
@media screen and (min-width:1001px) {
  .service__title-lead {
    font-size: 1.75rem;
  }
}

.service__title-text {
  color: #3551dc;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 21px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 1.05px;
}
@media screen and (min-width:1001px) {
  .service__title-text {
    font-size: 2.1875rem;
    margin-bottom: 2.75rem;
  }
}

.service__container {
  margin-top: 0.875rem;
}
@media screen and (min-width:1001px) {
  .service__container {
    max-width: 75rem;
    margin: 0 auto;
  }
}

.service__container-inner {
  padding-inline: 0.6875rem;
}

.service__cards {
  display: grid;
  gap: 0.875rem;
  max-width: 37.5rem;
  margin-inline: auto;
}
@media screen and (min-width:1001px) {
  .service__cards {
    max-width: 100%;
    gap: 2.75rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.service__card {
  padding: 1.5rem;
  border-radius: 5px;
  background: #fff;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (min-width:1001px) {
  .service__card {
    padding: 2.1875rem 2.75rem 2.75rem 2.1875rem;
    border-radius: 0.5rem;
  }
  .service__card:has(.service__card-img) {
    display: grid;
    gap: 5%;
    grid-template-columns: 50% 45%;
  }
}

.service__check-icon {
  display: block;
  margin-block: auto;
}

.service__card--blue {
  color: #0762b2;
}
.service__card--blue .service__card-head {
  color: #0762b2;
}
.service__card--blue .service__head-line--sp {
  background-color: #0762b2;
}
.service__card--blue .service__check-icon {
  color: #0762b2;
}
@media screen and (min-width:1001px) {
  .service__card--blue {
    grid-column: span 2/span 2;
  }
}

.service__card--red {
  color: #d73530;
}
.service__card--red .service__card-head {
  color: #d73530;
}
.service__card--red .service__head-line--sp {
  background-color: #d73530;
}
.service__card--red .service__check-icon {
  color: #d73530;
}
@media screen and (min-width:1001px) {
  .service__card--red {
    grid-column: span 2/span 2;
    grid-row-start: 2;
  }
  .service__card--red .service__card-head--lead {
    white-space: nowrap;
  }
}

.service__card--purple {
  color: #41266e;
}
.service__card--purple .service__card-head {
  color: #41266e;
}
.service__card--purple .service__head-line--sp {
  background-color: #41266e;
}
.service__card--purple .service__check-icon {
  color: #41266e;
}
@media screen and (min-width:1001px) {
  .service__card--purple {
    grid-row-start: 3;
  }
}

.service__card--orange {
  color: #ef7a2f;
}
.service__card--orange .service__card-head {
  color: #ef7a2f;
}
.service__card--orange .service__head-line--sp {
  background-color: #ef7a2f;
}
.service__card--orange .service__check-icon {
  color: #ef7a2f;
}
@media screen and (min-width:1001px) {
  .service__card--orange {
    grid-row-start: 3;
  }
}

@media screen and (min-width:1001px) {
  .service__card-text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.service__card-head {
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.625rem;
  grid-template-columns: 1fr;
}
@media screen and (min-width:1001px) {
  .service__card-head {
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(3, auto);
    gap: 0.5rem 0.625rem;
  }
}

.service__card-head--number {
  font-family: "Public Sans";
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1; /* 96.667% */
  letter-spacing: 0.6px;
}
@media screen and (min-width:1001px) {
  .service__card-head--number {
    font-size: 4.375rem;
    grid-row: span 2/span 2;
  }
}

.service__card-head--lead {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
  letter-spacing: -0.12px;
}
@media screen and (min-width:1001px) {
  .service__card-head--lead {
    font-size: 1.0625rem;
    grid-column-start: 2;
    grid-row-start: 1;
    align-self: flex-end;
  }
}

.service__card-head--title {
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 117.647% */
  letter-spacing: -0.34px;
}
@media screen and (min-width:1001px) {
  .service__card-head--title {
    grid-column-start: 2;
    grid-row-start: 2;
    font-size: 1.375rem;
  }
}

.service__head-line--sp {
  width: 100%;
  height: 2px;
}
@media screen and (min-width:1001px) {
  .service__head-line--sp {
    grid-column: span 2/span 2;
    grid-column-start: 1;
    grid-row-start: 3;
  }
}

.service__list {
  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: 0.625rem;
}
@media screen and (min-width:1001px) {
  .service__list {
    gap: 0.5rem;
    margin-top: 3.125rem;
  }
}

.service__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:1001px) {
  .service__list-item {
    gap: 0.875rem;
  }
}

.service__list-check {
  width: 0.75rem;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (min-width:1001px) {
  .service__list-check {
    width: 1.25rem;
  }
}
.service__list-check svg {
  width: 100%;
}

.service__list-text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 166.667% */
  letter-spacing: -0.12px;
}
@media screen and (min-width:1001px) {
  .service__list-text {
    font-size: 1.25rem;
  }
}

.service__card-img {
  width: 100%;
  margin-top: 0.625rem;
  max-width: 25rem;
  margin-inline: auto;
}
@media screen and (min-width:1001px) {
  .service__card-img {
    -ms-flex-item-align: center;
        align-self: center;
    margin-inline: 0;
    max-width: none;
  }
}

.cta {
  margin-top: 2.375rem;
}

.cta__lead-container {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4; /* 133.333% */
  letter-spacing: 0.45px;
}
@media screen and (min-width:1001px) {
  .cta__lead-container {
    font-size: 1.5625rem;
  }
}

.cta__main-container {
  padding-block: 2.625rem;
  background-image: url(../assets/lp-img/cta_bg.png);
  margin-top: 1.3125rem;
}
@media screen and (min-width:1001px) {
  .cta__main-container {
    padding-block: 6.25rem;
    margin-top: 3.125rem;
  }
}

.cta__main-text {
  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.5625rem;
}

.cta__main-text--sub {
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 111.111% */
  letter-spacing: 0.54px;
}
@media screen and (min-width:1001px) {
  .cta__main-text--sub {
    font-size: 1.4375rem;
  }
}

.cta__main-text--main {
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.11; /* 111.111% */
  letter-spacing: 0.54px;
}
@media screen and (min-width:1001px) {
  .cta__main-text--main {
    font-size: 2.25rem;
  }
}

.cta__btn-container {
  margin-top: 2.375rem;
  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.25rem;
  -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 (min-width:1001px) {
  .cta__btn-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 3.75rem;
  }
}

.cta__btn--white a,
.cta__btn--yellow a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #010000;
  font-family: "Noto Sans JP";
  font-size: 1.1875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 29px;
  -webkit-box-shadow: 0 4px 0 0 #030d63;
          box-shadow: 0 4px 0 0 #030d63;
  width: 19.3125rem;
  padding: 0.8125rem 0.9375rem;
  white-space: nowrap;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.cta__btn--white img,
.cta__btn--yellow img {
  position: absolute;
  top: 50%;
  right: 2%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.25rem;
}
@media screen and (min-width:1001px) {
  .cta__btn--white a,
  .cta__btn--yellow a {
    width: 31.25rem;
    font-size: 1.75rem;
    -webkit-box-shadow: 0 7px 0 0 #030d63;
            box-shadow: 0 7px 0 0 #030d63;
  }
  .cta__btn--white img,
  .cta__btn--yellow img {
    width: 1.5rem;
  }
}
.cta__btn--white:hover a,
.cta__btn--yellow:hover a {
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
  -webkit-box-shadow: 0 0 0 0 #030d63;
          box-shadow: 0 0 0 0 #030d63;
}

.cta__btn--white a {
  background: #fefefe;
}

.cta__btn--yellow a {
  border-radius: 1.8125rem;
  background: #f9c61e;
}

.cta-2 {
  margin-top: 2.375rem;
}

.cta-2__lead-container {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4; /* 133.333% */
  letter-spacing: 0.45px;
}
@media screen and (min-width:1001px) {
  .cta-2__lead-container {
    font-size: 1.5625rem;
  }
}

.cta-2__main-container {
  padding-block: 2.625rem;
  background-image: url(../assets/lp-img/cta_bg.png);
  margin-top: 1.3125rem;
}
@media screen and (min-width:1001px) {
  .cta-2__main-container {
    padding-block: 6.25rem;
    margin-top: 3.125rem;
  }
}

.cta-2__main-text {
  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.5625rem;
}

.cta-2__main-text--sub {
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.11; /* 111.111% */
  letter-spacing: 0.54px;
}
@media screen and (min-width:1001px) {
  .cta-2__main-text--sub {
    font-size: 1.4375rem;
  }
}

.cta-2__main-text--main {
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.11; /* 111.111% */
  letter-spacing: 0.54px;
}
@media screen and (min-width:1001px) {
  .cta-2__main-text--main {
    font-size: 2.25rem;
    letter-spacing: 1px;
  }
}

.cta-2__btn-container {
  margin-top: 2.375rem;
  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.25rem;
  -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 (min-width:1001px) {
  .cta-2__btn-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 3.75rem;
  }
}

.cta-2__btn--white a,
.cta-2__btn--yellow a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #010000;
  font-family: "Noto Sans JP";
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 29px;
  -webkit-box-shadow: 0 4px 0 0 #030d63;
          box-shadow: 0 4px 0 0 #030d63;
  width: 19.3125rem;
  padding: 0.8125rem 0.9375rem;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.cta-2__btn--white img,
.cta-2__btn--yellow img {
  position: absolute;
  top: 50%;
  right: 2%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.25rem;
}
@media screen and (min-width:1001px) {
  .cta-2__btn--white a,
  .cta-2__btn--yellow a {
    width: 31.25rem;
    font-size: 1.75rem;
    -webkit-box-shadow: 0 7px 0 0 #030d63;
            box-shadow: 0 7px 0 0 #030d63;
  }
  .cta-2__btn--white img,
  .cta-2__btn--yellow img {
    width: 1.5rem;
  }
}
.cta-2__btn--white:hover a,
.cta-2__btn--yellow:hover a {
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
  -webkit-box-shadow: 0 0 0 0 #030d63;
          box-shadow: 0 0 0 0 #030d63;
}

.cta-2__btn--white a {
  background: #fefefe;
}

.cta-2__btn--yellow a {
  background: #f9c61e;
}

.faq {
  margin-top: 3.125rem;
  background: #f7f9fd;
  padding-block: 2.5rem;
}
@media screen and (min-width:1001px) {
  .faq {
    margin-top: 6.25rem;
    padding-block: 5rem;
  }
}

.faq__inner {
  padding-inline: 1.375rem;
  margin-inline: auto;
}

.faq__head {
  text-align: center;
  margin-bottom: 1.875rem;
}
@media screen and (min-width:1001px) {
  .faq__head {
    margin-bottom: 0;
  }
}

.faq__head-title {
  color: #3551dc;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .faq__head-title {
    font-size: 2.34375rem;
  }
}

.faq__head-description {
  margin-top: 0.9375rem;
  color: #000;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .faq__head-description {
    font-size: 1.125rem;
  }
}

.faq__container {
  max-width: 112.5rem;
  margin: 0 auto;
  border-radius: 2.9375rem;
  padding: 1.25rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .faq__container {
    background-color: #f7f9fd; /* PC image greyish background */
    padding: 1.875rem 2.5rem;
  }
}

.faq__items {
  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;
  max-width: 62.5rem;
  margin: 0 auto;
}
@media screen and (min-width:1001px) {
  .faq__items {
    gap: 1.25rem;
  }
}

.faq__item {
  background: #fff;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.faq__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0.9375rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  position: relative;
}
@media screen and (min-width:1001px) {
  .faq__item-head {
    padding: 1.25rem 1.5625rem;
  }
}

.faq__item-q {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: #1178f2;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .faq__item-q {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
}

.faq__item-q-text {
  margin-left: 0.9375rem;
  padding-right: 1.875rem; /* To prevent text overlap with arrow */
  color: #000;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .faq__item-q-text {
    font-size: 1.3125rem;
  }
}

.faq__item-arrow {
  position: absolute;
  right: 0.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.75rem;
  height: 0.75rem;
  -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;
}
.faq__item-arrow::before, .faq__item-arrow::after {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.125rem;
  background-color: #1178f2;
  top: 0.3125rem;
}
.faq__item-arrow::before {
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.faq__item-arrow::after {
  right: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width:1001px) {
  .faq__item-arrow {
    right: 1.5625rem;
    width: 1rem;
    height: 1rem;
  }
  .faq__item-arrow::before, .faq__item-arrow::after {
    width: 0.625rem;
    top: 0.4375rem;
  }
}

/* Open State */
.faq__item.is-open .faq__item-arrow {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.faq__item-body {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.3s ease;
  transition: grid-template-rows 0.3s ease;
  transition: grid-template-rows 0.3s ease, -ms-grid-rows 0.3s ease;
}

.faq__item.is-open .faq__item-body {
  grid-template-rows: 1fr;
}

.faq__item-body-inner {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0.9375rem;
}
@media screen and (min-width:1001px) {
  .faq__item-body-inner {
    padding: 0 1.5625rem;
  }
}

.faq__item-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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: #888888;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 0.25rem;
  margin-bottom: 0.9375rem;
}
@media screen and (min-width:1001px) {
  .faq__item-a {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

.faq__item-a-text {
  margin-left: 0.9375rem;
  color: #333;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .faq__item-a-text {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
}

.faq__footer {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .faq__footer {
    margin-top: 3.75rem;
  }
}

.faq__footer-text {
  color: #000;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .faq__footer-text {
    font-size: 1.125rem;
  }
}

.faq__footer-buttons {
  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;
  -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) {
  .faq__footer-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.25rem;
  }
}

.faq__footer-btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #010000;
  font-family: "Noto Sans JP";
  font-size: 19px;
  font-weight: 700;
  border-radius: 29px;
  -webkit-box-shadow: 0 4px 0 0 #030d63;
          box-shadow: 0 4px 0 0 #030d63;
  width: 19.3125rem;
  padding: 0.8125rem 0.9375rem;
  background: #fefefe;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (min-width: 768px) {
  .faq__footer-btn {
    width: 23.75rem;
    font-size: 1.5rem;
    -webkit-box-shadow: 0 7px 0 0 #030d63;
            box-shadow: 0 7px 0 0 #030d63;
  }
}
.faq__footer-btn:hover {
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
  -webkit-box-shadow: 0 0 0 0 #030d63;
          box-shadow: 0 0 0 0 #030d63;
}

.faq__footer-btn--white {
  border: 1px solid #13141b;
}

.faq__btn-arrow {
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.25rem;
}
@media screen and (min-width: 768px) {
  .faq__btn-arrow {
    width: 1.5rem;
    right: 1.5625rem;
  }
}

.voice__head {
  padding-top: 3.6875rem;
  padding-bottom: 2.75rem;
}

.voice__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.voice__title--blue {
  color: #3551dc;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 23px;
  font-style: normal;
  font-weight: 900;
  line-height: 23px; /* 100% */
  letter-spacing: -0.46px;
}
@media screen and (min-width: 768px) {
  .voice__title--blue {
    font-size: 2.3125rem;
  }
}

.voice__title--sub {
  color: #000;
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 153.846% */
  letter-spacing: 0.39px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .voice__title--sub {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.voice__container {
  position: relative;
  width: 100%;
}
@media screen and (min-width:1001px) {
  .voice__container {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    overflow-x: auto;
  }
}

.voice__scroll-hint {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  top: -2.1875rem;
  left: 18.75rem;
}
@media screen and (min-width: 768px) {
  .voice__scroll-hint {
    display: none;
  }
}

.voice__scroll-text {
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 2; /* 166.667% */
  letter-spacing: 0.36px;
}

.voice__scroll-bar {
  width: 100px;
  height: 2px;
  background-color: #000;
  -webkit-animation: stretchBar 2s ease-in infinite;
          animation: stretchBar 2s ease-in infinite;
}

@-webkit-keyframes stretchBar {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  51% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}

@keyframes stretchBar {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  51% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}
.voice__cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 330px;
  overflow-x: auto;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 1.0625rem;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.25rem;
  padding: 0.625rem;
  grid-template-rows: auto auto auto auto auto auto auto;
}
@media screen and (min-width: 768px) {
  .voice__cards {
    gap: 4.125rem;
    padding-inline: 0.625rem;
  }
}

.voice__card {
  border-radius: 12px;
  overflow: hidden;
  width: 330px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 330px;
          flex: 0 0 330px;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 100%;
  gap: 0;
  -webkit-box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.25);
  scroll-snap-align: start;
  grid-row: span 7;
  grid-template-columns: 1fr;
  display: grid;
  grid-template-rows: subgrid;
}

.voice__card-img {
  height: 200px;
  overflow: hidden;
}
.voice__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.voice__card-title {
  display: grid;
  place-items: center;
  text-align: center;
  color: #091d3b;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3; /* 136.364% */
  letter-spacing: 0.22px;
  margin-top: 1rem;
}

.voice__card-problem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-inline: 11px;
  border-radius: 2px;
  background: #f5f5f5;
  margin-top: 16px;
}

.voice__problem-label {
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8; /* 153.846% */
  letter-spacing: 0.39px;
  border-radius: 2px 0 0 2px;
  background: #0976e7;
  max-width: 24px;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  letter-spacing: 5px;
}

.voice__problem-text {
  color: #000;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8; /* 130.769% */
  padding: 0.8125rem;
  letter-spacing: -1px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .voice__problem-text {
    display: grid;
    place-items: center;
    letter-spacing: 0px;
    margin-inline: auto;
  }
}

.voice__card-solution {
  margin-top: 1.0625rem;
}

.voice__card-solution,
.voice__card-result {
  display: grid;
  gap: 5px;
  grid-template-columns: auto 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 1.25rem;
  padding-right: 1rem;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6; /* 163.636% */
  letter-spacing: -0.2px;
}

.voice__card-result {
  margin-top: 19px;
}

.voice__solution-label,
.voice__result-label {
  text-align: start;
}

.voice__card-info {
  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;
  margin-top: 12px;
  margin-bottom: 16px;
  margin-inline: auto;
}

.voice__info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.voice__info-table th,
.voice__info-table td {
  color: #0d74e6;
  font-weight: 700;
  padding: 0;
  vertical-align: top;
  font-weight: 700;
  line-height: 1.4; /* 141.667% */
  letter-spacing: 0.36px;
}

.voice__info-table th {
  white-space: nowrap;
  width: 1%; /* 最小幅にして、コンテンツに合わせる */
  padding-right: 8px;
}

.voice__card-footer {
  position: relative;
  display: grid;
  background-color: #0d74e6;
  height: 88px;
  place-items: center;
}
.voice__card-footer::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  /* 幅56px (左28px + 右28px)、高さ23px、白色の設定 */
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-top: 23px solid #ffffff;
  top: 0%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.voice__footer-text {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.3; /* 127.778% */
  letter-spacing: 0.18px;
}

.pricing {
  margin-top: 3.75rem;
}

.pricing__inner {
  padding-inline: 1.375rem;
}
@media screen and (min-width: 768px) {
  .pricing__inner {
    padding-inline: 3.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .pricing__bg-color {
    max-width: 112.5rem;
    background-color: #ecf7ff;
    margin-inline: auto;
    border-radius: 2.9375rem;
    padding-inline: 0.625rem;
    overflow: hidden;
  }
}

.pricing__plan {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .pricing__plan {
    background-color: #ecf7ff;
  }
}

.pricing__wrapper {
  border-radius: 0.25rem;
  background-color: #ecf7ff;
  padding: 2.3125rem 1.375rem 3.5625rem;
  margin-inline: auto;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .pricing__wrapper {
    max-width: 112.5rem;
    padding-top: 8.1875rem;
  }
}

.pricing__title {
  color: #3551dc;
  text-align: center;
  font-size: 1.4375rem;
  font-style: normal;
  font-weight: 900;
  line-height: 28px; /* 121.739% */
  letter-spacing: -0.46px;
}
@media screen and (min-width: 768px) {
  .pricing__title {
    font-size: 2.34375rem;
  }
}

.pricing__cards {
  margin-top: 1.4375rem;
  display: grid;
  gap: 1.4375rem;
  max-width: 20.625rem;
  margin-inline: auto;
}
@media screen and (min-width:1001px) {
  .pricing__cards {
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    max-width: 81.25rem;
    margin-inline: auto;
    margin-top: 6rem;
  }
}

.pricing__card {
  padding: 2.3125rem 1.25rem 2.0625rem;
  border-radius: 12px;
  border: 4px solid #c2d0dd;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
  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;
}
@media screen and (min-width: 768px) {
  .pricing__card {
    padding: 4.625rem 1.375rem 4rem;
  }
}

.pricing__card--white {
  background: #fff;
  color: #0655b2;
}
.pricing__card--white .pricing__footer-text {
  color: #020101;
}
.pricing__card--white .pricing__card-footer {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pricing__card--blue {
  position: relative;
  color: #fff;
  border-radius: 12px;
  border: 4px solid #fff;
  background: #0855b4;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
  padding-top: 3.875rem;
}
.pricing__card--blue .pricing__card-footer {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width:1001px) {
  .pricing__card--blue {
    margin-top: -1.25rem;
    padding-top: 6.625rem;
  }
  .pricing__card--blue .pricing__card-container {
    margin-top: -1.25rem;
  }
}

.pricing__card-ribbon {
  position: absolute;
  top: 1.25rem;
  left: -14px;
}
@media screen and (min-width:1001px) {
  .pricing__card-ribbon {
    width: 12.5rem;
    top: 1.9375rem;
  }
}

.pricing__card-inner,
.pricing__card-container {
  display: contents;
}

.pricing__card-label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5; /* 143.75% */
  letter-spacing: 0.96px;
  border-radius: 84px;
  background: #e7f3fd;
  padding: 0.1875rem 0.8125rem;
}

.pricing__card-title {
  margin-top: 0.5rem;
  font-size: 1.4375rem;
  font-weight: 900;
  line-height: 1.5; /* 121.739% */
  letter-spacing: -0.46px;
}
@media screen and (min-width:1001px) {
  .pricing__card-title {
    font-size: 1.75rem;
  }
}

.pricing__card-price {
  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.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3; /* 127.778% */
  letter-spacing: 1.26px;
  margin-top: 1.1875rem;
}

@media screen and (min-width: 768px) {
  .pricing__price-time {
    font-size: 1.3125rem;
  }
}

.pricing__price {
  text-align: center;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1; /* 63.636% */
  letter-spacing: -0.88px;
}

.pricing__price-en {
  font-size: 1.125rem;
  margin-inline: 0.25rem;
}

.pricing__price-tax {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6; /* 164.286% */
  letter-spacing: -0.56px;
}

.pricing__price-unit {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6; /* 164.286% */
  letter-spacing: 0.42px;
}

.pricing__card-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2.3125rem;
  gap: 0.1875rem;
}

.pricing__footer-icon {
  width: 1.5rem;
  aspect-ratio: 1/1;
  height: auto;
}

.pricing__footer-text {
  font-size: 1rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.4; /* 143.75% */
}
@media screen and (min-width: 768px) {
  .pricing__footer-text {
    font-size: 1.25rem;
  }
}

.pricing__usage {
  margin-top: 5.25rem;
}
@media screen and (min-width: 768px) {
  .pricing__usage {
    background-color: #fff;
    padding-top: 3.625rem;
    padding-bottom: 4.125rem;
    max-width: 93.75rem;
    margin-inline: auto;
  }
}

.pricing__usage-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-inline: auto;
  color: #3551dc;
}
@media screen and (min-width: 768px) {
  .pricing__usage-title {
    -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;
  }
}

.pricing__usage-title--main {
  font-size: 1.4375rem;
  font-weight: 900;
  line-height: 1.2; /* 121.739% */
  letter-spacing: -0.46px;
}
@media screen and (min-width: 768px) {
  .pricing__usage-title--main {
    font-size: 2.34375rem;
  }
}

.pricing__usage-title--sub {
  text-align: end;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7; /* 175% */
  letter-spacing: -0.32px;
}
@media screen and (min-width: 768px) {
  .pricing__usage-title--sub {
    font-size: 2.34375rem;
  }
}

.pricing__usage-lead {
  color: #000;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5; /* 153.846% */
  letter-spacing: 0.39px;
}
@media screen and (min-width: 768px) {
  .pricing__usage-lead {
    font-size: 1rem;
  }
}

.pricing__usage-container {
  display: grid;
  gap: 1.125rem;
  max-width: 37.5rem;
  margin-top: 1.4375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .pricing__usage-container {
    grid-template-columns: repeat(2, 1fr);
    max-width: 82.5rem;
    margin-top: 2.4375rem;
  }
}

.pricing__usage-container-item {
  background-color: #ecf7ff;
  padding-top: 1.625rem;
  padding-bottom: 0.8125rem;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .pricing__usage-container-item {
    width: 100%;
    padding-block: 3.125rem;
  }
}

.pricing__usage-container-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pricing__usage-container-tag--red .pricing__usage-tag-label {
  border: 1px solid #e10114;
}
.pricing__usage-container-tag--red .pricing__usage-tag-name {
  background: #e10114;
}

.pricing__usage-container-tag--blue .pricing__usage-tag-label {
  border: 1px solid #002060;
}
.pricing__usage-container-tag--blue .pricing__usage-tag-name {
  background: #002060;
}

.pricing__usage-tag-label {
  background: #fff;
  color: #31356f;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5; /* 153.846% */
  letter-spacing: 0.39px;
  padding: 1px 0.8125rem;
}
@media screen and (min-width: 768px) {
  .pricing__usage-tag-label {
    font-size: 1.125rem;
  }
}

.pricing__usage-tag-name {
  color: #fff;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5; /* 153.846% */
  letter-spacing: 0.39px;
  padding: 1px 0.625rem;
}
@media screen and (min-width: 768px) {
  .pricing__usage-tag-name {
    font-size: 1.125rem;
  }
}

.pricing__usage-container-graph {
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .pricing__usage-container-graph {
    margin-top: 2.375rem;
  }
}

.pricing__rollover {
  margin-top: 4.4375rem;
  max-width: 37.5rem;
  margin-inline: auto;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .pricing__rollover {
    padding-top: 3.625rem;
    padding-bottom: 4.3125rem;
    max-width: 93.75rem;
  }
}

.pricing__rollover-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-inline: auto;
}

.pricing__rollover-title--main {
  color: #3551dc;
  text-align: center;
  font-size: 1.4375rem;
  font-weight: 900;
  line-height: 1.2; /* 121.739% */
  letter-spacing: 0.69px;
}
@media screen and (min-width: 768px) {
  .pricing__rollover-title--main {
    font-size: 2.28125rem;
  }
}

.pricing__rollover-title--sub {
  color: #3551dc;
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 900;
  line-height: 1.6; /* 164.706% */
  letter-spacing: -0.34px;
}
@media screen and (min-width: 768px) {
  .pricing__rollover-title--sub {
    font-size: 1.5rem;
  }
}

.pricing__rollover-lead {
  color: #000;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5; /* 153.846% */
  letter-spacing: 0.39px;
}
@media screen and (min-width: 768px) {
  .pricing__rollover-lead {
    font-size: 1rem;
  }
}

.pricing__rollover-img {
  position: relative;
  margin-top: 2.875rem;
  max-width: 50rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .pricing__rollover-img {
    margin-top: 4.8125rem;
    max-width: 57.5rem;
    padding-right: 7.5rem;
  }
}

.pricing__footer {
  padding-top: 1.4375rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .pricing__footer {
    padding-top: 7.3125rem;
    padding-bottom: 7.6875rem;
    background-color: transparent;
  }
}

.pricing__footer-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;
}

.pricing__btn-badge {
  position: relative;
  display: inline-block;
  border-radius: 29px;
  border: 1px solid #000;
  background: #fefefe;
  padding: 0.375rem 1.125rem;
  z-index: 3;
  margin-bottom: -0.75rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .pricing__btn-badge {
    font-size: 1.4375rem;
    padding: 1.0625rem 2.9375rem;
    margin-bottom: -1.6875rem;
  }
}

.pricing__btn-link {
  position: relative;
  border-radius: 80px;
  background: #f9c61e;
  -webkit-box-shadow: 0 4px 0 0 #010000;
          box-shadow: 0 4px 0 0 #010000;
  color: #010000;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.51px;
  padding: 0.875rem 1.4375rem 0.6875rem;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pricing__btn-link img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 3px;
  width: 0.875rem;
}
@media screen and (min-width: 768px) {
  .pricing__btn-link {
    font-size: 1.9375rem;
    padding: 2.0625rem 4.5rem 1.625rem;
    -webkit-box-shadow: 7px 7px 0 0 #010000;
            box-shadow: 7px 7px 0 0 #010000;
  }
  .pricing__btn-link img {
    width: 1.5rem;
    right: 1.25rem;
  }
  .pricing__btn-link:hover {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
    -webkit-box-shadow: 0px 0px 0 0 #010000;
            box-shadow: 0px 0px 0 0 #010000;
  }
}

.pricing__btn-tax {
  color: #010000;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.39px;
}
@media screen and (min-width: 768px) {
  .pricing__btn-tax {
    font-size: 1.375rem;
  }
}

.pricing__footer-description {
  color: #000;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4; /* 141.667% */
  letter-spacing: 0.36px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .pricing__footer-description {
    margin-top: 1.8125rem;
    font-size: 1.125rem;
  }
}

.flow {
  margin-top: 3.625rem;
}
@media screen and (min-width:1001px) {
  .flow {
    margin-top: 7.5rem;
  }
}

.flow__inner {
  padding-inline: 1.375rem;
}
@media screen and (min-width: 768px) {
  .flow__inner {
    padding-inline: 3.4375rem;
  }
}

.flow__container {
  background-color: #f5f5f5;
  border-radius: 4px;
  padding-top: 1.875rem;
  padding-bottom: 2.6875rem;
  max-width: 37.5rem;
  margin-inline: auto;
}
@media screen and (min-width:1001px) {
  .flow__container {
    max-width: 112.5rem;
    border-radius: 2.9375rem;
  }
}

.flow__head-lead {
  color: #000;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.42; /* 142.857% */
  letter-spacing: 0.42px;
}
@media screen and (min-width:1001px) {
  .flow__head-lead {
    font-size: 1.25rem;
  }
}

.flow__head-title {
  color: #3551dc;
  text-align: center;
  font-size: 1.4375rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2; /* 121.739% */
  letter-spacing: -0.46px;
}
@media screen and (min-width:1001px) {
  .flow__head-title {
    font-size: 2.34375rem;
  }
}

.flow__step {
  margin-top: 0.625rem;
  padding-inline: 1.65625rem;
}
@media screen and (min-width:1001px) {
  .flow__step {
    margin-top: 3.75rem;
  }
}

.flow__step-items {
  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: 3px;
  counter-reset: flow-number;
}
@media screen and (min-width:1001px) {
  .flow__step-items {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 12.5rem) auto) minmax(0, 12.5rem);
    grid-template-rows: auto auto auto 1fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-column-gap: clamp(8px, 1vw, 20px);
       -moz-column-gap: clamp(8px, 1vw, 20px);
            column-gap: clamp(8px, 1vw, 20px);
    row-gap: 0;
  }
}

.flow__step-item {
  width: 100%;
}
@media screen and (min-width:1001px) {
  .flow__step-item {
    display: contents;
  }
}

.flow__item-box {
  position: relative;
  display: grid;
  border-radius: 8px;
  border: 1px solid #2f52db;
  background: #fff;
  height: 5.4375rem;
  width: 100%;
  counter-increment: flow-number;
}
.flow__item-box::before {
  content: counter(flow-number);
  position: absolute;
  display: grid;
  place-items: center;
  left: -1.1875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 2rem;
  background: #2f52db;
}
@media screen and (min-width:1001px) {
  .flow__item-box {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    width: 100%;
    height: 100%;
    min-height: 21.25rem;
    border: none;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
    background: #fff;
    overflow: hidden;
  }
  .flow__item-box::before {
    display: none;
  }
}

.flow__item-head {
  display: none;
}
@media screen and (min-width:1001px) {
  .flow__item-head {
    display: grid;
    place-items: center;
    background-color: #1d74e7;
    padding-block: 0.75rem;
  }
}

.flow__item-number {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
}

.flow-item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (min-width:1001px) {
  .flow-item-body {
    display: contents;
  }
}

.flow__item-body-wrapper {
  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;
  width: 100%;
  max-width: 15.625rem; /* Limit width to keep content grouped */
  margin-inline: auto; /* Center the grouped content */
  gap: 1.25rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width:1001px) {
  .flow__item-body-wrapper {
    max-width: none;
    margin-inline: 0;
    padding-inline: 0;
    display: contents;
  }
}

.flow__item-icon {
  width: 3.125rem;
}
@media screen and (min-width:1001px) {
  .flow__item-icon {
    width: 5rem;
    margin-inline: auto;
    margin-top: 2.625rem;
    margin-bottom: 0.625rem;
  }
}

@media screen and (min-width:1001px) {
  .flow__item-text {
    display: contents;
  }
}

.flow__item-title {
  color: #010101;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.75; /* 175% */
  letter-spacing: -0.32px;
}
@media screen and (min-width:1001px) {
  .flow__item-title {
    text-align: center;
    margin-bottom: 1.25rem;
    padding-inline: 0.75rem;
  }
}

.flow__item-description {
  color: #000;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.53; /* 153.846% */
  letter-spacing: 0.39px;
}
@media screen and (min-width:1001px) {
  .flow__item-description {
    text-align: center;
    padding-inline: 0.75rem;
    padding-bottom: 2.5rem;
  }
}

.flow__step-item--arrow {
  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:1001px) {
  .flow__step-item--arrow {
    grid-row: span 4;
  }
}

.flow__item-arrow-img {
  width: 1.375rem;
}
@media screen and (min-width:1001px) {
  .flow__item-arrow-img {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

.flow__footer {
  padding-top: 1.375rem;
}
@media screen and (min-width:1001px) {
  .flow__footer {
    padding-top: 0;
    margin-top: 4.0625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.flow__footer-text {
  color: #3551dc;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.6; /* 166.667% */
  letter-spacing: -0.24px;
}
@media screen and (min-width:1001px) {
  .flow__footer-text {
    font-size: 1.125rem;
  }
}

.footer {
  background-color: #fff;
  padding: 3.75rem 0;
  border-top: 1px solid #e5e7eb;
}

.footer__inner {
  padding: 0 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.75rem;
}

.footer__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;
  max-width: 39.75rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.75rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.footer__item {
  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;
}
@media screen and (min-width: 768px) {
  .footer__item {
    -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;
  }
}
.footer__logo {
  height: 2.5rem;
  width: auto;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    height: 3.125rem;
    width: auto;
    max-width: none;
  }
}

.footer__company-logo {
  height: 1.875rem;
  width: auto;
}
@media screen and (min-width: 768px) {
  .footer__company-logo {
    height: 2.1875rem;
    max-width: none;
  }
}

.footer__address {
  font-size: 0.875rem;
  color: #000;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .footer__address {
    text-align: left;
    font-size: 0.9375rem;
  }
}

.footer__menu {
  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: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .footer__menu {
    width: auto;
    gap: 2rem;
  }
}

.footer__menu-list--top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 0.9375rem;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__menu-list--top {
    grid-template-columns: repeat(3, 10rem);
    row-gap: 1.25rem;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    width: auto;
  }
}
.footer__menu-list--bottom {
  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;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__menu-list--bottom {
    display: grid;
    grid-template-columns: repeat(3, 10rem);
    row-gap: 1.25rem;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    width: auto;
  }
}
.footer__menu-list a {
  font-size: 0.875rem;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__menu-list a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .footer__menu-list a {
    font-size: 0.9375rem;
  }
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  overflow-y: auto;
}
.menu.is-menu {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .menu {
    display: none;
  }
}

.menu__inner {
  padding: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}

.menu__header {
  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;
  margin-bottom: 1.5rem;
}

.menu__logo {
  width: 7.3125rem;
}
.menu__logo img {
  width: 100%;
  height: auto;
}

.menu__close {
  width: 1.875rem;
  height: 1.875rem;
  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;
  background: transparent;
  border: none;
  position: relative;
  cursor: pointer;
  padding: 0;
}
.menu__close span {
  display: block;
  width: 50%;
  height: 2px;
  background-color: #1e73e7;
  position: absolute;
  border-radius: 1px;
}
.menu__close span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.menu__close span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.menu__nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  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: 1.25rem;
  margin-bottom: 1.25rem;
}

.menu__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.375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu__list a {
  font-size: 0.9375rem;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

.menu__buttons {
  margin-top: 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: 1rem;
  padding-bottom: 2.5rem;
  width: 100%;
  max-width: 21.25rem;
  margin-inline: auto;
}

.menu__btn {
  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;
  gap: 0.625rem;
  width: 100%;
  padding: 1.125rem 1.25rem;
  border-radius: 2.1875rem;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #091d3b;
  position: relative;
  -webkit-box-shadow: 0 4px 0 #091d3b;
          box-shadow: 0 4px 0 #091d3b;
}
.menu__btn--contact {
  background-color: #fff;
  color: #000;
}
.menu__btn--download {
  background-color: #f7b718;
  color: #000;
}
.menu__btn-arrow {
  width: 1.125rem;
  height: 1.125rem;
  position: absolute;
  right: 1.5625rem;
}
.menu__btn-icon {
  width: 1.125rem;
  height: 1.125rem;
  position: absolute;
  right: 1.5625rem;
}