@charset "UTF-8";
/*================================================================
Chrome/Firefox/Edgeなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

img {
vertical-align: bottom;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
  list-style-type: none;
} 
body {
  color: #000;
  background: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}

button {
  cursor: pointer;
  background: transparent;
  padding: 0;
  border: none;
}

a,
span {
  display: inline-block;
  font-weight: inherit;
}

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

img {
  display: inline-block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* Autofill対策：Chrome */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.1) inset !important;
  box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.1) inset !important;
  -webkit-text-fill-color: var(--white) !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* Safari・Firefoxのフォーカス時の背景対応 */
input:focus,
textarea:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  outline: none;
}

.container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
}
@media screen and (max-width: 767px) {
  .container {
    background: none;
    padding-left: 0;
  }
}
.container.no-scroll {
  overflow: hidden;
}

.wrapper {
  width: min(750 / 750 * 100vw, 47.9375rem);
  margin-left: calc(54vw - 23.4375rem / 2);
}
@media screen and (max-width: 767px) {
  .wrapper {
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .wrapper {
    width: 23.4375rem;
  }
}

.inner {
  width: min(750 / 750 * 100vw, 47.9375rem);
  padding-inline: min(50 / 750 * 100vw, 3.1958333333rem);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    width: 23.4375rem;
    padding-inline: 1.5625rem;
  }
}

.--accent {
  display: inline;
  color: #f24553;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta__txt {
  font-size: min(25 / 750 * 100vw, 1.5979166667rem);
  letter-spacing: 0.1em;
  text-align: center;
  margin-left: min(11 / 750 * 100vw, 0.7030833333rem);
  position: relative;
}
@media screen and (min-width: 768px) {
  .cta__txt {
    font-size: 0.78125rem;
    margin-left: 0.34375rem;
  }
}
.side-cta .cta__txt {
  font-size: clamp(0.46875rem, 0.9765625vw, 1.5625rem);
  margin-left: 0;
}
.cta__txt::before, .cta__txt::after {
  content: "";
  background: #000;
  width: min(2 / 750 * 100vw, 0.1278333333rem);
  height: min(37 / 750 * 100vw, 2.3649166667rem);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .cta__txt::before, .cta__txt::after {
    width: 0.0625rem;
    height: 1.15625rem;
  }
}
.side-cta .cta__txt::before, .side-cta .cta__txt::after {
  background: #fff;
}
.cta__txt::before {
  right: calc(100% + min(16 / 750 * 100vw, 1.0226666667rem));
  rotate: -28deg;
}
.cta__txt::after {
  left: calc(100% + min(16 / 750 * 100vw, 1.0226666667rem));
  rotate: 28deg;
}

.cta__link {
  margin-top: min(17 / 750 * 100vw, 1.0865833333rem);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta__link {
    margin-top: 1.0625rem;
  }
}
.cta__link img {
  width: min(662 / 750 * 100vw, 42.3128333333rem);
}
@media screen and (min-width: 768px) {
  .cta__link img {
    width: 20.6875rem;
  }
}
.differentiation .cta__link img {
  width: min(700 / 750 * 100vw, 44.7416666667rem);
}
@media screen and (min-width: 768px) {
  .differentiation .cta__link img {
    width: 21.875rem;
  }
}
.side-cta .cta__link img {
  width: clamp(11.25rem, 23.4375vw, 40.625rem);
}

.cta__link {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .cta__link:hover {
    opacity: 0.7;
  }
  .side-cta .cta__link:hover {
    opacity: 1;
  }
}

.cta__link {
  transition: opacity 0.3s ease;
  animation: 1.5s 0.3s ease forwards infinite animatedScale;
}
@media (any-hover: hover) {
  .cta__link:hover {
    opacity: 0.7;
  }
}
@keyframes animatedScale {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.05;
  }
  100% {
    scale: 1;
  }
}

.header {
  width: min(750 / 750 * 100vw, 47.9375rem);
  position: fixed;
  top: 0;
  left: 50%;
  translate: -50%;
  z-index: 10;
}

.side-cta {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url("./img/bg_side-cta.webp") no-repeat center center/cover;
  padding-top: min(18.515625vw, 14.8125rem);
  padding-bottom: min(3.125vw, 2.5rem);
  color: #fff;
  width: calc(54vw - 23.4375rem / 2);
  height: 100vh;
  height: 100svh;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  left: 0;
  scrollbar-width: none;
}
.side-cta::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .side-cta {
    display: none;
  }
}

.side-cta__logo {
  margin-bottom: min(11.71875vw, 9.375rem);
  text-align: center;
}
.side-cta__logo img {
  width: min(25vw, 20rem);
}

.side-menu {
  color: #fff;
  background: #000;
  width: calc(100vw - 23.4375rem - (54vw - 23.4375rem / 2));
  height: 100vh;
  height: 100svh;
  padding-inline: min(2.96875vw, 2.375rem);
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  scrollbar-width: none;
}
.side-menu::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .side-menu {
    display: none;
  }
}

.side-menu__nav {
  height: fit-content;
  padding-top: min(12.34375vw, 9.875rem);
  padding-right: min(4.765625vw, 3.8125rem);
  padding-bottom: min(60 / 750 * 100vw, 3.835rem);
}
@media screen and (min-width: 1025px) and (max-width: 1279px) {
  .side-menu__nav {
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .side-menu__nav {
    padding-right: 0;
  }
}

.side-menu__item {
  border-bottom: min(2 / 750 * 100vw, 0.1278333333rem) solid #ddd;
}

.side-menu__link {
  font-size: min(1.5625vw, 1.25rem);
  font-weight: 700;
  width: 100%;
  padding-block: min(1.484375vw, 1.1875rem);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .side-menu__link {
    font-size: clamp(0.6875rem, 1.3671875vw, 0.875rem);
  }
}
.side-menu__link.active {
  color: #f24553;
}

.side-menu__copyright {
  font-size: min(1.09375vw, 0.875rem);
  font-weight: 700;
  line-height: 1.5;
  margin-top: min(15.9375vw, 12.5rem);
  padding-bottom: min(3.125vw, 2.5rem);
  text-align: right;
}

.drawer-icon {
  cursor: pointer;
  background: transparent;
  width: min(48 / 750 * 100vw, 3.068rem);
  height: min(42 / 750 * 100vw, 2.6845rem);
  border: none;
  position: absolute;
  top: min(20 / 750 * 100vw, 1.2783333333rem);
  right: max(20 / 750 * 100vw, 1.2783333333rem);
  z-index: 11;
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bar {
  content: "";
  display: block;
  background: #313131;
  width: inherit;
  height: min(3 / 750 * 100vw, 0.19175rem);
  transition: top 0.3s linear, bottom 0.3s linear, transform 0.3s linear;
  position: absolute;
}
.drawer-icon__bar.--bar1 {
  top: 0;
}
.drawer-icon__bar.--bar2 {
  top: 50%;
  translate: 0 -50%;
}
.drawer-icon__bar.--bar3 {
  bottom: 0;
}
.drawer-icon.is-show .drawer-icon__bar {
  background: #fff;
}
.drawer-icon.is-show .drawer-icon__bar.--bar1 {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.drawer-icon.is-show .drawer-icon__bar.--bar2 {
  display: none;
}
.drawer-icon.is-show .drawer-icon__bar.--bar3 {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.drawer-content {
  color: #fff;
  background: #000;
  width: min(750 / 750 * 100vw, 47.9375rem);
  height: 100vh;
  height: 100svh;
  padding-top: min(100 / 750 * 100vw, 6.3916666667rem);
  overflow-y: scroll;
  position: fixed;
  top: -120%;
  left: 50%;
  translate: -50%;
  z-index: 9;
  transition: top 0.3s linear;
}
.drawer-content.is-show {
  top: 0;
}

.drawer-content__nav {
  height: fit-content;
  margin-inline: auto;
  padding-block: min(40 / 750 * 100vw, 2.5566666667rem);
}

.drawer-content__item {
  border-bottom: min(2 / 750 * 100vw, 0.1278333333rem) solid #ddd;
}

.drawer-content__link {
  font-size: min(28 / 750 * 100vw, 1.7896666667rem);
  font-weight: 700;
  width: 100%;
  padding-block: min(28 / 750 * 100vw, 1.7896666667rem);
}

.drawer-content__copyright {
  font-size: min(14 / 750 * 100vw, 0.8948333333rem);
  font-weight: 700;
  line-height: 1.5;
  margin-top: min(100 / 750 * 100vw, 6.3916666667rem);
  margin-bottom: min(15 / 750 * 100vw, 0.95875rem);
  margin-right: min(30 / 750 * 100vw, 1.9175rem);
  text-align: right;
}

.fv__container {
  position: relative;
}

.fv__inner {
  padding-top: min(83 / 750 * 100vw, 5.3050833333rem);
  padding-bottom: min(80 / 750 * 100vw, 5.1133333333rem);
}
@media screen and (min-width: 768px) {
  .fv__inner {
    padding-top: 2.59375rem;
    padding-bottom: 2.5rem;
  }
}

.fv__txt {
  width: min(664 / 750 * 100vw, 42.4406666667rem);
  position: absolute;
  top: min(110 / 750 * 100vw, 7.0308333333rem);
  left: 50%;
  translate: -50%;
}
@media screen and (min-width: 768px) {
  .fv__txt {
    width: 20.75rem;
    top: 3.4375rem;
  }
}

.fv__title {
  width: min(600 / 750 * 100vw, 38.35rem);
  margin-left: min(31 / 750 * 100vw, 1.9814166667rem);
}
@media screen and (min-width: 768px) {
  .fv__title {
    width: 18.75rem;
    margin-left: 0.9375rem;
  }
}

.solution {
  padding-bottom: min(80 / 750 * 100vw, 5.1133333333rem);
  position: relative;
}
@media screen and (min-width: 768px) {
  .solution {
    padding-bottom: 2.5rem;
  }
}

.solution__cta {
  position: absolute;
  bottom: min(75 / 750 * 100vw, 4.79375rem);
  left: 50%;
  translate: -50%;
}
@media screen and (min-width: 768px) {
  .solution__cta {
    bottom: 2.34375rem;
  }
}

.about__inner {
  color: #fff;
  background: #000;
  padding-top: min(80 / 750 * 100vw, 5.1133333333rem);
  padding-bottom: min(192 / 750 * 100vw, 12.272rem);
}
@media screen and (min-width: 768px) {
  .about__inner {
    padding-top: 2.5rem;
    padding-bottom: 6rem;
  }
}

.about__heading {
  font-size: min(30 / 750 * 100vw, 1.9175rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__heading {
    font-size: 0.9375rem;
  }
}

.about__desc {
  font-size: min(25 / 750 * 100vw, 1.5979166667rem);
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-top: min(60 / 750 * 100vw, 3.835rem);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__desc {
    font-size: 0.78125rem;
    margin-top: 1.875rem;
  }
}
.about__desc--strong {
  background: #f24553;
  font-size: min(35 / 750 * 100vw, 2.2370833333rem);
  line-height: 1.1428571429;
}
@media screen and (min-width: 768px) {
  .about__desc--strong {
    font-size: 1.09375rem;
  }
}

.about__swiper-container,
.about__swiper,
.about__swiper-wrapper,
.about__swiper-slide {
  position: relative;
}

.about__swiper-container {
  width: 100%;
  margin-top: min(74 / 750 * 100vw, 4.7298333333rem);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .about__swiper-container {
    margin-top: 2.3125rem;
  }
}

.about__swiper-slide {
  color: #313131;
  background: #fff;
  width: min(650 / 750 * 100vw, 41.5458333333rem);
  height: min(650 / 750 * 100vw, 41.5458333333rem);
  padding-top: min(40 / 750 * 100vw, 2.5566666667rem);
  padding-inline: min(60 / 750 * 100vw, 3.835rem);
  padding-bottom: min(60 / 750 * 100vw, 3.835rem);
  border-radius: min(20 / 750 * 100vw, 1.2783333333rem);
}
@media screen and (min-width: 768px) {
  .about__swiper-slide {
    width: 20.3125rem;
    height: 20.3125rem;
    padding-top: 1.25rem;
    padding-inline: 1.875rem;
    padding-bottom: 1.875rem;
    border-radius: 0.625rem;
  }
}

.about__swiper-slide-img {
  background: #cff0ff;
  height: min(300 / 750 * 100vw, 19.175rem);
  border-radius: min(20 / 750 * 100vw, 1.2783333333rem);
}
@media screen and (min-width: 768px) {
  .about__swiper-slide-img {
    height: 9.375rem;
    border-radius: 0.625rem;
  }
}
.--slide4 .about__swiper-slide-img {
  text-align: center;
}
.--slide4 .about__swiper-slide-img img {
  width: min(255 / 750 * 100vw, 16.29875rem);
  margin-top: min(45 / 750 * 100vw, 2.87625rem);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .--slide4 .about__swiper-slide-img img {
    width: 7.96875rem;
    margin-top: 1.40625rem;
  }
}

.about__swiper-slide-title {
  font-size: min(35 / 750 * 100vw, 2.2370833333rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: min(45 / 750 * 100vw, 2.87625rem);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__swiper-slide-title {
    font-size: 1.09375rem;
    margin-top: 1.40625rem;
  }
}

.about__swiper-slide-list {
  margin-top: min(35 / 750 * 100vw, 2.2370833333rem);
  padding-left: min(80 / 750 * 100vw, 5.1133333333rem);
}
@media screen and (min-width: 768px) {
  .about__swiper-slide-list {
    margin-top: 1.09375rem;
    padding-left: 2.5rem;
  }
}

.about__swiper-slide-item {
  font-size: min(25 / 750 * 100vw, 1.5979166667rem);
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .about__swiper-slide-item {
    font-size: 0.78125rem;
  }
}
.about__swiper-slide-item span:nth-of-type(2) {
  margin-left: auto;
}

.about__swiper-button-prev,
.about__swiper-button-next,
.about__swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

.about__swiper-button-prev::after,
.about__swiper-button-next::after {
  content: "";
}

.about__swiper-button-prev,
.about__swiper-button-next {
  background: #7ecef4;
  width: min(90 / 750 * 100vw, 5.7525rem);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  bottom: 65%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .about__swiper-button-prev,
  .about__swiper-button-next {
    width: 2.8125rem;
  }
}
.about__swiper-button-prev::before,
.about__swiper-button-next::before {
  content: "";
  width: min(22 / 750 * 100vw, 1.4061666667rem);
  height: auto;
  aspect-ratio: 1;
  border-top: solid #fff;
  border-left: solid #fff;
  border-width: min(6 / 750 * 100vw, 0.3835rem);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .about__swiper-button-prev::before,
  .about__swiper-button-next::before {
    width: 0.6875rem;
    border-width: 0.1875rem;
  }
}

.about__swiper-button-prev {
  left: 0;
  translate: -50% 50%;
}
.about__swiper-button-prev::before {
  left: 44%;
  rotate: -45deg;
}

.about__swiper-button-next {
  right: 0;
  translate: 50% 50%;
}
.about__swiper-button-next::before {
  right: 44%;
  rotate: 135deg;
}

.about__swiper-pagination {
  z-index: 1;
}

.about__swiper-pagination > .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: max(-110 / 750 * 100vw, -7.0308333333rem);
}
@media screen and (min-width: 768px) {
  .about__swiper-pagination > .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -1.8125rem;
  }
}

.about__swiper-pagination > .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  opacity: 1;
  background: #fff;
  width: min(30 / 750 * 100vw, 1.9175rem);
  height: auto;
  aspect-ratio: 1;
  margin: 0 min(12.5 / 750 * 100vw, 0.7989583333rem);
}
@media screen and (min-width: 768px) {
  .about__swiper-pagination > .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 0.9375rem;
    margin: 0 0.390625rem;
  }
}

.about__swiper-pagination > .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: #f24553;
}

.differentiation__inner.--upper {
  color: #fff;
  background: url("./img/bg_differentiation.webp") no-repeat top left/cover;
  padding-top: min(100 / 750 * 100vw, 6.3916666667rem);
  padding-bottom: min(145 / 750 * 100vw, 9.2679166667rem);
  padding-inline: 0;
}
@media screen and (min-width: 768px) {
  .differentiation__inner.--upper {
    padding-top: 3.125rem;
    padding-bottom: 4.53125rem;
  }
}
.differentiation__inner.--lower {
  padding-inline: min(25 / 750 * 100vw, 1.5979166667rem);
  padding-top: min(75 / 750 * 100vw, 4.79375rem);
  padding-bottom: min(75 / 750 * 100vw, 4.79375rem);
}
@media screen and (min-width: 768px) {
  .differentiation__inner.--lower {
    padding-inline: 0.78125rem;
    padding-top: 2.34375rem;
    padding-bottom: 2.34375rem;
  }
}

.differentiation__heading {
  font-size: min(30 / 750 * 100vw, 1.9175rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .differentiation__heading {
    font-size: 0.9375rem;
  }
}
.differentiation__heading::before, .differentiation__heading::after {
  content: "";
  background: #fff;
  width: min(110 / 750 * 100vw, 7.0308333333rem);
  height: min(4 / 750 * 100vw, 0.2556666667rem);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .differentiation__heading::before, .differentiation__heading::after {
    width: 3.4375rem;
    height: 0.125rem;
  }
}
.differentiation__heading::before {
  right: calc(100% + min(104 / 750 * 100vw, 6.6473333333rem));
}
@media screen and (min-width: 768px) {
  .differentiation__heading::before {
    right: calc(100% + 3.25rem);
  }
}
.differentiation__heading::after {
  left: calc(100% + min(104 / 750 * 100vw, 6.6473333333rem));
}
@media screen and (min-width: 768px) {
  .differentiation__heading::after {
    left: calc(100% + 3.25rem);
  }
}

.differentiation__lists {
  margin-top: min(140 / 750 * 100vw, 8.9483333333rem);
  display: flex;
  flex-direction: column;
  gap: min(90 / 750 * 100vw, 5.7525rem);
}
@media screen and (min-width: 768px) {
  .differentiation__lists {
    margin-top: 4.375rem;
    gap: 2.8125rem;
  }
}

.differentiation__item {
  width: min(664 / 750 * 100vw, 42.4406666667rem);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .differentiation__item {
    width: 20.75rem;
  }
}

.differentiation__cta {
  color: #313131;
  background: #fff;
}

.case {
  color: #313131;
  background: url("./img/bg_case.png") no-repeat center center/cover;
  padding-top: min(75 / 750 * 100vw, 4.79375rem);
  padding-bottom: min(75 / 750 * 100vw, 4.79375rem);
}
@media screen and (min-width: 768px) {
  .case {
    padding-top: 2.34375rem;
    padding-bottom: 2.34375rem;
  }
}

.case__heading {
  font-size: min(30 / 750 * 100vw, 1.9175rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .case__heading {
    font-size: 0.9375rem;
  }
}
.case__heading::before, .case__heading::after {
  content: "";
  background: #313131;
  width: min(110 / 750 * 100vw, 7.0308333333rem);
  height: min(4 / 750 * 100vw, 0.2556666667rem);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .case__heading::before, .case__heading::after {
    width: 3.4375rem;
    height: 0.125rem;
  }
}
.case__heading::before {
  left: 0;
}
.case__heading::after {
  right: 0;
}

.case__swiper-container,
.case__swiper,
.case__swiper-wrapper,
.case__swiper-slide {
  position: relative;
}

.case__swiper-container {
  margin-top: min(75 / 750 * 100vw, 4.79375rem);
}
@media screen and (min-width: 768px) {
  .case__swiper-container {
    margin-top: 2.34375rem;
  }
}

.case__swiper-slide {
  color: #fff;
  background: #7ecef4;
  height: min(902 / 750 * 100vw, 57.6528333333rem);
  padding-top: min(80 / 750 * 100vw, 5.1133333333rem);
  padding-inline: min(60 / 750 * 100vw, 3.835rem);
  padding-bottom: min(100 / 750 * 100vw, 6.3916666667rem);
  border-radius: min(20 / 750 * 100vw, 1.2783333333rem);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .case__swiper-slide {
    height: 28.1875rem;
    padding-top: 2.5rem;
    padding-inline: 1.875rem;
    padding-bottom: 3.125rem;
    border-radius: 0.625rem;
  }
}

.case__swiper-slide-img {
  background: #fff;
  width: min(526 / 750 * 100vw, 33.6201666667rem);
  height: auto;
  aspect-ratio: 1.5516224189;
  border-radius: min(20 / 750 * 100vw, 1.2783333333rem);
  margin-inline: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .case__swiper-slide-img {
    width: 16.4375rem;
    border-radius: 0.625rem;
  }
}
.--slide1 .case__swiper-slide-img img {
  width: min(417 / 750 * 100vw, 26.65325rem);
}
@media screen and (min-width: 768px) {
  .--slide1 .case__swiper-slide-img img {
    width: 13.03125rem;
  }
}
.--slide2 .case__swiper-slide-img img {
  width: min(442 / 750 * 100vw, 28.2511666667rem);
}
@media screen and (min-width: 768px) {
  .--slide2 .case__swiper-slide-img img {
    width: 13.8125rem;
  }
}
.--slide3 .case__swiper-slide-img img {
  width: min(530 / 750 * 100vw, 33.8758333333rem);
}
@media screen and (min-width: 768px) {
  .--slide3 .case__swiper-slide-img img {
    width: 16.5625rem;
  }
}

.case__swiper-slide-title {
  font-size: min(30 / 750 * 100vw, 1.9175rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: min(86 / 750 * 100vw, 5.4968333333rem);
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .case__swiper-slide-title {
    font-size: 0.9375rem;
    margin-top: 2.6875rem;
  }
}
.--slide1 .case__swiper-slide-title {
  padding-bottom: min(30 / 750 * 100vw, 1.9175rem);
}
@media screen and (min-width: 768px) {
  .--slide1 .case__swiper-slide-title {
    padding-bottom: 0.9375rem;
  }
}
.--slide2 .case__swiper-slide-title, .--slide3 .case__swiper-slide-title {
  padding-bottom: min(26 / 750 * 100vw, 1.6618333333rem);
}
@media screen and (min-width: 768px) {
  .--slide2 .case__swiper-slide-title, .--slide3 .case__swiper-slide-title {
    padding-bottom: 0.8125rem;
  }
}
.case__swiper-slide-title::before {
  content: "";
  background: #fff;
  width: 100%;
  height: min(5 / 750 * 100vw, 0.3195833333rem);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .case__swiper-slide-title::before {
    height: 0.15625rem;
  }
}

.case__swiper-slide-title-num {
  display: block;
}

.case__swiper-slide-title-client {
  display: block;
  line-height: 1.2;
  margin-top: min(15 / 750 * 100vw, 0.95875rem);
}
@media screen and (min-width: 768px) {
  .case__swiper-slide-title-client {
    margin-top: 0.46875rem;
  }
}
.case__swiper-slide-title-client .--small {
  font-size: min(20 / 750 * 100vw, 1.2783333333rem);
}
@media screen and (min-width: 768px) {
  .case__swiper-slide-title-client .--small {
    font-size: 0.625rem;
  }
}

.case__swiper-slide-desc {
  font-size: min(18 / 750 * 100vw, 1.1505rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5555555556;
}
@media screen and (min-width: 768px) {
  .case__swiper-slide-desc {
    font-size: 0.5625rem;
  }
}
.--slide1 .case__swiper-slide-desc {
  margin-top: min(80 / 750 * 100vw, 5.1133333333rem);
}
@media screen and (min-width: 768px) {
  .--slide1 .case__swiper-slide-desc {
    margin-top: 2.5rem;
  }
}
.--slide2 .case__swiper-slide-desc, .--slide3 .case__swiper-slide-desc {
  margin-top: min(40 / 750 * 100vw, 2.5566666667rem);
}
@media screen and (min-width: 768px) {
  .--slide2 .case__swiper-slide-desc, .--slide3 .case__swiper-slide-desc {
    margin-top: 1.25rem;
  }
}

.case__swiper-button-prev,
.case__swiper-button-next,
.case__swiper-pagination-bullets.case__swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

.case__swiper-button-prev::after,
.case__swiper-button-next::after {
  content: "";
}

.case__swiper-button-prev,
.case__swiper-button-next {
  background: #f24553;
  width: min(85 / 750 * 100vw, 5.4329166667rem);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  bottom: calc(50% + min(90 / 750 * 100vw, 5.7525rem));
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .case__swiper-button-prev,
  .case__swiper-button-next {
    width: 2.65625rem;
    bottom: calc(50% + 2.8125rem);
  }
}
.case__swiper-button-prev::before,
.case__swiper-button-next::before {
  content: "";
  width: min(25 / 750 * 100vw, 1.5979166667rem);
  height: auto;
  aspect-ratio: 1;
  border-top: solid #fff;
  border-left: solid #fff;
  border-width: min(5 / 750 * 100vw, 0.3195833333rem);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .case__swiper-button-prev::before,
  .case__swiper-button-next::before {
    width: 0.78125rem;
    border-width: 0.15625rem;
  }
}

.case__swiper-button-prev {
  left: 0;
  translate: -50% 50%;
}
.case__swiper-button-prev::before {
  left: 40%;
  rotate: -45deg;
}

.case__swiper-button-next {
  right: 0;
  translate: 50% 50%;
}
.case__swiper-button-next::before {
  left: unset;
  right: 40%;
  rotate: 135deg;
}

.flow {
  background: url("./img/bg_flow.webp") no-repeat top left/100%;
  padding-top: min(180 / 750 * 100vw, 11.505rem);
  padding-bottom: min(45 / 750 * 100vw, 2.87625rem);
}
@media screen and (min-width: 768px) {
  .flow {
    padding-top: 5.625rem;
    padding-bottom: 1.40625rem;
  }
}

.flow__item {
  width: min(686 / 750 * 100vw, 43.8468333333rem);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .flow__item {
    width: 21.4375rem;
  }
}

.qa {
  padding-top: min(100 / 750 * 100vw, 6.3916666667rem);
  padding-bottom: min(145 / 750 * 100vw, 9.2679166667rem);
  padding-inline: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .qa {
    padding-top: 3.125rem;
    padding-bottom: 4.53125rem;
  }
}

.qa__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.qa__bg-head {
  background: #7FCEF5;
  width: 100%;
  height: min(200 / 750 * 100vw, 12.7833333333rem);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .qa__bg-head {
    height: 6.25rem;
  }
}

.qa__bg-triangle-upper {
  background: #F34453;
  width: 50%;
  height: min(580 / 750 * 100vw, 37.0716666667rem);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .qa__bg-triangle-upper {
    height: 18.125rem;
  }
}

.qa__bg-triangle-lower {
  background: #7FCEF5;
  width: 20%;
  height: min(260 / 750 * 100vw, 16.6183333333rem);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .qa__bg-triangle-lower {
    height: 8.125rem;
  }
}

.qa__inner {
  position: relative;
}

.qa__heading {
  color: #fff;
  font-size: min(30 / 750 * 100vw, 1.9175rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .qa__heading {
    font-size: 0.9375rem;
  }
}
.qa__heading::before, .qa__heading::after {
  content: "";
  background: #fff;
  width: min(110 / 750 * 100vw, 7.0308333333rem);
  height: min(4 / 750 * 100vw, 0.2556666667rem);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .qa__heading::before, .qa__heading::after {
    width: 3.4375rem;
    height: 0.125rem;
  }
}
.qa__heading::before {
  left: 0;
}
.qa__heading::after {
  right: 0;
}

.qa__boxes {
  margin-top: min(160 / 750 * 100vw, 10.2266666667rem);
  display: flex;
  flex-direction: column;
  gap: min(40 / 750 * 100vw, 2.5566666667rem);
}
@media screen and (min-width: 768px) {
  .qa__boxes {
    margin-top: 5rem;
    gap: 1.25rem;
  }
}

.qa__box {
  overflow: hidden;
}

.qa__box-head {
  cursor: pointer;
  background: #7ecef4;
  width: 100%;
  padding-block: min(30 / 750 * 100vw, 1.9175rem);
  padding-left: min(30 / 750 * 100vw, 1.9175rem);
  padding-right: min(80 / 750 * 100vw, 5.1133333333rem);
  position: relative;
  transition: background 0.3s ease;
}
@media screen and (min-width: 768px) {
  .qa__box-head {
    padding-block: min(15 / 750 * 100vw, 0.95875rem);
    padding-left: 0.9375rem;
    padding-right: 2.5rem;
  }
}

.qa__box-head-container {
  display: block;
  color: #fff;
  font-size: min(36 / 750 * 100vw, 2.301rem);
  font-weight: 700;
  transition: color 0.3s;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .qa__box-head-container {
    font-size: 1.125rem;
  }
}

.qa__box-head-btn {
  display: block;
  width: min(42 / 750 * 100vw, 2.6845rem);
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  right: min(24 / 750 * 100vw, 1.534rem);
  top: 50%;
  translate: 0 -50%;
  transition: rotate 0.3s;
}
@media screen and (min-width: 768px) {
  .qa__box-head-btn {
    width: 1.3125rem;
    right: 0.75rem;
  }
}

.qa__box-head-btn-bar {
  content: "";
  background: #fff;
  width: 100%;
  height: min(4 / 750 * 100vw, 0.2556666667rem);
  position: absolute;
  top: 50%;
  transition: background 0.3s;
}
@media screen and (min-width: 768px) {
  .qa__box-head-btn-bar {
    height: 0.125rem;
  }
}
.qa__box-head-btn-bar.--bar1 {
  left: 0;
  translate: 0 -50%;
}
.qa__box-head-btn-bar.--bar2 {
  left: 50%;
  translate: -50% -50%;
  rotate: -90deg;
  transition: rotate 0.3s ease;
}
.qa__box.is-open .qa__box-head-btn-bar.--bar2 {
  rotate: 0deg;
}

.qa__box-body {
  display: none;
  background: #effaff;
  margin-top: min(12 / 750 * 100vw, 0.767rem);
  padding-block: min(36 / 750 * 100vw, 2.301rem);
  padding-left: min(15 / 750 * 100vw, 0.95875rem);
  padding-right: min(50 / 750 * 100vw, 3.1958333333rem);
  border: min(1 / 750 * 100vw, 0.0639166667rem) solid #7ecef4;
}
@media screen and (min-width: 768px) {
  .qa__box-body {
    margin-top: 0.375rem;
    padding-block: 1.125rem;
    padding-left: 0.46875rem;
    padding-right: 1.5625rem;
    border-width: 0.0625rem;
  }
}

.qa__box-body-container {
  display: flex;
  gap: min(12 / 750 * 100vw, 0.767rem);
}
@media screen and (min-width: 768px) {
  .qa__box-body-container {
    gap: 0.375rem;
  }
}

.qa__box-body-icon {
  color: #f24553;
  font-size: min(36 / 750 * 100vw, 2.301rem);
  font-weight: 700;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .qa__box-body-icon {
    font-size: 1.125rem;
  }
}

.qa__box-body-txt {
  color: #313131;
  font-size: min(24 / 750 * 100vw, 1.534rem);
  font-weight: 600;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .qa__box-body-txt {
    font-size: 0.75rem;
  }
}

.qa__cta {
  margin-top: min(120 / 750 * 100vw, 7.67rem);
}
@media screen and (min-width: 768px) {
  .qa__cta {
    margin-top: 3.75rem;
  }
}

.footer__inner {
  color: #fff;
  background: #313131;
  font-size: min(18 / 750 * 100vw, 1.1505rem);
  letter-spacing: 0.1em;
  line-height: 1.9444444444;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    font-size: 0.5625rem;
  }
}

.footer__info {
  padding-block: min(35 / 750 * 100vw, 2.2370833333rem);
  border-bottom: min(2 / 750 * 100vw, 0.1278333333rem) solid #fff;
}
@media screen and (min-width: 768px) {
  .footer__info {
    padding-block: 1.09375rem;
    border-width: 0.125rem;
  }
}

.footer__info-row {
  display: flex;
}
.footer__info-row dt, .footer__info-row dd {
  font-weight: 500;
}

.footer__copyright {
  padding-block: min(35 / 750 * 100vw, 2.2370833333rem);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    padding-block: 1.09375rem;
  }
}/*# sourceMappingURL=style.css.map */
.st
rength img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  line-height: 0;
}
