@charset "UTF-8";
/* ------------------------------ */
/* カスタムプロパティ */
/* ------------------------------ */
/* カラー */
:root {
  --color-white: #ffffff;
  --color-black: #272727;
  --color-blue: #239fd4;
  --color-gradient: linear-gradient(90deg, #9b58d0 0%, #3fd9fa 100%);
}

:root {
  --animation: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

/* フォント */
:root {
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-en: "Montserrat", sans-serif;
}

/* -------------------------
全体共通のスタイル
------------------------- */
body {
  font-family: var(--font-family-base);
  color: var(--color-black);
  background: linear-gradient(
    90deg,
    #efefef 0%,
    #ffffff 24.76%,
    #ffffff 75.96%,
    #efefef 100%
  );
}

body.no-scroll {
  overflow: hidden;
}

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

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

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

/* -------------------------
コンテナの幅、余白
------------------------- */
.l-container {
  width: 64%;
  margin: 0 auto;
}
@media screen and (max-width: 1440px) {
  .l-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 840px) {
  .l-container {
    padding: 0 20px;
    position: relative;
  }
}

/* -------------------------
ボタン（CTA）
------------------------- */
.cta__wrap {
  display: flex;
  align-items: center;
  gap: 17px;
}

.cta-button {
  border-radius: 100vw;
  font-size: 17px;
  font-weight: bold;
  color: var(--color-white);
  position: relative;
  padding: 1.6rem 4.4rem;
  outline: solid 3px var(--color-white);
  background-color: var(--color-white);
  text-align: center;
  transition: var(--animation);
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .cta-button {
    font-size: 13px;
    padding: 1.2rem 4.4rem;
  }
}
@media screen and (max-width: 840px) {
  .cta-button {
    font-size: 15px;
    padding: 0;
    padding: 1.3rem 0;
    width: 100%;
    max-width: 237px;
  }
}
.cta-button:after {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  background-image: url(../img/icon-arrow-circle.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}
.cta-button:hover {
  background-color: var(--color-white);
  color: var(--color-blue);
  outline: solid 3px var(--color-blue);
}
.cta-button:hover:after {
  background-image: url(../img/icon-arrow-circle-hover.webp);
}

.cta-button--gradient {
  background-image: linear-gradient(90deg, #865ea5 0%, #47b1cd 100%);
}
.cta-button--gradient:hover {
  background: var(--color-white);
}
.cta-button--gradient .text {
  display: inline-block;
  margin-left: -32px;
}
@media screen and (max-width: 840px) {
  .cta-button--gradient .text {
    margin-left: -28px;
  }
}

.cta-button--color {
  background-color: var(--color-blue);
}
.cta-button--color .text {
  display: inline-block;
  margin-left: -32px;
}
@media screen and (max-width: 840px) {
  .cta-button--color .text {
    margin-left: -30px;
  }
}

/* -------------------------
タイトル
------------------------- */
.c-title-en {
  text-align: center;
  font-size: clamp(11px, 1.1vw, 17px);
  line-height: 1;
  margin-bottom: 45px;
  font-family: var(--font-family-en);
  text-transform: uppercase;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .c-title-en {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 840px) {
  .c-title-en {
    margin-bottom: 11px;
  }
}

.c-title-lead {
  font-size: clamp(15px, 2vw, 30px);
  line-height: 1.5;
  text-align: center;
}

.c-title-level2 {
  font-weight: 500;
  text-align: center;
  font-size: clamp(25px, 3.4vw, 50px);
  line-height: 1.2;
  letter-spacing: normal;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .c-title-level2 {
    font-size: 35px;
  }
}

.c-title-level2 .color {
  background: linear-gradient(90deg, #9b58d0 0%, #3fd9fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-family-en);
}

.c-title-level3 {
  font-weight: bold;
  text-align: center;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.5;
  letter-spacing: normal;
}

/* -------------------------
ボタン
------------------------- */
.c-button {
  display: inline-block;
  color: var(--color-font-black);
  padding: 0.6em 2em;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  border-radius: 100vw;
  position: relative;
  font-size: 17px;
}

.c-button--border {
  border: solid 3px bar(--color-white);
}

/* -------------------------
ヘッダー
------------------------- */
.header {
  height: 104px;
  position: fixed;
  width: 94%;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f9f9f9;
  z-index: 2;
  box-shadow: 0px 1px 15px rgba(78, 0, 0, 0.04);
  border-radius: 15px;
  max-width: 1585px;
}
@media screen and (max-width: 1440px) {
  .header {
    width: 89%;
    height: 80px;
  }
}
@media screen and (max-width: 1280px) {
  .header {
    width: 95%;
    top: 15px;
    height: 80px;
  }
}
@media screen and (max-width: 840px) {
  .header {
    height: 50px;
    width: 90%;
  }
}

@media screen and (max-width: 1280px) {
  .header.open {
    border-radius: 15px 15px 0 0;
  }
}

.header__inner {
  display: flex;
  transform: initial;
  background-color: inherit;
  height: inherit;
  max-width: inherit;
  padding: 25px 48px;
  height: inherit;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .header__inner {
    padding: 20px 14px;
  }
}
@media screen and (max-width: 1280px) {
  .header__inner {
    height: inherit;
    display: flex;
    padding: 0 19px 0 4px;
    width: 100%;
    align-items: center;
  }
}

.header-logo {
  display: flex;
  gap: 45px;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.header-logo__fce {
  max-width: clamp(57px, 7.8vw, 113px);
}
.header-logo__service {
  max-width: clamp(77px, 10.6vw, 153px);
}

@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .header-logo__service {
    width: 124px;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .header-logo {
    gap: 17px;
  }
}
@media screen and (max-width: 1280px) {
  .header-logo {
    gap: 21px;
  }
}

.header__button {
  height: 100%;
  display: flex;
  width: 80px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: var(--color-black);
}
@media screen and (max-width: 1280px) {
  .header__button {
    width: inherit;
    height: inherit;
    position: relative;
  }
}

.header__menu {
  display: block;
  position: relative;
  top: 0;
  height: inherit;
}
@media screen and (max-width: 1280px) {
  .header__menu {
    display: none;
    width: 100%;
    position: fixed;
    top: 80px;
    left: 0;
    height: calc(100% - 60px);
    animation-name: fade;
    animation-duration: 1s;
    animation-iteration-count: 1;
  }
  .header__menu.active {
    display: block;
  }
}
@media screen and (max-width: 840px) {
  .header__menu {
    top: 50px;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header__list {
  gap: 45px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  color: var(--color-black);
  background-color: transparent;
  height: inherit;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .header__list {
    gap: 38px;
  }
}
@media screen and (max-width: 1280px) {
  .header__list {
    border-radius: 0 0 15px 15px;
    flex-direction: column;
    text-align: center;
    background-color: #f9f9f9;
    padding: 30px 0;
    height: max-content;
    gap: 20px;
  }
}

.header__item {
  cursor: pointer;
  border: none;
  font-weight: 500x;
  color: #626262;
  font-size: 16px;
}

@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .header__item {
    font-size: 13px;
  }
}
.header__item:hover {
  color: var(--color-blue);
}
.header__item:first-child {
  margin-left: 0;
}
.header__item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1280px) {
  .header__item {
    margin: 15px 0;
    font-weight: 700;
  }
}

.c-button__header {
  flex-shrink: 0;
  position: relative;
  display: inline-block;
  font-size: 19px;
  padding: 1rem 2.8rem;
  border-radius: 100vw;
  z-index: 1;
  overflow: hidden;
  height: auto;
  transition: var(--animation);
  width: 100%;
  background: linear-gradient(90deg, #9b58d0 0%, #3fd9fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .c-button__header {
    padding: 1rem 1.7rem;
  }
}

.c-button__header:before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; /* ボーダー幅 */
  border-radius: inherit;
  background: linear-gradient(to right, #9b58d0, #3fd9fa);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.c-button__header:hover {
  transform: scale(1.1);
}

.hamburger {
  display: none;
}
@media screen and (max-width: 1280px) {
  .hamburger {
    display: block;
    width: 18px;
    height: 18px;
    z-index: 1;
    text-align: center;
  }
  .hamburger.active span {
    right: -5px;
  }
  .hamburger span {
    display: block;
    background: var(--color-gradient);
    width: 18px;
    height: 2px;
    transition: transform 0.3s, opacity 0.3s;
    will-change: transform, opacity;
    transform-origin: 0 0;
    position: absolute;
  }
  .hamburger span.active {
    width: 100%;
    height: 2px;
    transition: opacity 0.3s;
    cursor: pointer;
    display: block;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .hamburger span:nth-child(3) {
    bottom: 0;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    width: 23px;
    top: 0;
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    bottom: 0;
    width: 24px;
    transform: rotate(-45deg);
  }
}

/* -------------------------
ファーストビュー
------------------------- */
.first-view {
  background-image: url(../img/fv-bg-pc.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 820px;
  max-width: 1920px;
  margin: 0 auto;
}
@media screen and (min-width: 1441px) and (max-width: 1512px) {
  .first-view {
    height: 751px;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .first-view {
    background-image: url(../img/fv-bg-pc-medium.webp);
    height: 701px;
    background-size: contain;
  }
}
@media screen and (min-width: 841px) and (max-width: 1280px) {
  .first-view {
    height: 610px;
  }
}
@media screen and (max-width: 840px) {
  .first-view {
    background-image: url(../img/fv-bg-sp.webp);
    height: 603px;
  }
}
.first-view__inner {
  width: inherit;
  height: inherit;
  position: relative;
}
@media screen and (max-width: 840px) {
  .first-view__inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 20px;
  }
}
.first-view__text {
  max-width: 754px;
  position: absolute;
  top: 27%;
  left: 14%;
}
@media screen and (min-width: 1441px) and (max-width: 1512px) {
  .first-view__text {
    max-width: 701px;
    top: 27%;
    left: 13%;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .first-view__text {
    max-width: 668px;
    top: 25%;
    left: 13%;
  }
}

@media screen and (min-width: 841px) and (max-width: 1280px) {
  .first-view__text {
    max-width: 537px;
    top: 24%;
    left: 5%;
  }
}

@media screen and (max-width: 840px) {
  .first-view__text {
    position: static;
    margin-top: 27%;
    margin-bottom: 6%;
  }
}
.first-view__achievements {
  max-width: 656px;
  position: absolute;
  top: 72%;
  left: 14%;
}
@media screen and (min-width: 1441px) and (max-width: 1512px) {
  .first-view__achievements {
    max-width: 602px;
    top: 69%;
    left: 13%;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .first-view__achievements {
    max-width: 570px;
    top: 68%;
    left: 13%;
  }
}

@media screen and (min-width: 841px) and (max-width: 1280px) {
  .first-view__achievements {
    max-width: 430px;
    top: 62%;
    left: 4%;
  }
}

@media screen and (max-width: 840px) {
  .first-view__achievements {
    position: static;
    margin-bottom: 5%;
  }
}
.first-view__cta {
  display: flex;
  gap: 21px;
  position: absolute;
  bottom: 4%;
  left: 14%;
}

@media screen and (min-width: 1441px) and (max-width: 1512px) {
  .first-view__cta {
    bottom: 5%;
    left: 13%;
  }
}

@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .first-view__cta {
    bottom: 6%;
    left: 13%;
  }
}

@media screen and (min-width: 841px) and (max-width: 1280px) {
  .first-view__cta {
    bottom: 12%;
    left: 4%;
  }
}

@media screen and (max-width: 840px) {
  .first-view__cta {
    width: 100%;
    position: static;
    gap: 6px;
    justify-content: center;
  }
}

/* @media screen and (max-width: 840px) {
  .first-view__cta .cta-button {
    width: 50%;
  }
} */
@media screen and (max-width: 840px) {
  .first-view__cta .cta-button:after {
    width: 20px;
    height: 20px;
  }
}

/* -------------------------
スクロール
------------------------- */
.scroll {
  overflow: hidden;
  display: flex;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  gap: 40px;
}
.scroll__item {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: clamp(58px, 7.7vw, 111px);
  font-family: var(--font-family-en);
  color: #ddd;
  font-weight: 100;
}
@media screen and (min-width: 1441px) and (max-width: 1512px) {
  .scroll__item {
    font-size: 87px;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .scroll__item {
    font-size: 83px;
  }
}
.scroll__item:nth-child(odd) {
  animation: MoveLeft 10s -5s infinite linear;
}
.scroll__item:nth-child(even) {
  animation: MoveLeft2 10s infinite linear;
}

@keyframes MoveLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes MoveLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/* -------------------------
ミッション
------------------------- */
.mission__inner {
  padding: 126px 0 286px 0;
  background-image: url(../img/mission-bg-pc.webp);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .mission__inner {
    padding: 106px 0 348px 0;
  }
}
@media screen and (max-width: 840px) {
  .mission__inner {
    padding: 57px 0 191px 0;
    background-image: url(../img/mission-bg-sp.webp);
  }
}
.mission__inner .mission__bg {
  position: absolute;
  right: 0;
  max-width: 763px;
  z-index: -1;
  top: 0;
}
@media screen and (max-width: 840px) {
  .mission__inner .mission__bg {
    max-width: 300px;
  }
}
.mission .title__wrap {
  background: linear-gradient(
    90deg,
    rgba(147, 108, 183, 0.7) 0%,
    rgba(87, 190, 218, 0.7) 100%
  );
  color: var(--color-white);
  padding: 54px 0 65px 0;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .mission .title__wrap {
    padding: 48px 0 52px 0;
  }
}

@media screen and (max-width: 840px) {
  .mission .title__wrap {
    padding: 29px 0;
  }
}
.mission__button {
  border-radius: 100vw;
  position: relative;
  font-size: 16px;
  min-width: 237px;
  padding: 0.7rem 0;
  text-align: center;
  transition: var(--animation);
}
.mission__button:hover {
  transform: scale(1.1);
}
.mission__button--gradient {
  margin-top: 0;
  color: var(--color-white);
  background: linear-gradient(90deg, #9b58d0 0%, #3fd9fa 100%);
  font-weight: bold;
}
.mission__button--white {
  margin-top: 0;
  outline: solid 1px var(--color-black);
  background-color: var(--color-white);
  font-family: var(--font-family-en);
}
.mission__button--white:before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  background-image: url(../img/icon-circle.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.mission__button--white .text {
  padding-left: 33px;
}
@media screen and (max-width: 840px) {
  .mission__button--white .text {
    display: inline-block;
    padding-left: 31px;
  }
}
.mission__button .text {
  display: inline-block;
  margin-bottom: 0;
  letter-spacing: -0.05em;
}
.mission__title {
  text-shadow: 0px 1px 5px #f9fbff;
  font-weight: 500;
}
.mission__subtitle {
  margin-bottom: 59px;
  line-height: 2;
  font-weight: 400;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .mission__subtitle {
    line-height: 1.8;
    margin-bottom: 34px;
  }
}
@media screen and (max-width: 840px) {
  .mission__subtitle {
    margin-bottom: 29px;
  }
}
.mission .text {
  line-height: 1.8;
  text-align: center;
  font-size: 20px;
}
@media screen and (max-width: 430px) {
  .mission .text {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.mission .button {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin-top: 107px;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .mission .button {
    margin-top: 45px;
  }
}
@media screen and (max-width: 840px) {
  .mission .button {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-top: 46px;
  }
}

/* -------------------------
選ばれる理由
------------------------- */
.reason {
  position: relative;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .reason {
    padding-top: 43px;
  }
}
.reason__bg {
  position: absolute;
  left: 0;
  max-width: 779px;
  z-index: -1;
  bottom: -20%;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .reason__bg {
    max-width: 599px;
    bottom: -23%;
  }
}
@media screen and (max-width: 840px) {
  .reason__bg {
    max-width: 279px;
  }
}
.reason__inner {
  padding-bottom: 160px;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .reason__inner {
    padding-bottom: 116px;
  }
}
@media screen and (max-width: 840px) {
  .reason__inner {
    padding-bottom: 73px;
  }
}
.reason .title__wrap {
  margin-bottom: 55px;
}
@media screen and (max-width: 840px) {
  .reason .title__wrap {
    margin-bottom: 46px;
  }
}
.reason__title {
  font-weight: 500;
}
.reason__list {
  display: flex;
  flex-wrap: wrap;
  width: 75%;
  margin: 0 auto;
  gap: 30px 41px;
}
@media screen and (min-width: 1281px) and (max-width: 1512px) {
  .reason__list {
    padding-left: 0;
    width: 83%;
  }
}
@media screen and (max-width: 840px) {
  .reason__list {
    gap: 10px;
    width: 70%;
  }
}
@media screen and (max-width: 500px) {
  .reason__list {
    width: 100%;
  }
}
.reason__list .reason__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: calc(50% - 21px);
  padding: 84px 0 35px 0;
  background-color: var(--color-white);
  box-shadow: 0px 2px 17px 9px rgba(39, 39, 39, 0.1);
}
@media screen and (min-width: 1281px) and (max-width: 1512px) {
  .reason__list .reason__item {
    padding: 84px 0 32px 0;
  }
}
@media screen and (max-width: 840px) {
  .reason__list .reason__item {
    width: calc(50% - 5px);
    padding: 18px 0 16px 0;
  }
}
@media screen and (max-width: 840px) {
  .reason__list .reason__item .image {
    margin-bottom: 10px;
  }
}
.reason__list .reason__item .title {
  font-size: clamp(12px, 1.6vw, 24px);
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 1281px) and (max-width: 1512px) {
  .reason__list .reason__item .title {
    font-size: 19px;
  }
}
@media screen and (max-width: 840px) {
  .reason__list .reason__item .title {
    line-height: 1.3;
  }
}
.reason__list .reason__item:first-child .image {
  margin-bottom: 42px;
  max-width: clamp(65px, 11.1vw, 160px);
}
@media screen and (min-width: 1281px) and (max-width: 1512px) {
  .reason__list .reason__item:first-child .image {
    max-width: 125px;
    margin-bottom: 35px;
    margin-top: -3px;
  }
}
@media screen and (max-width: 840px) {
  .reason__list .reason__item:first-child .image {
    margin-bottom: 6px;
  }
}

@media screen and (max-width: 840px) {
  .reason__list .reason__item:first-child .title {
    margin-bottom: 0;
    font-size: clamp(15px, 1.6vw, 24px);
  }
}
.reason__list .reason__item:nth-child(2) .image {
  margin-top: 20px;
  margin-bottom: 29px;
  max-width: clamp(57px, 9.7vw, 141px);
}
@media screen and (min-width: 1281px) and (max-width: 1512px) {
  .reason__list .reason__item:nth-child(2) .image {
    margin-top: 0;
    max-width: 120px;
    margin-bottom: 29px;
  }
}
@media screen and (max-width: 840px) {
  .reason__list .reason__item:nth-child(2) .image {
    margin-top: 0;
    margin-bottom: 8px;
  }
}
.reason__list .reason__item:nth-child(3) .image {
  margin-bottom: 20px;
  max-width: clamp(63px, 11.5vw, 166px);
}
@media screen and (min-width: 1281px) and (max-width: 1512px) {
  .reason__list .reason__item:nth-child(3) .image {
    margin-bottom: 26px;
    margin-top: -6px;
    max-width: 140px;
  }
}
@media screen and (max-width: 840px) {
  .reason__list .reason__item:nth-child(3) .image {
    margin-bottom: 16px;
  }
}

.reason__list .reason__item:last-child .image {
  margin-bottom: 40px;
  margin-top: 10px;
  margin-left: 37px;
  max-width: clamp(83px, 14vw, 203px);
}
@media screen and (min-width: 1281px) and (max-width: 1512px) {
  .reason__list .reason__item:last-child .image {
    margin-bottom: 45px;
    margin-top: 6px;
    margin-left: 26px;
    max-width: 166px;
  }
}
@media screen and (max-width: 840px) {
  .reason__list .reason__item:last-child .image {
    margin-bottom: 9px;
    margin-top: 8px;
    margin-left: 0;
  }
}

.reason .text {
  font-size: 24px;
  line-height: 1.25;
  text-align: center;
}

/* -------------------------
プロダクツ
------------------------- */
.products {
  background: rgba(240, 240, 240, 0.77);
  mix-blend-mode: multiply;
  position: relative;
}
.products__bg {
  position: absolute;
  right: 0;
  max-width: 1150px;
  z-index: -1;
  bottom: 0;
}
@media screen and (max-width: 840px) {
  .products__bg {
    max-width: 300px;
  }
}
.products__inner {
  padding: 126px 0 286px 0;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .products__inner {
    padding: 126px 0 138px 0;
  }
}
@media screen and (max-width: 840px) {
  .products__inner {
    padding: 53px 0 89px 0;
  }
}
.products .title__wrap {
  margin-bottom: 70px;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .products .title__wrap {
    margin-bottom: 42px;
  }
}
@media screen and (max-width: 840px) {
  .products .title__wrap {
    margin-bottom: 34px;
  }
}
.products__title {
  font-weight: 500;
}
.products__list {
  display: flex;
  flex-wrap: wrap;
  gap: 102px;
  justify-content: center;
  margin-bottom: 140px;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .products__list {
    padding: 0 25px;
    margin-bottom: 189px;
  }
}
@media screen and (min-width: 841px) and (max-width: 1280px) {
  .products__list {
    gap: 40px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 840px) {
  .products__list {
    flex-direction: column;
    margin-bottom: 92px;
    gap: 35px;
  }
}
.products__list .products__item {
  width: calc(33.3333333333% - 68px);
  overflow: visible;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .products__list .products__item {
    width: calc(33.3333333333% - 68px);
  }
}
@media screen and (min-width: 841px) and (max-width: 1280px) {
  .products__list .products__item {
    width: calc(33.3333333333% - 31px);
  }
}
@media screen and (max-width: 840px) {
  .products__list .products__item {
    width: 100%;
  }
}
.products__list .products__item .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-direction: column;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .products__list .products__item .inner {
    gap: 13px;
  }
}
@media screen and (max-width: 840px) {
  .products__list .products__item .inner {
    gap: 0;
  }
}
.products__list .products__item .image {
  width: 100%;
  position: relative;
  overflow: visible;
  margin-left: -9px;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .products__list .products__item .image {
    width: 104%;
  }
}
@media screen and (max-width: 840px) {
  .products__list .products__item .image {
    margin-bottom: 28px;
  }
}
.products__list .products__item .image img {
  position: relative;
  z-index: 2;
}
.products__list .products__item .head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .products__list .products__item .head {
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 840px) {
  .products__list .products__item .head {
    margin-bottom: 20px;
  }
}
.products__list .products__item .head .icon {
  max-width: 60px;
}
.products__list .products__item .head .title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .products__list .products__item .head .title {
    font-size: 22px;
  }
}
.products__list .products__item .text {
  line-height: 1.6;
}
.products__list .products__item:first-child .icon {
  margin-right: 16px;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .products__list .products__item:first-child .icon {
    margin-right: 26px;
  }
}
@media screen and (max-width: 840px) {
  .products__list .products__item:first-child .icon {
    margin-right: 48px;
  }
}
.products__list .products__item:nth-child(2) .icon {
  margin-right: 16px;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .products__list .products__item:nth-child(2) .icon {
    margin-right: 15px;
  }
}
@media screen and (max-width: 840px) {
  .products__list .products__item:nth-child(2) .icon {
    margin-right: 30px;
  }
}
.products__list .products__item:last-child .icon {
  margin-right: 30px;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .products__list .products__item:last-child .icon {
    margin-right: 47px;
  }
}
@media screen and (max-width: 840px) {
  .products__list .products__item:last-child .icon {
    margin-right: 68px;
  }
}
.products .products__structure {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .products .products__structure {
    justify-content: flex-start;
    padding-left: 30px;
  }
}
@media screen and (max-width: 840px) {
  .products .products__structure {
    flex-direction: column;
  }
}
.products .products__structure .image {
  max-width: 686px;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .products .products__structure .image {
    max-width: 549px;
  }
}
@media screen and (max-width: 840px) {
  .products .products__structure .image {
    margin-bottom: -13px;
  }
}

.products .products__structure .list {
  flex-shrink: 0;
  max-width: 578px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: visible;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .products .products__structure .list {
    padding-left: 24px;
    width: 49%;
  }
}
@media screen and (max-width: 840px) {
  .products .products__structure .list {
    gap: 20px;
  }
}
.products .products__structure .list .item {
  border-radius: 12px;
  background-color: var(--color-white);
  padding: 26px 58px;
  box-shadow: 7px 7px 39px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .products .products__structure .list .item {
    padding: 26px 41px 15px 38px;
  }
}
@media screen and (max-width: 840px) {
  .products .products__structure .list .item {
    padding: 35px 0;
  }
}
.products .products__structure .list .item .title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 840px) {
  .products .products__structure .list .item .title {
    display: flex;
    gap: 13px;
    justify-content: center;
  }
}
.products .products__structure .list .item .text {
  font-size: 16px;
  line-height: 1.6;
  list-style-type: disc;
  list-style-position: inside;
  text-indent: -1.5em;
  padding-left: 1.5em;
}
@media screen and (max-width: 840px) {
  .products .products__structure .list .item .text {
    margin: 0 20px;
    list-style-position: inside;
  }
}
.products .products__structure .list .item:first-child .title {
  color: #8e62b0;
}
.products .products__structure .list .item:nth-child(2) .title {
  color: #6889c9;
}
.products .products__structure .list .item:last-child .title {
  color: #42bede;
}

/* -------------------------
なぜAI OMNI AGENTなのか
------------------------- */
.why {
  background-image: url(../img/why-bg-pc.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 840px) {
  .why {
    background-image: url(../img/why-bg-sp.webp);
  }
}
.why .sp {
  margin-bottom: 10px;
}
.why__inner {
  padding: 163px 0;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .why__inner {
    padding: 63px 0 101px 0;
  }
}
@media screen and (max-width: 840px) {
  .why__inner {
    padding: 64px 0;
  }
}
.why .title__wrap {
  padding: 54px 0 65px 0;
}
@media screen and (max-width: 840px) {
  .why .title__wrap {
    padding: 0;
    margin-bottom: 24px;
  }
}
.why__title {
  font-weight: 500;
}
.why__image {
  display: block;
  margin-bottom: 57px;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .why__image {
    margin-bottom: 4px;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .why__image picture {
    width: 98%;
    display: block;
    margin-left: 1%;
  }
}
@media screen and (max-width: 840px) {
  .why__image {
    overflow-x: auto;
    overflow-x: scroll;
    padding-bottom: 30px;
    margin-bottom: 40px;
  }
  .why__image .inner {
    width: 1015px;
    position: relative;
  }
  .why__image .inner::before,
  .why__image .inner::after {
    transition: opacity 0.4s ease;
  }
  .why__image .inner:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 42, 42, 0.72);
    border-radius: 12px;
  }
  .why__image .inner:after {
    content: "";
    display: block;
    width: 176px;
    height: 147px;
    background-image: url(../img/icon-touch.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 17%;
    transform: translate(-50%, -50%);
    animation: sway 2s ease-in-out infinite;
  }
  .why__image .inner.hide-mask::before,
  .why__image .inner.hide-mask::after {
    opacity: 0;
    pointer-events: none;
    animation: none;
  }
  @keyframes sway {
    0% {
      transform: translate(-50%, -50%) translateX(-30px);
    }
    50% {
      transform: translate(-50%, -50%) translateX(30px);
    }
    100% {
      transform: translate(-50%, -50%) translateX(-30px);
    }
  }
}
.why__detail {
  border: 1px solid;
  border-image: linear-gradient(to right, #9b58d0, #3fd9fa) 1;
  padding: 30px;
  background-color: var(--color-white);
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .why__detail {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 167px;
  }
}
@media screen and (max-width: 840px) {
  .why__detail {
    padding: 33px 18px;
  }
}
.why__detail .text {
  font-size: clamp(17px, 1.38vw, 20px);
  line-height: 1.5;
}
@media screen and (max-width: 840px) {
  .why__detail .text {
    line-height: 1.6;
  }
}

/* -------------------------
導入・伴走支援
------------------------- */
.flow {
  padding: 163px 0;
  background-image: url(../img/flow-bg-pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .flow {
    padding: 59px 0 106px 0;
  }
}
@media screen and (max-width: 840px) {
  .flow {
    background-image: url(../img/flow-bg-sp.webp);
    padding: 64px 0;
  }
}
.flow .title__wrap {
  padding: 54px 0 65px 0;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .flow .title__wrap {
    padding: 54px 0 63px 0;
  }
}
@media screen and (max-width: 840px) {
  .flow .title__wrap {
    padding: 0;
    margin-bottom: 49px;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .flow .title__wrap .c-title-lead {
    font-size: 20px;
  }
}

.flow__title {
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .flow__title {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 840px) {
  .flow__title {
    margin-bottom: 8px;
  }
}
.flow__list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 200px;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .flow__list {
    max-width: 1100px;
    margin: 0 auto 198px auto;
  }
}
@media screen and (max-width: 840px) {
  .flow__list {
    flex-direction: column;
    gap: 50px;
    margin-bottom: 64px;
  }
}
.flow__list .flow__item {
  position: relative;
  width: calc(25% - 45px);
  background-color: var(--color-white);
  padding: 65px 30px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  max-height: 380px;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .flow__list .flow__item {
    padding: 55px 30px 35px 30px;
  }
}
@media screen and (max-width: 840px) {
  .flow__list .flow__item {
    width: 100%;
    padding: 25px 20px 12px 20px;
  }
}
.flow__list .flow__item .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 840px) {
  .flow__list .flow__item .inner {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    gap: 10px 0;
  }
}
.flow__list .flow__item:after {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background-image: url(../img/icon-arrow-border.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: -16%;
  transform: translateY(-50%);
}
@media screen and (max-width: 840px) {
  .flow__list .flow__item:after {
    top: auto;
    bottom: -29%;
    right: 0;
    left: 50%;
    transform: translate(-50%, 0) rotate(90deg);
  }
}
.flow__list .flow__item:last-child:after {
  display: none;
}
.flow__list .flow__item .image {
  max-width: 86px;
  display: inline-block;
  margin-bottom: 8px;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .flow__list .flow__item .image {
    max-width: 76px;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 840px) {
  .flow__list .flow__item .image {
    grid-column: 1/2;
    grid-row: 2/3;
    max-width: 67px;
    margin-left: 13px;
  }
}
.flow__list .flow__item .step {
  background-image: var(--color-gradient);
  color: var(--color-white);
  font-family: var(--font-family-en);
  min-width: 120px;
  font-size: clamp(11px, 1.4vw, 21px);
  font-weight: 500;
  text-align: center;
  border-radius: 100vw;
  margin-bottom: 15px;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .flow__list .flow__item .step {
    pad: 0.4rem 0;
    margin-bottom: 17px;
  }
}
@media screen and (max-width: 840px) {
  .flow__list .flow__item .step {
    grid-column: 1/2;
    grid-row: 1/2;
    min-width: auto;
    margin-bottom: 0;
    margin-right: 0;
    padding: 0.3rem 0;
    width: 60px;
  }
}
.flow__list .flow__item .title {
  font-family: var(--font-family-en);
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1;
  margin-bottom: 27px;
  font-weight: bold;
}
@media screen and (max-width: 840px) {
  .flow__list .flow__item .title {
    grid-column: 2/3;
    grid-row: 1/2;
    margin-bottom: 0;
    margin-left: -10px;
  }
}
.flow__list .flow__item .text {
  font-family: var(--font-family-en);
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 840px) {
  .flow__list .flow__item .text {
    grid-column: 2/3;
    grid-row: 2/3;
    width: 93%;
    justify-self: flex-end;
  }
}
.flow__emblem {
  display: flex;
  gap: 42px;
  align-items: center;
  justify-content: center;
  max-width: 764px;
  margin: 0 auto 63px auto;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .flow__emblem {
    max-width: none;
    margin: 0 auto 30px auto;
  }
}

@media screen and (max-width: 840px) {
  .flow__emblem {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 840px) {
  .flow__emblem img:first-child {
    width: 72%;
  }
}
@media screen and (max-width: 840px) {
  .flow__emblem img:last-child {
    width: 87%;
  }
}
.flow__bottom {
  font-size: clamp(17px, 2.2vw, 32px);
  line-height: 1.5;
  text-align: center;
  font-weight: 500;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .flow__bottom {
    font-size: 30px;
  }
}

/* -------------------------
CTA
------------------------- */
.cta {
  padding: 77px 0;
  background-image: url(../img/cta-bg-pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .cta {
    padding: 55px 0 56px 0;
  }
}
@media screen and (max-width: 840px) {
  .cta {
    background-image: url(../img/cta-bg-sp.webp);
    padding: 57px 0 55px 0;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .cta .cta__title {
    font-size: 40px;
  }
}
.cta .cta__wrap {
  gap: 17px;
  justify-content: center;
}
@media screen and (max-width: 840px) {
  .cta .cta__wrap {
    flex-direction: row;
    gap: 6px;
  }
}
/* @media screen and (max-width: 840px) {
  .cta .cta__wrap .cta-button {
    width: 50%;
  }
} */
@media screen and (max-width: 840px) and (max-width: 840px) {
  .cta .cta__wrap .cta-button .text {
    margin-left: -18px;
  }
}
@media screen and (max-width: 840px) and (max-width: 840px) {
  .cta .cta__wrap .cta-button:after {
    width: 20px;
    height: 20px;
  }
}
.cta__title {
  margin-bottom: 58px;
  font-weight: bold;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .cta__title {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 840px) {
  .cta__title {
    margin-bottom: 46px;
  }
}
.cta__list {
  margin-bottom: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px 0;
  max-width: 578px;
  margin: 0 auto 58px auto;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .cta__list {
    max-width: 518px;
    justify-content: space-between;
    margin: 0 auto 48px auto;
  }
}
@media screen and (max-width: 840px) {
  .cta__list {
    margin: 0 auto 41px auto;
    gap: 11px 11px;
  }
}
.cta__list .cta__item {
  display: flex;
  gap: 20px;
  align-items: center;
  font-weight: 500;
  width: 50%;
  font-weight: bold;
  font-size: clamp(15px, 1.6vw, 24px);
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .cta__list .cta__item {
    width: 44%;
    font-size: 20px;
  }
}
@media screen and (max-width: 840px) {
  .cta__list .cta__item {
    gap: 12px;
    width: calc(50% - 11px);
  }
}
.cta__list .cta__item .icon {
  width: clamp(16px, 1.8vw, 27px);
}

/* -------------------------
フッター
------------------------- */
.footer {
  background-color: #919191;
}
.footer__inner {
  padding: 65px 158px;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .footer__inner {
    padding: 54px 66px;
  }
}
@media screen and (max-width: 840px) {
  .footer__inner {
    padding: 69px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.footer__logo {
  max-width: 310px;
  margin-bottom: 50px;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .footer__logo {
    max-width: 254px;
    margin-bottom: 54px;
  }
}
@media screen and (max-width: 840px) {
  .footer__logo {
    max-width: 214px;
    margin-bottom: 35px;
  }
}
.footer__nav {
  width: 48%;
  margin-bottom: 30px;
}
@media screen and (min-width: 1281px) and (max-width: 11440px) {
  .footer__nav {
    margin-bottom: 79px;
  }
}
@media screen and (max-width: 840px) {
  .footer__nav {
    margin-bottom: 53px;
  }
}
.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 45px 28px;
}
@media screen and (max-width: 840px) {
  .footer__nav ul {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}
.footer__nav ul li {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .footer__nav ul li {
    font-size: 11px;
  }
}
.footer .cta__wrap {
  margin-bottom: 40px;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .footer .cta__wrap {
    margin-bottom: 19px;
  }
}
@media screen and (max-width: 840px) {
  .footer .cta__wrap {
    width: 72%;
    gap: 20px;
    margin-bottom: 35px;
    flex-direction: column;
  }
}
.footer__bottom {
  display: flex;
  gap: 26px;
}
.footer__link {
  margin-bottom: 30px;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .footer__link {
    font-size: 11px;
  }
}
.footer__link:hover {
  color: var(--color-black);
}
.footer__copyright {
  font-size: 12px;
  color: var(--color-white);
}

/* -------------------------
TOPへ戻るボタン
------------------------- */
@media screen and (max-width: 767px) {
  .page-top {
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: fixed;
    border-radius: 50%;
    transition: 0.3s;
    background-color: var(--color-blue);
    box-shadow: rgba(0, 0, 0, 0.2392156863) 0px 3px 8px;
    z-index: 1;
  }
  .page-top:before {
    content: "";
    width: 10px;
    height: 10px;
    border: 0;
    transform: rotate(-45deg);
    position: absolute;
    top: 12%;
    right: 37%;
    bottom: 0;
    margin: auto;
    border-top: solid 2px var(--color-white);
    border-right: solid 2px var(--color-white);
  }
} /*# sourceMappingURL=style.css.map */
