@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}
@media screen and (min-width: 1280px) {
  body {
    font-size: 18px;
  }
}

a {
  color: #333;
  text-decoration: none;
}
a:hover {
  opacity: 0.9;
}

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

.section__heading {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.375;
  color: #082b55;
}
@media screen and (min-width: 768px) {
  .section__heading {
    font-size: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .section__heading {
    font-size: 40px;
  }
}
.section__heading--2 {
  font-size: 18px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section__heading--2 {
    font-size: 22px;
  }
}
@media screen and (min-width: 1280px) {
  .section__heading--2 {
    font-size: 28px;
  }
}
.section__heading--3 {
  font-size: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section__heading--3 {
    font-size: 22px;
  }
}
@media screen and (min-width: 1280px) {
  .section__heading--3 {
    font-size: 28px;
  }
}
.section__parallax {
  width: 100%;
  background-image: url("../images/bg_connection.avif");
  background-size: contain;
  background-position: top center;
  background-attachment: fixed;
  aspect-ratio: 320/237;
}
@media screen and (min-width: 1025px) {
  .section__parallax {
    background-size: cover;
  }
}
@media screen and (min-width: 1280px) {
  .section__parallax {
    max-height: 1440px;
  }
}

@supports (-webkit-touch-callout: none) {
  .section__parallax {
    background-attachment: scroll;
  }
}
.cta {
  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: 20px;
}
@media screen and (min-width: 1025px) {
  .cta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.cta__button {
  position: relative;
  z-index: 1;
  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;
  width: 236px;
  padding: 18px 0;
  line-height: 1;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 12px;
  overflow: hidden;
}
.cta__button--trial {
  background-image: linear-gradient(135deg, #ba4785, #ff7c66);
}
.cta__button--trial::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, #ff7c66, #ba4785);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  z-index: -1;
}
.cta__button--trial:hover:after {
  opacity: 1;
}
.cta__button--contact {
  background-image: linear-gradient(135deg, #1e2b6a, #1380c5);
}
.cta__button--contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, #1380c5, #1e2b6a);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  z-index: -1;
}
.cta__button--contact:hover:after {
  opacity: 1;
}
.cta__button:hover .cta__arrow-right {
  right: 10px;
}
.cta__arrow-right {
  position: absolute;
  right: 16px;
  -webkit-transition: right 0.6s ease;
  transition: right 0.6s ease;
}
@media screen and (min-width: 1280px) {
  .cta__arrow-right--header {
    display: none;
  }
}
.cta--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding: 0 30px;
  }
}
@media screen and (min-width: 1280px) {
  .inner {
    padding: 0 80px;
  }
}
.inner--md {
  max-width: 1260px;
}

.highlight--text {
  color: #fe7c66;
  -webkit-text-stroke: 0px transparent;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
}
.highlight--marker {
  display: inline-block;
  position: relative;
  z-index: 0;
}
.highlight--marker::before {
  content: "";
  position: absolute;
  bottom: -3px;
  z-index: -1;
  background-color: #ffc4ba;
  height: 14px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .highlight--marker-1::before {
    height: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .highlight--marker-1::before {
    bottom: -4px;
    height: 25px;
  }
}
.highlight--marker-2::before {
  height: 12px;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .highlight--marker-2::before {
    height: 17px;
  }
}
@media screen and (min-width: 1280px) {
  .highlight--marker-2::before {
    height: 20px;
  }
}
.highlight--marker-3::before {
  height: 8px;
  bottom: 1px;
}
@media screen and (min-width: 768px) {
  .highlight--marker-3::before {
    height: 10px;
    bottom: 3px;
  }
}
@media screen and (min-width: 1025px) {
  .highlight--marker-3::before {
    height: 12px;
    bottom: -3px;
  }
}

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

.link-text__content {
  position: relative;
  display: inline;
  color: #082b55;
  /* 下線（1本線） */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#082b55), to(#082b55));
  background-image: linear-gradient(#082b55, #082b55);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: left 100%;
  -webkit-transition: background-size 0.3s ease;
  transition: background-size 0.3s ease;
  padding-bottom: 1px;
  /* 既存の新規タブアイコン */
}
.link-text__content:hover, .link-text__content:focus-visible {
  background-position: right 100%;
  background-size: 0% 1px;
}
.link-text__content::after {
  content: "";
  position: absolute;
  bottom: 4px;
  right: -18px;
  width: 13px;
  height: 13px;
  background-image: url(../images/icon_new-tab.png);
  background-size: cover;
}

/* お好みで：低速回線/酔い配慮 */
@media (prefers-reduced-motion: reduce) {
  .link-text__content {
    -webkit-transition: none;
    transition: none;
  }
}
.divider {
  width: 100%;
  height: 2px;
  margin: 30px 0;
  background-color: #fff;
}

.sp-only {
  display: block;
}

@media screen and (min-width: 480px) {
  .sp-only {
    display: none;
  }
}
.tab-pc-only {
  display: none;
}

@media screen and (min-width: 480px) {
  .tab-pc-only {
    display: block;
  }
  .tab-pc-only--inline {
    display: inline;
  }
}
.pc-only {
  display: none;
}

@media screen and (min-width: 1025px) {
  .pc-only {
    display: block;
  }
}
.header {
  position: fixed;
  z-index: 100;
  width: 100%;
  padding: 0 15px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0 3px 4px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .header {
    padding: 0 30px;
  }
}
@media screen and (min-width: 1280px) {
  .header {
    padding: 0 80px;
  }
}
.header__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 17px 0;
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 1280px) {
  .header__logo {
    width: 16.4%;
    max-width: 210px;
  }
}
.header__logo-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 85px;
  height: 46px;
}
.header__drawer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1280px) {
  .header__drawer {
    display: none;
  }
}
.header__drawer-bar {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #082b55;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__drawer-bar:nth-of-type(2) {
  margin: 10px 0;
}
.header__drawer.active > .header__drawer-bar:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(-45deg);
          transform: translateY(12px) rotate(-45deg);
}
.header__drawer.active > .header__drawer-bar:nth-of-type(2) {
  opacity: 0;
}
.header__drawer.active > .header__drawer-bar:nth-of-type(3) {
  -webkit-transform: translateY(-12px) rotate(45deg);
          transform: translateY(-12px) rotate(45deg);
}
.header__nav {
  display: none;
  position: absolute;
  top: 80px;
  z-index: 0;
  padding: 20px;
  background-color: #fff;
}
.header__nav.active {
  left: -15px;
  right: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .header__nav.active {
    left: -30px;
    right: -30px;
  }
}
@media screen and (min-width: 1280px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 13.5px;
    position: relative;
    top: 0;
    padding: 0;
  }
}
.header__nav-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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media screen and (min-width: 1280px) {
  .header__nav-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}
.header__nav-item {
  position: relative;
  width: 100%;
  padding: 10px;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
}
@media screen and (min-width: 1280px) {
  .header__nav-item {
    width: auto;
    font-size: 15px;
    padding: 6.5px;
    white-space: nowrap;
  }
}
@media screen and (min-width: 1440px) {
  .header__nav-item {
    padding: 6.5px 13px;
  }
}
.header__nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: currentColor;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 1280px) {
  .header__nav-item:hover::after, .header__nav-item:focus-visible::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.header__cta {
  margin-top: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1280px) {
  .header__cta {
    gap: 10px;
    margin: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 1280px) {
  .header__button {
    width: 216px;
  }
}
.header__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
  margin-top: 40px;
  padding-top: 40px;
  background-image: linear-gradient(135deg, rgba(30, 43, 106, 0.1), rgba(19, 128, 197, 0.1));
}
@media screen and (min-width: 1280px) {
  .header__company {
    display: none;
  }
}

.main {
  padding-top: 80px;
}

.list__item {
  position: relative;
  list-style: none;
  margin-bottom: 15px;
  padding-left: 25px;
}
.list__item::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0px;
  width: 17px;
  height: 17px;
  background-image: url("../images/icon_check.png");
  background-size: cover;
}
.list__item:last-of-type {
  margin-bottom: 0;
}

.card {
  background-image: linear-gradient(135deg, #1e2b6a, #1380c5);
  border-radius: 25px;
  padding: 2px;
  -webkit-box-shadow: 0 1px 10px 1px rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 10px 1px rgba(0, 0, 0, 0.12);
}
.card:not(:last-of-type) {
  margin-bottom: 20px;
}
@media screen and (min-width: 1280px) {
  .card:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
.card__wrapper {
  position: relative;
  padding: 40px 16px;
  background-color: #fff;
  border-radius: 23px;
}
.card__label {
  position: absolute;
  top: 0;
  left: 0;
  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;
  width: 204px;
  height: 54px;
  background-color: #082b55;
  color: #fff;
  font-weight: bold;
  border-radius: 22px 0 25px 0;
}
@media screen and (min-width: 1025px) {
  .card__label {
    font-size: 18px;
  }
}
.card__label--short {
  width: 75px;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .card__label--short {
    font-size: 24px;
  }
}
.card__content {
  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) {
  .card__content--2col {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5.4%;
  }
}
@media screen and (min-width: 1025px) {
  .card__content--3col {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2%;
  }
}
@media screen and (min-width: 768px) {
  .card__content--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .card__2col-left {
    width: 50%;
  }
}
.card__2col-right {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .card__2col-right {
    width: 44.6%;
  }
}
.card__3col-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 44px 0 30px;
}
@media screen and (min-width: 1025px) {
  .card__3col-left {
    width: 22%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .card__3col-center {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1025px) {
  .card__3col-center {
    width: 50%;
    max-width: none;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 1025px) {
  .card__3col-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 24%;
  }
}
.card__3col-right-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: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}

/* 共通アニメーション（下からふわっと） */
.reveal {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

/* 表示されたとき */
.reveal.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* 動きを控えめにしたい設定のユーザー対応 */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-inview {
    -webkit-transition: none;
    transition: none;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fv {
  position: relative;
  padding: 40px 0;
}
@media screen and (min-width: 1025px) {
  .fv {
    padding: 90px 0;
  }
}
.fv::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 66.7%;
  height: 100%;
  background-image: linear-gradient(135deg, rgba(30, 43, 106, 0.1), rgba(19, 128, 197, 0.1));
  border-bottom-left-radius: 40px;
}
@media screen and (min-width: 1025px) {
  .fv::before {
    width: 47%;
  }
}
@media screen and (min-width: 1025px) {
  .fv__inner {
    padding-right: 0;
  }
}
.fv__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1025px) {
  .fv__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5%;
  }
}
.fv__title {
  color: #082b55;
  line-height: 1.178;
  font-size: 28px;
}
@media screen and (min-width: 768px) {
  .fv__title {
    font-size: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .fv__title {
    font-size: 48px;
  }
}
.fv__text {
  margin-top: 40px;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: -0.36px;
}
@media screen and (min-width: 768px) {
  .fv__text {
    font-size: 21px;
  }
}
@media screen and (min-width: 1280px) {
  .fv__text {
    font-size: 24px;
  }
}
.fv__cta {
  margin-top: 40px;
}
.fv__movie {
  width: 100%;
}
.fv__movie-embed {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.summary {
  padding: 60px 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .summary__inner {
    padding: 0;
  }
}
.summary__item {
  position: relative;
  padding: 40px 0;
  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) {
  .summary__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6%;
    padding: 40px 0 70px;
  }
}
@media screen and (min-width: 1025px) {
  .summary__item {
    padding: 20px 0 30px;
  }
}
.summary__item--next-arrow {
  position: relative;
}
.summary__item--next-arrow::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  width: 52.5px;
  height: 52px;
  background-image: url("../images/img_arrow-to-bottom.png");
  background-size: cover;
}
@media screen and (min-width: 480px) {
  .summary__item--next-arrow::after {
    width: 68.25px;
    height: 67.5px;
  }
}
@media screen and (min-width: 768px) {
  .summary__item--next-arrow::after {
    width: 78.75px;
    height: 78px;
    bottom: -20px;
  }
}
@media screen and (min-width: 1025px) {
  .summary__item--next-arrow::after {
    width: 105px;
    height: 104px;
    bottom: -60px;
  }
}
@media screen and (min-width: 1280px) {
  .summary__item--next-arrow::after {
    width: 125px;
    height: 124px;
    bottom: -80px;
  }
}
@media screen and (min-width: 768px) {
  .summary__item--solution {
    padding-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .summary__item-content {
    width: 54%;
    padding-right: 1em;
  }
}
.summary__item-heading {
  position: relative;
}
.summary__item-heading::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -20px;
  z-index: -1;
  font-size: 64px;
  font-weight: bold;
  background-image: linear-gradient(135deg, rgba(30, 43, 106, 0.1), rgba(19, 128, 197, 0.1));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  line-height: 1;
}
@media screen and (min-width: 480px) {
  .summary__item-heading::before {
    top: -50px;
    font-size: 80px;
  }
}
@media screen and (min-width: 768px) {
  .summary__item-heading::before {
    top: -55px;
    right: -22px;
    font-size: 95px;
  }
}
@media screen and (min-width: 1025px) {
  .summary__item-heading::before {
    top: -80px;
    font-size: 120px;
  }
}
@media screen and (min-width: 1280px) {
  .summary__item-heading::before {
    top: -90px;
    right: -28px;
    font-size: 156px;
  }
}
@media screen and (min-width: 1440px) {
  .summary__item-heading::before {
    top: -100px;
    font-size: 170px;
  }
}
.summary__item-heading--problem::before {
  content: "PROBLEM";
}
.summary__item-heading--solution {
  margin-top: 65px;
}
.summary__item-heading--solution::before {
  content: "SOLUTION";
  letter-spacing: -1.92px;
}
@media screen and (min-width: 768px) {
  .summary__item-heading--solution::before {
    letter-spacing: -6px;
  }
}
@media screen and (min-width: 1440px) {
  .summary__item-heading--solution::before {
    letter-spacing: -6.8px;
  }
}
.summary__item-list {
  margin-top: 40px;
}
.summary__item-text {
  margin-top: 40px;
  font-weight: bold;
  color: #082b55;
}
.summary__item-image {
  max-width: 584px;
  position: relative;
  left: -15px;
  width: 96%;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .summary__item-image {
    width: 40%;
    left: 0;
    margin-top: 0;
  }
}
.summary__arrow {
  width: 52px;
  margin: 0 auto;
}

.about {
  padding: 80px 0;
  background-image: linear-gradient(135deg, rgba(186, 71, 133, 0.1) 4.59%, rgba(255, 124, 102, 0.1) 95.41%);
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 1280px) {
  .about {
    padding: 127px 0 95px;
  }
}
.about__box {
  position: absolute;
  left: 0;
  width: calc(100% - 15px);
  height: calc(100% - 270px);
  background-color: #fff;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}
@media screen and (min-width: 768px) {
  .about__box {
    width: 80%;
  }
}
@media screen and (min-width: 1280px) {
  .about__box {
    height: calc(100% - 340px);
  }
}
.about__inner {
  position: relative;
  padding: 0 30px;
}
@media screen and (min-width: 768px) {
  .about__inner {
    max-width: 1160px;
  }
}
.about__heading {
  position: relative;
  top: -17px;
}
@media screen and (min-width: 768px) {
  .about__heading {
    top: -23px;
  }
}
@media screen and (min-width: 1025px) {
  .about__heading {
    top: -30px;
  }
}
.about__explanation {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .about__explanation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2%;
  }
}
@media screen and (min-width: 1280px) {
  .about__explanation {
    width: 107%;
  }
}
@media screen and (min-width: 1440px) {
  .about__explanation {
    width: 113%;
    gap: 0;
  }
}
@media screen and (min-width: 768px) {
  .about__content {
    width: 60%;
  }
}
@media screen and (min-width: 1280px) {
  .about__content {
    width: 58%;
  }
}
@media screen and (min-width: 1440px) {
  .about__content {
    width: 54%;
  }
}
.about__copy {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__copy {
    text-align: left;
  }
}
.about__copy--left {
  text-align: left;
}
.about__brief {
  margin-top: 40px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .about__brief {
    font-size: 18px;
  }
}
.about__description {
  margin-top: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1280px) {
  .about__description {
    margin-right: 80px;
  }
}
.about__website {
  position: relative;
  line-height: 1;
}
.about__website-logo {
  display: inline-block;
  height: 24px;
}
.about__website img {
  height: 18px;
  vertical-align: bottom;
}
.about__website-text {
  position: relative;
  color: #082b55;
}
.about__website::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #082b55;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
  -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;
  will-change: transform;
}
.about__website:hover::before, .about__website:focus-visible::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
}
.about__website::after {
  content: "";
  position: absolute;
  top: 6px;
  right: -16px;
  width: 13px;
  height: 13px;
  background-image: url(../images/icon_new-tab.png);
  background-size: cover;
}
.about__image {
  position: relative;
  left: -15px;
  width: 129.5%;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .about__image {
    width: 40%;
    left: auto;
    margin-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .about__image {
    width: 42%;
  }
}
@media screen and (min-width: 1440px) {
  .about__image {
    width: 46%;
  }
}
.about__feature {
  margin-top: 60px;
}
.about__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .about__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2%;
  }
}
.about__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 30px 20px;
  -webkit-box-shadow: 0 1px 10px 1px rgba(0, 0, 0, 0.06);
          box-shadow: 0 1px 10px 1px rgba(0, 0, 0, 0.06);
  border-radius: 25px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .about__card {
    width: 32%;
    padding: 30px;
  }
}
.about__card-heading {
  font-weight: bold;
  text-align: center;
  color: #082b55;
}
.about__card-image {
  width: 80px;
  margin: 0 auto;
}

.strength {
  padding: 50px 0 10px;
}
@media screen and (min-width: 1280px) {
  .strength {
    padding: 100px 0 10px;
  }
}
@media screen and (min-width: 1280px) {
  .strength {
    max-height: 910px;
  }
}
.strength__wrapper {
  position: relative;
  max-width: 1280px;
  padding: 90px 20px 60px;
  background-image: linear-gradient(135deg, #e8eaf0, #e7f2f9);
  border-radius: 40px;
  -webkit-box-shadow: 0 1px 10px 1px rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 10px 1px rgba(0, 0, 0, 0.12);
}
.strength__wrapper::before {
  display: none;
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 197px;
  height: 433px;
  background-image: url("../images/img_strength-left.png");
  background-size: cover;
}
@media screen and (min-width: 1025px) {
  .strength__wrapper::before {
    display: block;
  }
}
.strength__wrapper::after {
  display: none;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 237px;
  height: 308px;
  background-image: url("../images/img_strength-right.png");
  background-size: cover;
}
@media screen and (min-width: 1025px) {
  .strength__wrapper::after {
    display: block;
  }
}
.strength__wrapper-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}
.strength__heading {
  position: absolute;
  top: -106.5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  min-width: 264px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .strength__heading {
    top: -112px;
  }
}
@media screen and (min-width: 1280px) {
  .strength__heading {
    top: -120px;
  }
}
.strength__text {
  margin-top: 40px;
  margin-bottom: 40px;
}
.strength__list {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .strength__list {
    margin-left: 20px;
  }
}
.strength__link-text {
  margin-left: 25px;
}
@media screen and (min-width: 768px) {
  .strength__link-text {
    margin-left: 45px;
  }
}
.strength__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 11.44px;
  margin-top: 20px;
}
.strength__image--1 {
  display: none;
}
@media screen and (min-width: 480px) {
  .strength__image--1 {
    display: block;
  }
}
@media screen and (min-width: 480px) {
  .strength__image {
    max-width: 160px;
  }
}

.service {
  position: relative;
  padding: 70px 0 60px;
}
@media screen and (min-width: 1280px) {
  .service {
    padding: 110px 0 120px;
  }
}
.service__heading {
  text-align: center;
}
.service__subheading {
  margin: 40px 0;
}
@media screen and (min-width: 1025px) {
  .service__wrapper {
    padding: 40px 60px;
  }
}
.service__text {
  font-weight: bold;
  margin-bottom: 20px;
}
.service__list {
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .service__list {
    margin-bottom: 0;
  }
}
.service__image--qrcode {
  display: none;
}
@media screen and (min-width: 1025px) {
  .service__image--qrcode {
    display: block;
    width: 135px;
    height: 135px;
    border-radius: 12px;
  }
}
@media screen and (min-width: 768px) {
  .service__image {
    text-align: center;
  }
}

.flow {
  position: relative;
  margin-bottom: 60px;
}
@media screen and (min-width: 1280px) {
  .flow {
    margin-bottom: 90px;
  }
}
.flow__inner {
  position: relative;
  padding-top: 70px;
  padding: 70px 50px 60px;
}
@media screen and (min-width: 1280px) {
  .flow__inner {
    padding: 100px 60px 40px;
  }
}
.flow__heading {
  position: relative;
  top: -17px;
  left: -15px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .flow__heading {
    top: -22px;
  }
}
@media screen and (min-width: 1280px) {
  .flow__heading {
    top: 0;
    left: 80px;
  }
}
.flow__subheading {
  margin-top: 20px;
}
@media screen and (min-width: 1280px) {
  .flow__subheading {
    margin-top: 60px;
  }
}
.flow__box1 {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: calc(100% - 30px);
  height: calc(100% - 112px);
  background-image: linear-gradient(135deg, rgba(186, 71, 133, 0.1) 4.59%, rgba(255, 124, 102, 0.1) 95.41%);
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}
@media screen and (min-width: 1280px) {
  .flow__box1 {
    width: 94%;
  }
}
.flow__box2 {
  position: absolute;
  z-index: -1;
  top: 70px;
  right: 0;
  width: calc(100% - 15px);
  height: calc(100% - 70px);
  background-color: #fff;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  -webkit-box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1280px) {
  .flow__box2 {
    top: 127px;
    width: 94%;
    height: calc(100% - 127px);
  }
}
.flow__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .flow__step {
    max-width: 425px;
    margin: 40px auto 0;
  }
}
@media screen and (min-width: 1280px) {
  .flow__step {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: none;
    padding: 0 90px;
    gap: 0;
  }
}
.flow__step-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (min-width: 1280px) {
  .flow__step-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 20%;
    padding: 30px;
  }
}
.flow__step-icon {
  position: relative;
  width: 80px;
}
.flow__step-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  width: 2px;
  height: 225px;
  background-image: repeating-linear-gradient(180deg, #ffcbc2 0 4px, transparent 4px 8px);
}
@media screen and (min-width: 1280px) {
  .flow__step-icon::after {
    top: 50%;
    left: 100%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 150px;
    height: 2px;
    background-image: repeating-linear-gradient(90deg, #ffcbc2 0 4px, transparent 4px 8px);
  }
}
.flow__step-icon--last::after {
  display: none;
}
.flow__step-icon-number {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.flow__step-icon-image {
  background-color: #fff;
}
.flow__step-content {
  width: calc(100% - 20px - 80px);
}
@media screen and (min-width: 1280px) {
  .flow__step-content {
    width: 100%;
  }
}
.flow__step-heading {
  color: #082b55;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (min-width: 1280px) {
  .flow__step-heading {
    text-align: center;
  }
}
.flow__step-text {
  margin-top: 10px;
  font-size: 16px;
}
.flow__step-period {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-top: 10px;
  font-size: 15px;
}
.flow__step-period-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;
  padding: 1px 5px;
  font-size: 14px;
  color: #082b55;
  line-height: 1;
  border: 1px solid #082b55;
  border-radius: 5px;
  white-space: nowrap;
}

.solution {
  position: relative;
  padding: 80px 0 40px;
}
@media screen and (min-width: 1280px) {
  .solution {
    max-height: 1360px;
    padding: 120px 0 60px;
  }
}
.solution__inner {
  max-width: 1260px;
}
.solution__wrapper {
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .solution__wrapper {
    text-align: center;
    padding: 30px 40px;
  }
}
@media screen and (min-width: 1025px) {
  .solution__wrapper {
    padding: 60px;
  }
}
@media screen and (min-width: 1025px) {
  .solution__wrapper--2 {
    padding: 35px 60px;
  }
}
@media screen and (min-width: 1025px) {
  .solution__wrapper--3 {
    padding: 40px 60px;
  }
}
.solution__content {
  text-align: left;
}
.solution__content-heading {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .solution__content-heading {
    margin-top: 44px;
    text-align: left;
  }
}
@media screen and (min-width: 1025px) {
  .solution__content-heading {
    margin-top: 0;
  }
}
.solution__content-subheading {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .solution__content-subheading {
    text-align: left;
  }
}
.solution__content-text {
  margin-top: 20px;
}
.solution__heading {
  text-align: center;
}
.solution__cards {
  margin-top: 40px;
}
@media screen and (min-width: 1280px) {
  .solution__cards {
    margin-top: 80px;
  }
}

.contact {
  padding: 60px 0 40px;
  background-image: linear-gradient(135deg, rgba(30, 43, 106, 0.1), rgba(19, 128, 197, 0.1));
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .contact {
    padding: 90px 0 60px;
  }
}
.contact__inner {
  max-width: 1280px;
}
.contact__wrapper {
  padding: 50px 15px 40px 15px;
  background-color: #fff;
  border-radius: 25px;
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 1280px) {
  .contact__wrapper {
    padding: 80px 60px 40px 50px;
  }
}
.contact__content {
  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: 1025px) {
  .contact__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 3%;
  }
}
@media screen and (min-width: 1025px) {
  .contact__content-box--text {
    width: 50%;
  }
}
@media screen and (min-width: 1025px) {
  .contact__content-box--image {
    width: 47%;
  }
}
.contact__text {
  margin-top: 40px;
}
.contact__copy {
  margin-top: 40px;
  font-weight: bold;
}
.contact__copy--sp {
  display: block;
}
@media screen and (min-width: 1025px) {
  .contact__copy--sp {
    display: none;
  }
}
.contact__copy--pc {
  display: none;
}
@media screen and (min-width: 1025px) {
  .contact__copy--pc {
    display: block;
  }
}
.contact__copy-heading::before {
  height: 8px;
}
.contact__copy-apply {
  margin-top: 5px;
  color: #082b55;
}
.contact__cta {
  margin-top: 15px;
}
@media screen and (min-width: 1025px) {
  .contact__cta {
    margin-top: 25px;
  }
}
.contact__image {
  margin-top: 40px;
}
.contact__footer {
  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: 40px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .contact__footer {
    -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;
    gap: 8%;
  }
}
@media screen and (min-width: 1025px) {
  .contact__footer {
    gap: 15%;
  }
}
@media screen and (min-width: 1280px) {
  .contact__footer {
    margin-top: 60px;
  }
}
.contact__ps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
}
.contact__ps-logo {
  width: 85px;
  height: 46px;
}
.contact__ps-info {
  text-align: left;
}
.contact__ps-link {
  font-size: 14px;
}
.contact__ps-email {
  margin-top: 7px;
  font-size: 12px;
}
.contact__privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
.contact__privacy-logo {
  width: 50px;
  height: 50px;
}
.contact__privacy-text {
  width: calc(100% - 50px - 7px);
  font-size: 13.5px;
}

.footer {
  background: #082b55;
}
.footer__copyright {
  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: 22px 0;
}
.footer__copyright-text {
  color: #fff;
  text-align: center;
  font-size: 12px;
}

.slide-in-left {
  opacity: 0;
}
.slide-in-left.active {
  -webkit-animation: slideInLeft 0.6s ease-out forwards;
          animation: slideInLeft 0.6s ease-out forwards;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.reveal {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.reveal.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}