@charset "UTF-8";
/* ------------------------------ */
/* カスタムプロパティ */
/* ------------------------------ */
/* カラー */
:root {
  --color-white: #ffffff;
  --color-black: #1a3a63;
  --color-navy: #1a3a63;
  --color-blue: #3ebcd2;
  --color-skyblue: #f4f6f8;
  --color-purple: #865ea5;
  --color-green: #51cc8f;
  --color-skyblue2: #ecf8fa;
  --color-gradient: linear-gradient(225deg, #3ebcd2 0%, #865ea5 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: "Inter", sans-serif;
  --font-family-din: "din-2014", sans-serif;
  --font-family-mon: "Montserrat", sans-serif;
}

/* -------------------------
全体共通のスタイル
------------------------- */
body {
  box-sizing: border-box;
  font-family: var(--font-family-base);
  font-weight: 400;
  color: var(--color-black);
  font-size: 16px;
}

body.no-scroll {
  overflow: hidden;
}

body.menu-open {
  position: relative;
}

body.menu-open::before {
  content: "";
  position: fixed;
  top: calc(env(safe-area-inset-top) * -1);
  right: 0;
  bottom: calc(env(safe-area-inset-bottom) * -1);
  left: 0;
  z-index: 1;
  background: linear-gradient(225deg, #3ebcd2 0%, #865ea5 100%);
  opacity: 0.4;
  pointer-events: none;
}

img {
  width: 100%;
  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;
  }
}

summary {
  display: block;
}

/* Chrome、Safari */
summary::-webkit-details-marker {
  display: none;
}

/* -------------------------
コンテナの幅、余白
------------------------- */
.l-container {
  margin: 0 auto;
  max-width: 960px;
}
.l-container--large {
  max-width: 1260px;
}
@media screen and (max-width: 840px) {
  .l-container {
    max-width: none;
    width: 100%;
    padding: 0 15px;
  }
}

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

.cta-button {
  box-shadow: 4px 4px 16px rgba(62, 188, 210, 0.2);
  border-radius: 100vw;
  font-size: 14px;
  font-weight: bold;
  display: block;
  margin: 0 auto;
  font-weight: 600;
  color: var(--color-white);
  position: relative;
  padding: 15px 0;
  line-height: 1;
  max-width: 240px;
  background-color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 840px) {
  .cta-button {
    font-size: 14px;
    padding: 0;
    padding: 1rem 0;
    width: 100%;
  }
}
.cta-button__icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.cta-button:after {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}
.cta-button {
  transition: var(--animation);
}
.cta-button:hover {
  background-color: var(--color-white);
  color: var(--color-blue);
  outline: solid 3px var(--color-blue);
}

.cta-button--gradient {
  background: var(--color-gradient);
}
.cta-button--gradient:hover {
  background: var(--color-white);
  outline: solid 2px var(--color-blue);
}
.cta-button--gradient:hover .text {
  color: var(--color-blue);
}
.cta-button--gradient .text {
  display: inline-block;
  color: var(--color-white);
}

.cta-button--color {
  background-color: var(--color-blue);
}
.cta-button--color:hover {
  background: var(--color-white);
  outline: solid 2px var(--color-blue);
}
.cta-button--color:hover .text {
  color: var(--color-blue);
}
.cta-button--color .text {
  display: inline-block;
  color: var(--color-white);
}

/* -------------------------
タイトル
------------------------- */
.c-title__lead {
  position: relative;
  padding-inline-start: 20px;
  position: relative;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.04rem;
  background: var(--color-gradient);
  background-size: 20em 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.c-title__lead:before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 100vw;
  background: var(--color-gradient);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 840px) {
  .c-title__lead--br::before {
    top: 5px;
    transform: translateY(0);
  }
}
.c-title__level2 {
  letter-spacing: 0.12rem;
  line-height: 1.4;
  font-weight: 900;
  font-size: clamp(28px, 28px + 22 * (100vw - 390px) / 1050, 50px);
}
@media screen and (max-width: 840px) {
  .c-title__level2 {
    font-feature-settings: "palt";
  }
}
.c-title__level2--small {
  letter-spacing: 0.07rem;
  font-size: clamp(18px, 18px + 7 * (100vw - 390px) / 1050, 25px);
}
.c-title__level2--color {
  background: var(--color-gradient);
  background-size: 8em 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* -------------------------
ボタン
------------------------- */
.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 {
  box-shadow: 4px 4px 16px rgba(27, 44, 73, 0.15);
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-white);
  z-index: 3;
  box-shadow: 0px 1px 15px rgba(78, 0, 0, 0.04);
  border-radius: 15px;
  width: 100%;
  max-width: 1250px;
}
@media screen and (max-width: 1280px) {
  .header {
    width: 95%;
    top: 15px;
    background-color: var(--color-white);
    height: 80px;
  }
}
@media screen and (max-width: 840px) {
  .header {
    height: 60px;
    width: 90%;
  }
}
@media screen and (max-width: 1280px) {
  .header.active {
    border-radius: 15px 15px 0 0;
  }
}
.header__inner {
  display: flex;
  transform: initial;
  background-color: inherit;
  height: inherit;
  max-width: inherit;
  padding: 17px 15px;
  height: inherit;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px;
}
@media screen and (max-width: 1280px) {
  .header__inner {
    height: inherit;
    display: flex;
    padding: 5px 10px;
    width: 100%;
    align-items: center;
  }
}
.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: 24px;
    height: 12px;
    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: 0.5s;
    animation-iteration-count: 1;
  }
  .header__menu.active {
    display: block;
  }
}
@media screen and (max-width: 840px) {
  .header__menu {
    top: 50px;
  }
}
.header__list {
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  color: var(--color-black);
  background-color: transparent;
  height: inherit;
}
@media screen and (max-width: 1280px) {
  .header__list {
    flex-direction: column;
    text-align: center;
    background-color: var(--color-white);
    height: max-content;
    gap: 33px;
    /* gap: 52px; */
    /* height: 90vh; */
    padding: 60px 13px 40px 13px;
    border-radius: 0 0 15px 15px;
  }
}
.header__item {
  cursor: pointer;
  border: none;
  font-weight: 800;
  color: var(--color-black);
  font-size: 14px;
}
.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: 840px) {
  .header__item {
    font-weight: 500;
  }
}
.header__item--pc {
  display: block;
}
@media screen and (max-width: 1280px) {
  .header__item--pc {
    display: none;
  }
}
.header__item--sp {
  display: none;
}
@media screen and (max-width: 1280px) {
  .header__item--sp {
    display: block;
  }
}

.header-cta__list {
  display: none;
}
@media screen and (max-width: 840px) {
  .header-cta__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
}
.header-cta__item {
  border-radius: 100vw;
  box-shadow: 3.80571px 3.80571px 7.61143px rgba(27, 44, 73, 0.4);
}

.header-logo {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.header-logo__fce {
  max-width: clamp(87px, 7.8vw, 116px);
}
.header-logo__service {
  max-width: clamp(101px, 10.6vw, 134px);
}
@media screen and (max-width: 1280px) {
  .header-logo {
    gap: 10px;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.c-button__header {
  flex-shrink: 0;
  font-feature-settings: "palt";
  position: relative;
  display: inline-block;
  font-size: 16px;
  padding: 14px 28px;
  line-height: 1;
  border-radius: 100vw;
  font-feature-settings: "palt";
  font-weight: 700;
  z-index: 1;
  overflow: hidden;
  height: auto;
  transition: var(--animation);
  width: 100%;
  background: var(--color-gradient);
  color: var(--color-white);
}
.c-button__header:hover {
  transform: scale(1.1);
}

.hamburger {
  display: none;
}
@media screen and (max-width: 1280px) {
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--color-gradient);
    border-radius: 100%;
    z-index: 1;
    text-align: center;
  }
  .hamburger.active span {
    right: -5px;
  }
  .hamburger.active .header__button {
    width: 19px;
    height: 19px;
  }
  .hamburger span {
    display: block;
    background: var(--color-white);
    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: 24px;
    top: 1px;
    left: 1px;
  }
  .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: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 762px;
  margin: 0 auto 23px auto;
  background-color: var(--color-white);
  filter: drop-shadow(0px 4px 16px rgba(27, 44, 73, 0.2));
  display: flex;
  align-content: center;
  align-items: flex-end;
}
@media screen and (min-width: 1921px) {
  .first-view {
    background-size: contain;
  }
}
@media screen and (max-width: 840px) {
  .first-view {
    background-image: url(../img/fv-bg-sp.webp);
    justify-content: center;
    height: 719px;
    min-height: auto;
    margin-bottom: 16px;
  }
}
.first-view__inner {
  padding-inline: 100px;
  max-width: 1920px;
  width: 100%;
  height: inherit;
  position: relative;
}
@media screen and (min-width: 1441px) {
  .first-view__inner {
    max-width: 1440px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 841px) and (max-width: 1280px) {
  .first-view__inner {
    padding-left: clamp(15px, 15px + 75 * (100vw - 841px) / 439, 90px);
  }
}
@media screen and (max-width: 840px) {
  .first-view__inner {
    padding-inline: 15px;
    align-items: flex-start;
  }
}
.first-view__image {
  position: absolute;
  max-width: 627px;
  right: 36px;
  bottom: 0;
}
@media screen and (max-width: 840px) {
  .first-view__image {
    max-width: none;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
}
.first-view__text {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding-bottom: 97px;
}
@media screen and (max-width: 840px) {
  .first-view__text {
    gap: 0;
    padding-block-start: 32%;
  }
}
.first-view__lead {
  max-width: 795px;
  display: block;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 841px) and (max-width: 1400px) {
  .first-view__lead {
    max-width: clamp(550px, 550px + 183 * (100vw - 841px) / 569, 733px);
  }
}
.first-view__button {
  transition: 0.3s ease;
  display: block;
  max-width: 365px;
}
.first-view__button:hover {
  transform: translateY(-10px);
}
.first-view__cta {
  display: flex;
  gap: 15px;
}
@media screen and (min-width: 841px) and (max-width: 1280px) {
  .first-view__cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 840px) {
  .first-view__cta {
    width: 100%;
    flex-direction: column;
    grid-column: 1/2;
    grid-row: 3/4;
    gap: 0;
  }
}

/* -------------------------
イントロダクション
------------------------- */
.introduction {
  background-image: url(../img/introduction-bg-pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 840px) {
  .introduction {
    background-image: url(../img/introduction-bg-sp.webp);
  }
}
.introduction__inner {
  padding-block: 100px 140px;
}
.introduction__title {
  padding-block-start: 30px;
}
@media screen and (max-width: 840px) {
  .introduction__title {
    padding-block-start: 43px;
  }
}
@media screen and (max-width: 430px) {
  .introduction__title .c-title__level2--small {
    white-space: nowrap;
    display: inline-block;
    padding-bottom: 10px;
  }
}
.introduction__text {
  padding-block-start: 60px;
  line-height: 1.6;
  font-weight: 500;
}
.introduction__text--color {
  color: var(--color-blue);
  font-weight: 900;
}
@media screen and (max-width: 840px) {
  .introduction__text {
    font-size: 15px;
  }
}

/* -------------------------
AI OMNI AGENTとは？
------------------------- */
.about {
  background-color: var(--color-skyblue2);
}
.about__inner {
  position: relative;
  padding-block: 100px 107px;
}
@media screen and (max-width: 840px) {
  .about__inner {
    padding-block: 100px;
  }
}
.about__top {
  position: absolute;
  right: 16%;
  top: -30px;
  max-width: 450px;
}
@media screen and (max-width: 840px) {
  .about__top {
    width: 73%;
    right: auto;
    left: 50%;
    top: -80px;
    transform: translateX(-50%);
  }
}
.about__title {
  padding-block-start: 60px;
}
.about__lead {
  letter-spacing: 0.05rem;
  padding-block-start: 60px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
}
@media screen and (max-width: 840px) {
  .about__lead {
    padding-block-start: 18px;
    font-size: 18px;
    letter-spacing: 0.04rem;
    line-height: 1.4;
  }
}
.about__image {
  display: inline-block;
  padding-block-start: 52px;
}
@media screen and (max-width: 840px) {
  .about__image {
    padding-block-start: 62px;
  }
}

@media screen and (max-width: 840px) {
  .about-card {
    padding: 0 15px;
  }
}
.about-card__title {
  font-size: clamp(25px, 25px + 10 * (100vw - 390px) / 1050, 35px);
  font-weight: 900;
  line-height: 1.4;
  color: var(--color-black);
}
.about-card__title .icon {
  max-width: 57px;
  display: inline-block;
}
@media screen and (max-width: 840px) {
  .about-card__title .icon {
    max-width: 45px;
  }
}
.about-card--first {
  margin-block-start: 70px;
  display: grid;
  column-gap: 3px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}
@media screen and (max-width: 840px) {
  .about-card--first {
    display: flex;
    flex-direction: column;
    margin-block-start: 80px;
  }
  .about-card--first .about-card__text {
    order: 1;
  }
}
.about-card--first .about-card__list {
  display: flex;
  flex-wrap: wrap;
  grid-column: 2/3;
  grid-row: 1/3;
  gap: 10px;
  margin-block-start: 20px;
}
@media screen and (max-width: 840px) {
  .about-card--first .about-card__list {
    order: 2;
    margin-block-start: 25px;
    justify-content: center;
  }
}
.about-card--first .about-card__list li {
  background-color: var(--color-blue);
  border-radius: 4px;
  display: flex;
  font-size: 15px;
  gap: 5px;
  padding: 9px 10px;
  align-items: center;
  line-height: 1.4;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-white);
  width: calc(50% - 5px);
}
@media screen and (max-width: 840px) {
  .about-card--first .about-card__list li {
    padding: 10px;
  }
}
.about-card--first .about-card__icon {
  text-align: center;
  width: 40px;
  flex-shrink: 0;
  display: inline-block;
}
.about-card--first .about-card__icon img {
  height: 20px;
}
@media screen and (max-width: 840px) {
  .about-card--first .about-card__icon img {
    height: 25px;
  }
}
.about-card--first .about-card__title {
  grid-row: 1/2;
  grid-column: 1/2;
}
@media screen and (max-width: 840px) {
  .about-card--first .about-card__title {
    display: flex;
    gap: 15px;
    order: 1;
    letter-spacing: 0.05rem;
  }
}
.about-card--first .about-card__link {
  color: var(--color-blue);
  font-size: 16px;
  line-height: 1.4;
  text-align: right;
  font-weight: 500;
  grid-column: 1/2;
  grid-row: 2/3;
  letter-spacing: 0.05rem;
  padding-inline-end: 22px;
  padding-block-start: 30px;
}
.about-card--first .about-card__link .icon {
  padding-left: 8px;
}
@media screen and (max-width: 840px) {
  .about-card--first .about-card__link {
    order: 3;
    text-align: center;
    padding-inline-end: 0;
    margin-block-start: -5px;
  }
}
.about-card--second {
  display: flex;
  gap: 65px;
  padding-block-start: 65px;
}
@media screen and (max-width: 840px) {
  .about-card--second {
    flex-direction: column;
    gap: 12px;
    padding-block-start: 80px;
  }
}
.about-card--second .about-card__title {
  margin-block-end: 45px;
}
@media screen and (max-width: 840px) {
  .about-card--second .about-card__title {
    display: flex;
    gap: 15px;
    margin-block-end: 26px;
  }
}
.about-card--second .about-card__detail {
  line-height: 1.5;
}
.about-card--second .about-card__image {
  max-width: 480px;
  padding-block-start: 20px;
}
@media screen and (max-width: 840px) {
  .about-card__detai {
    line-height: 1.6;
  }
}

/* -------------------------
普段の業務のこんなお悩みに対応できます
------------------------- */
.trouble__inner {
  padding-block: 100px 45px;
}
.trouble__title {
  padding-block-start: 60px;
}
@media screen and (max-width: 840px) {
  .trouble__title {
    padding-block-start: 48px;
  }
}

.trouble-card {
  display: flex;
  gap: 38px;
}
@media screen and (max-width: 840px) {
  .trouble-card {
    flex-direction: column;
    gap: 40px;
  }
}
.trouble-card__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.trouble-card__image {
  max-width: 361px;
  display: inline-block;
  margin-top: 59px;
}
@media screen and (max-width: 840px) {
  .trouble-card__image {
    margin: 60px auto 0 auto;
    width: 78%;
  }
}
.trouble-card__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 558px;
}
@media screen and (max-width: 840px) {
  .trouble-card__list {
    gap: 25px;
  }
}
.trouble-card__item {
  position: relative;
  background-color: var(--color-white);
  padding: 25px;
  box-shadow: 2px 4px 16px rgba(62, 188, 210, 0.32);
  border-radius: 20px;
}
@media screen and (max-width: 840px) {
  .trouble-card__item {
    padding: 15px;
    border-radius: 10px;
  }
}
.trouble-card__item p {
  line-height: 1.6;
}
@media screen and (max-width: 840px) {
  .trouble-card__item p {
    font-size: 14px;
  }
}
.trouble-card__item:after {
  content: "";
  width: 35px;
  height: 30px;
  position: absolute;
  bottom: -28px;
  right: 8%;
  background-image: url(../img/trouble-card-balloon.png);
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
}
@media screen and (max-width: 840px) {
  .trouble-card__item:after {
    right: 14%;
  }
}
.trouble-card__title {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 800;
  color: var(--color-blue);
  padding-block-end: 5px;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 840px) {
  .trouble-card__title {
    line-height: 1.4;
    padding-block-end: 7px;
  }
}

.point {
  background-image: url(../img/point-bg-pc.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 41px 0 100px 0;
}
@media screen and (min-width: 841px) and (max-width: 1280px) {
  .point {
    background-size: contain;
  }
}
@media screen and (max-width: 840px) {
  .point {
    background-image: url(../img/point-bg-sp.webp);
    padding: 4px 0 100px 0;
    min-height: 300px;
  }
}
@media screen and (max-width: 400px) {
  .point {
    background-size: contain;
  }
}
.point__inner {
  text-align: center;
}
.point__title {
  text-align: center;
  font-size: clamp(28px, 28px + 7 * (100vw - 390px) / 1050, 35px);
  line-height: 1.4;
  letter-spacing: 0.04rem;
  font-weight: 900;
}
@media screen and (max-width: 840px) {
  .point__title {
    letter-spacing: 0.1rem;
    line-height: 1.5;
  }
}
.point__title .logo {
  inline-size: min(507px, 100%);
  display: inline-block;
}
@media screen and (max-width: 840px) {
  .point__title .logo {
    inline-size: min(277px, 100%);
  }
}
.point__title .bottom {
  vertical-align: sub;
  font-size: clamp(18px, 18px + 17 * (100vw - 390px) / 1050, 35px);
}
.point__subtitle {
  display: inline-block;
  padding-block-start: 60px;
  width: 96%;
}
@media screen and (max-width: 840px) {
  .point__subtitle {
    padding-block-start: 40px;
    width: 100%;
  }
}
.point__image {
  max-width: 440px;
  display: inline-block;
  padding-block: 60px 50px;
}
@media screen and (max-width: 840px) {
  .point__image {
    padding-block: 45px 25px;
    width: 80%;
  }
}
.point__arrow {
  max-width: 35px;
  display: block;
  margin: 0 auto;
  padding-block: 65px;
}
@media screen and (max-width: 840px) {
  .point__arrow {
    padding-block: 30px 42px;
  }
}

.point-card {
  max-width: 800px;
  margin: 0 auto;
}
.point-card__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 840px) {
  .point-card__list {
    gap: 20px;
  }
}
.point-card__item {
  padding: 15px 20px;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    #ece5f1 0%,
    rgba(236, 229, 241, 0.4) 100%
  );
  display: flex;
  gap: 15px;
  text-align: left;
}
@media screen and (max-width: 840px) {
  .point-card__item {
    flex-direction: column;
    align-items: center;
    padding: 11px 14px;
    gap: 13px;
  }
}
.point-card__item p {
  line-height: 1.6;
}
@media screen and (max-width: 840px) {
  .point-card__item p {
    font-size: 14px;
  }
}
.point-card__item:nth-child(2) .point-card__image {
  width: 100%;
}
.point-card__item:last-child .point-card__image {
  width: 84%;
  max-width: 268px;
  margin-block-start: 10px;
}
.point-card__image {
  max-width: 250px;
}
@media screen and (max-width: 840px) {
  .point-card__image {
    max-width: none;
    width: 77%;
  }
}
.point-card__number {
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  line-height: 1;
  background: var(--color-gradient);
  background-size: 90px 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 840px) {
  .point-card__number {
    letter-spacing: 0.15rem;
  }
}
.point-card__title {
  color: var(--color-purple);
  line-height: 1.4;
  font-weight: 700;
  padding-block-end: 15px;
  padding-block-start: 7px;
  font-size: 20px;
}

@media screen and (max-width: 840px) {
  .point-support {
    padding-inline: 15px;
  }
}
.point-support__title {
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: 0.04rem;
  font-size: clamp(20px, 20px + 15 * (100vw - 390px) / 1050, 35px);
}
.point-support__title .color {
  color: var(--color-blue);
  position: relative;
  overflow: visible;
  display: inline-block;
  padding: 0 29px 0 20px;
}
@media screen and (max-width: 840px) {
  .point-support__title .color {
    padding: 0 17px 0 7px;
  }
}
.point-support__title .color:before {
  content: "";
  width: clamp(11px, 11px + 12 * (100vw - 390px) / 1050, 23px);
  height: clamp(11px, 11px + 9 * (100vw - 390px) / 1050, 20px);
  display: block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  top: 9px;
  left: -7px;
  background-image: url(../img/double-quotation-mark.svg);
}
@media screen and (max-width: 840px) {
  .point-support__title .color:before {
    top: 5px;
  }
}
.point-support__title .color:after {
  content: "";
  width: clamp(11px, 11px + 12 * (100vw - 390px) / 1050, 23px);
  height: clamp(11px, 11px + 9 * (100vw - 390px) / 1050, 20px);
  display: block;
  position: absolute;
  top: 6px;
  transform: rotate(180deg);
  right: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/double-quotation-mark.svg);
}
@media screen and (max-width: 840px) {
  .point-support__title .color:after {
    top: 5px;
  }
}
.point-support__lead {
  line-height: 1.6;
  padding-block-start: 40px;
}
@media screen and (max-width: 840px) {
  .point-support__lead {
    text-align: left;
    font-size: 15px;
  }
}

.support-card {
  padding-block-start: 60px;
}
@media screen and (max-width: 840px) {
  .support-card {
    padding-block-start: 40px;
  }
}
.support-card__body {
  padding: 15px 16px 30px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 840px) {
  .support-card__body {
    padding: 15px 16px 30px 16px;
  }
}
.support-card__image {
  display: inline-block;
}
.support-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
@media screen and (max-width: 840px) {
  .support-card__list {
    flex-direction: column;
    gap: 21px;
    max-width: 400px;
    margin: 0 auto;
    align-items: center;
  }
}
.support-card__item {
  text-align: center;
  width: calc(33.3333333333% - 20px);
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  box-shadow: 4px 4px 16px rgba(62, 188, 210, 0.24);
}
@media screen and (max-width: 840px) {
  .support-card__item {
    width: 100%;
    height: max-content;
    align-self: flex-start;
  }
}
.support-card__lead {
  font-size: 14px;
  line-height: 1.2;
  color: var(--color-blue);
}
.support-card__title {
  padding-block-start: 8px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-blue);
}
.support-card__text {
  font-size: 14px;
  line-height: 1.4;
  padding-block-start: 8px;
}
@media screen and (max-width: 840px) {
  .support-card__text {
    padding-block-start: 10px;
  }
}
.support-card__link {
  color: #85cde1;
  font-weight: 500;
  padding-block-start: 18px;
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}

/* -------------------------
営業活動をフルサポート
------------------------- */
.sales {
  background-image: url(../img/sales-bg-pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 840px) {
  .sales {
    background-image: url(../img/sales-bg-sp.webp);
  }
}
.sales__title {
  margin-block-start: 15px;
  line-height: 1.7;
  font-size: clamp(28px, 28px + 22 * (100vw - 390px) / 1050, 50px);
}
.sales__title .image {
  max-width: 513px;
}
@media screen and (max-width: 840px) {
  .sales__title {
    margin-block-start: 29px;
    line-height: 2;
  }
}
.sales__title .small {
  font-size: clamp(18px, 18px + 32 * (100vw - 390px) / 1050, 50px);
}
@media screen and (max-width: 840px) {
  .sales__title .small {
    display: inline-block;
  }
}
.sales__inner {
  padding-block: 100px;
}
.sales__body {
  padding-block-start: 54px;
}
@media screen and (max-width: 840px) {
  .sales__body {
    padding-block-start: 49px;
  }
}
.sales__lead {
  line-height: 1.4;
  padding-block-start: 5px;
}
@media screen and (max-width: 840px) {
  .sales__lead {
    font-size: 10px;
    padding-block-start: 10px;
  }
}
.sales__text {
  padding-block: 50px 43px;
  line-height: 1.6;
}
@media screen and (max-width: 840px) {
  .sales__text {
    font-size: 15px;
    padding-block: 43px 40px;
  }
}
.sales__subtitle {
  font-size: clamp(20px, 20px + 15 * (100vw - 390px) / 1050, 35px);
  line-height: 1.6;
  font-weight: 900;
}
.sales__subtitle .image {
  max-width: clamp(200px, 200px + 100 * (100vw - 390px) / 1050, 300px);
  display: inline-flex;
}
.sales__subtitle .number {
  display: inline-flex;
  max-width: clamp(79px, 79px + 53 * (100vw - 390px) / 1050, 132px);
}
.sales__subtitle .space {
  margin-left: -7px;
}
.sales__button {
  margin: 0 auto 0 0;
}
@media screen and (max-width: 840px) {
  .sales__button {
    margin: 0 auto;
  }
}

/* -------------------------
選ばれる理由
------------------------- */
.reason__lead {
  background-size: 45em 100%;
}
@media screen and (max-width: 840px) {
  .reason__lead {
    letter-spacing: normal;
  }
}
.reason {
  background-image: url(../img/reason-bg-pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 840px) {
  .reason {
    background-image: url(../img/reason-bg-sp.webp);
  }
}
.reason__inner {
  padding-block: 100px;
}
@media screen and (max-width: 840px) {
  .reason__inner {
    padding-block: 96px;
  }
}
.reason__title {
  padding-block-start: 60px;
  margin-top: -5px;
}
@media screen and (max-width: 840px) {
  .reason__title {
    text-align: center;
    padding-block-start: 65px;
  }
}
.reason__title .image {
  display: inline-flex;
  max-width: clamp(283px, 283px + 217 * (100vw - 390px) / 1050, 500px);
}
.reason__title {
  font-size: clamp(28px, 28px + 22 * (100vw - 390px) / 1050, 50px);
  line-height: 1.4;
}
@media screen and (max-width: 840px) {
  .reason .small {
    font-size: clamp(18px, 18px + 32 * (100vw - 390px) / 1050, 50px);
    display: inline-block;
  }
}

.reason-point {
  padding-block-start: 60px;
}
.reason-point__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 840px) {
  .reason-point__list {
    gap: 25px;
  }
}
.reason-point__number {
  letter-spacing: 0.1rem;
  text-align: left;
  background: linear-gradient(225deg, #3ebcd2 0%, #865ea5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  opacity: 0.5;
  background-size: 130px 100%;
  font-size: clamp(16px, 16px + 14 * (100vw - 390px) / 1050, 30px);
  text-transform: uppercase;
  line-height: 1.3;
  font-family: var(--font-family-en);
}
.reason-point__title {
  font-weight: 800;
  line-height: 1.3;
  text-align: left;
  letter-spacing: 0.1rem;
  font-size: clamp(20px, 20px + 15 * (100vw - 390px) / 1050, 35px);
}
@media screen and (max-width: 840px) {
  .reason-point__title {
    margin-block-start: 9px;
    letter-spacing: 0.05rem;
  }
}
@media screen and (max-width: 840px) {
  .reason-point__summary {
    font-size: 15px;
  }
}
.reason-point__item {
  background-color: var(--color-white);
  padding: 30px;
}
@media screen and (max-width: 840px) {
  .reason-point__item {
    padding: 30px 15px;
  }
}
.reason-point__item--01 {
  padding: 30px 30px 10px 30px;
}
@media screen and (max-width: 840px) {
  .reason-point__item--01 {
    padding: 30px 15px;
  }
}
.reason-point__item--02 {
  text-align: right;
}
.reason-point__item--02 .reason-point__link {
  margin: 30px 0 0 auto;
}
@media screen and (max-width: 840px) {
  .reason-point__item--02 .reason-point__link {
    margin: 30px auto 0 auto;
  }
}
.reason-point__item--02 .reason-point__text {
  margin-block-start: 20px;
}
.reason-point__item--04 {
  text-align: right;
}
.reason-point__item--04 .reason-point__image {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
.reason-point__item--04 .reason-point__link {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 840px) {
  .reason-point__item--04 .reason-point__link {
    margin: 30px auto 0 auto;
  }
}
.reason-point__body {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
@media screen and (max-width: 840px) {
  .reason-point__body {
    flex-direction: column;
    align-items: center;
  }
}
.reason-point__image {
  max-width: 370px;
}
@media screen and (max-width: 840px) {
  .reason-point__image {
    width: 91%;
  }
}
.reason-point__summary {
  padding-block-start: 20px;
}
@media screen and (max-width: 840px) {
  .reason-point__summary {
    padding-block-start: 13px;
  }
}
.reason-point__lead {
  text-align: left;
  font-size: clamp(15px, 15px + 5 * (100vw - 390px) / 1050, 20px);
  line-height: 1.4;
  font-weight: 600;
  color: var(--color-blue);
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 840px) {
  .reason-point__lead {
    letter-spacing: normal;
  }
}
.reason-point__text {
  text-align: left;
  margin-block-start: 35px;
  line-height: 1.6;
  font-weight: 500;
  background-color: var(--color-skyblue2);
  padding: 20px;
}
@media screen and (max-width: 840px) {
  .reason-point__text {
    font-size: 15px;
    letter-spacing: normal;
    padding: 20px 18px;
  }
}
.reason-point__text .bold {
  font-weight: 900;
  font-size: clamp(18px, 18px + 2 * (100vw - 390px) / 1050, 20px);
}
.reason-point__annotation {
  line-height: 1.4;
  font-weight: 500;
  text-align: right;
  padding-block-start: 32px;
}
@media screen and (max-width: 840px) {
  .reason-point__annotation {
    font-size: 10px;
    padding-block-start: 20px;
  }
}
.reason-point__link {
  min-width: 250px;
  font-size: 14px;
  padding: 12px 0;
}
.reason-point__detail dt {
  color: var(--color-blue);
  line-height: 1.4;
  font-weight: 600;
  position: relative;
  padding-left: 25px;
  text-align: left;
}
.reason-point__detail dt:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: var(--color-blue);
  border-radius: 100vw;
}
.reason-point__detail dd {
  text-align: left;
  padding-left: 25px;
  font-weight: 500;
  margin-block-start: 5px;
  line-height: 1.6;
  padding-block-end: 10px;
}

/* -------------------------
活用業務イメージ
------------------------- */
.scene {
  background-image: url(../img/scene-bg-pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 95px 0;
}
@media screen and (max-width: 840px) {
  .scene {
    background-image: url(../img/scene-bg-sp.webp);
    padding-block: 0;
  }
}
.scene__inner {
  padding-block: 100px;
}
@media screen and (max-width: 840px) {
  .scene__inner {
    padding-block: 94px;
  }
}
.scene__title {
  margin-block-start: 60px;
}
@media screen and (max-width: 840px) {
  .scene__title {
    margin-block-start: 30px;
  }
}

.scene-card__lead {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  padding-left: 16px;
  position: relative;
  margin-block-start: 65px;
}
.scene-card__lead:before {
  content: "";
  width: 3px;
  height: 40px;
  background-color: var(--color-blue);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.scene-card__item .scene-card__body {
  width: 33.3333333333%;
  padding: 20px 20px 75px 20px;
}
@media screen and (max-width: 840px) {
  .scene-card__item .scene-card__body {
    width: 100%;
    padding: 25px 15px;
  }
}
.scene-card__item--large .scene-card__body {
  position: relative;
  padding: 40px 80px;
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (max-width: 840px) {
  .scene-card__item--large .scene-card__body {
    padding: 15px;
  }
}
.scene-card__item--pickup {
  position: relative;
}
.scene-card__item--pickup::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 111px;
  z-index: 2;
  width: 48px;
  height: 108px;
  background-image: url(../img/reason-point-label-pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 840px) {
  .scene-card__item--pickup::before {
    top: 25px;
    left: auto;
    right: 44px;
    transform: rotate(90deg);
  }
}
.scene-card__item--other {
  padding-block-start: 20px;
}
.scene-card__item--other .scene-card {
  margin-block-start: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 840px) {
  .scene-card__item--other .scene-card {
    gap: 20px;
  }
}
.scene-card__item--other .scene-card__title {
  margin-block-start: 10px;
  padding-bottom: 8px;
}
@media screen and (max-width: 840px) {
  .scene-card__item--other .scene-card__title {
    margin-block-start: 17px;
    padding-bottom: 12px;
  }
}
.scene-card__item--other .scene-card__body[open] {
  padding: 20px 17px 56px 20px;
}
@media screen and (max-width: 840px) {
  .scene-card__item--other .scene-card__body[open] {
    padding: 20px 15px 56px 15px;
  }
}
.scene-card__item--other .scene-card__point {
  display: flex;
  align-items: flex-start;
  padding-block-start: 0;
  gap: 8px;
}
.scene-card__item--other .scene-card__point + .scene-card__point {
  margin-top: 10x;
}
.scene-card__item--other .scene-card__point dt {
  font-weight: 400;
  line-height: 1;
  padding: 0.2rem 0;
  min-width: 42px;
}
.scene-card__item--other .scene-card__point dd {
  margin-block-start: 0;
  color: #000;
  line-height: 1.3;
}
.scene-card__flex {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
@media screen and (max-width: 840px) {
  .scene-card__flex {
    flex-direction: column;
  }
}
.scene-card__number {
  background-color: var(--color-blue);
  color: var(--color-white);
  text-align: center;
  border-radius: 100vw;
  padding: 4px 0;
  display: inline-block;
  min-width: 120px;
}
@media screen and (max-width: 840px) {
  .scene-card__number {
    font-size: 14px;
  }
}
.scene-card__title {
  margin-block-start: 15px;
  font-size: clamp(20px, 20px + 4 * (100vw - 390px) / 1050, 24px);
  font-weight: 600;
  line-height: 1.2;
  position: relative;
  padding-bottom: 23px;
  border-bottom: solid 2px var(--color-blue);
}
@media screen and (max-width: 840px) {
  .scene-card__title {
    margin-block-start: 18px;
    line-height: 1.4;
  }
}
.scene-card__text {
  margin-block-start: 15px;
}
.scene-card .scene-card__accordion {
  color: var(--color-blue);
  text-align: right;
  margin-block-start: 38px;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.scene-card .scene-card__accordion .text {
  position: relative;
  padding-right: 20px;
  cursor: pointer;
}
.scene-card .scene-card__accordion .text::after {
  width: 16px;
  height: 16px;
  background-image: url(../img/icon-arrow-open.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  position: absolute;
  right: 0;
  top: 2px;
  /* ★ アニメーション用 */
  transform: rotate(0deg);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.scene-card__body {
  position: relative;
  margin-block-start: 47px;
  background-color: var(--color-white);
  border-radius: 20px;
}
.scene-card__point {
  padding-block-start: 25px;
}
.scene-card__point--summary {
  padding-block-start: 20px;
}
@media screen and (max-width: 840px) {
  .scene-card__point {
    display: flex;
    gap: 10px;
  }
}
.scene-card__point--result dt {
  background: var(--color-gradient);
}
.scene-card__point dt {
  padding: 4px 0;
  background-color: var(--color-blue);
  color: var(--color-white);
  display: inline-block;
  min-width: 120px;
  text-align: center;
}
@media screen and (max-width: 840px) {
  .scene-card__point dt {
    min-width: 50px;
    align-content: center;
  }
}
.scene-card__point dd {
  margin-block-start: 10px;
  font-weight: 500;
}
@media screen and (max-width: 840px) {
  .scene-card__point dd {
    line-height: 1.6;
    margin-block-start: 0;
    font-size: 15px;
  }
}

/* details が開いたら */
.scene-card__body[open] .scene-card__accordion .text::after {
  transform: rotate(180deg);
}

.scene-result {
  margin-block-start: 27px;
  padding: 40px;
  position: relative;
  background-color: var(--color-skyblue2);
}
@media screen and (max-width: 840px) {
  .scene-result {
    padding: 60px 15px 15px 15px;
  }
}
.scene-result__head {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 840px) {
  .scene-result__head {
    display: contents;
  }
}
.scene-result__head .scene-result__title {
  font-feature-settings: "halt";
  font-weight: 700;
  font-size: clamp(20px, 20px + 14 * (100vw - 390px) / 1050, 25px);
}
@media screen and (max-width: 840px) {
  .scene-result__head {
    line-height: 1.4;
  }
}
.scene-result__decoration {
  width: 100px;
  height: 100px;
  background: var(--color-gradient);
  border-radius: 100vw;
  display: flex;
  color: var(--color-white);
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 840px) {
  .scene-result__decoration {
    position: absolute;
    top: -10px;
    left: 15px;
    width: 60px;
    height: 60px;
  }
}
.scene-result__decoration p {
  text-align: center;
  font-weight: 400;
  line-height: 1;
  font-size: clamp(16px, 16px + 8 * (100vw - 390px) / 1050, 24px);
}
.scene-result__title {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 7px;
  display: inline;
  display: flex;
  align-items: stretch;
  position: relative;
}
@media screen and (max-width: 840px) {
  .scene-result__title {
    flex-direction: column;
    align-items: flex-start;
    font-size: 15px;
  }
}
.scene-result__title:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
}
@media screen and (max-width: 840px) {
  .scene-result__title:before {
    height: 2px;
    bottom: -9px;
  }
}
.scene-result__title--purple:before {
  background-color: var(--color-purple);
}
.scene-result__title--purple .scene-result__icon {
  color: var(--color-purple);
}
.scene-result__title--purple .color {
  color: var(--color-purple);
}
.scene-result__title--skyblue:before {
  background-color: var(--color-blue);
}
.scene-result__title--skyblue .scene-result__icon {
  color: var(--color-blue);
}
.scene-result__title--skyblue .color {
  color: var(--color-blue);
}
.scene-result__title--green:before {
  background-color: var(--color-green);
}
.scene-result__title--green .scene-result__icon {
  color: var(--color-green);
}
.scene-result__title--green .color {
  color: var(--color-green);
}
.scene-result__title .color {
  font-weight: 600;
  display: inline-block;
  margin-right: 20px;
}
.scene-result__top {
  align-items: stretch;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 840px) {
  .scene-result__top {
    align-items: center;
  }
}
.scene-result__text {
  font-weight: 500;
  line-height: 1.3;
  margin-block-start: 15px;
}
@media screen and (max-width: 840px) {
  .scene-result__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    margin-block-start: 20px;
  }
}
.scene-result__icon {
  height: 23px;
}
@media screen and (max-width: 840px) {
  .scene-result__icon {
    display: inline-block;
  }
}
.scene-result__list {
  margin-block-start: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 840px) {
  .scene-result__list {
    margin-block-start: 0;
  }
}
.scene-result__item {
  background-color: var(--color-white);
  padding: 10px;
}
@media screen and (max-width: 840px) {
  .scene-result__item {
    padding: 27px 10px 20px 10px;
  }
}

/* -------------------------
導入の流れ
------------------------- */
.flow {
  background-color: var(--color-white);
}
.flow__inner {
  padding-block: 100px 127px;
}
@media screen and (max-width: 840px) {
  .flow__inner {
    padding-block: 100px 90px;
  }
}
.flow__title {
  margin-block-start: 60px;
}
@media screen and (max-width: 840px) {
  .flow__title {
    font-size: 30px;
  }
}
.flow__wrapper {
  padding-block-start: 60px;
  position: relative;
}
.flow__wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-skyblue2);
  z-index: 0;
  top: 265px;
}
@media screen and (max-width: 840px) {
  .flow__wrapper::before {
    top: 268px;
    width: 100vw;
    background-color: transparent;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
.flow__list {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .flow__list {
    padding: 0 20px;
    justify-content: flex-start;
  }
}
.flow__icon {
  position: relative;
}
.flow__item {
  position: relative;
  width: 210px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 840px) {
  .flow__item {
    min-width: 210px;
  }
}
.flow__item:nth-child(2) .flow__node {
  background-color: #d8f2f6;
}
.flow__item:nth-child(3) .flow__node {
  background-color: #c5ebf1;
}
.flow__item:last-child .flow__node {
  background-color: #b2e4ed;
}
.flow__body {
  position: relative;
  padding-block-start: 30px;
}
.flow__node {
  font-family: var(--font-family-din);
  width: 36px;
  height: 36px;
  font-weight: 900;
  border-radius: 50%;
  background: var(--color-skyblue2);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: relative;
  font-weight: 500;
}
.flow__node:before {
  content: "";
  width: 3px;
  height: 30px;
  background-color: var(--color-skyblue2);
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
}
.flow__subtitle {
  font-size: clamp(20px, 20px + 5 * (100vw - 390px) / 1050, 25px);
  font-weight: 800;
  color: var(--color-blue);
  letter-spacing: 0.04rem;
  text-align: left;
  margin-block-start: 10px;
}
@media screen and (max-width: 840px) {
  .flow__subtitle {
    margin-block-start: 15px;
  }
}
.flow__text {
  margin-block-start: 10px;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
}

.scroll-hint-icon-wrap {
  display: none;
}
.scroll-hint-icon-wrap.is-active {
  display: block;
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.4;
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  top: 39%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon-white {
  background: #13356f;
  opacity: 0.4;
  box-shadow: none;
  width: 112px;
  padding: 20px;
  border-radius: 10px;
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon-white .scroll-hint-text {
  display: none;
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon-white:before {
  background-image: url(../img/scrollable-icon.svg);
  width: 59px;
  height: 73px;
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon-white:after {
  display: none;
}

/* -------------------------
よくある質問
------------------------- */
.faq__title {
  font-size: clamp(32px, 32px + 18 * (100vw - 390px) / 1050, 50px);
}
.faq {
  background-color: var(--color-skyblue2);
}
.faq__lead {
  background-size: 50em 100%;
}
.faq__inner {
  padding-block: 100px;
}
.faq__title {
  margin-block-start: 56px;
}
@media screen and (max-width: 840px) {
  .faq__title {
    margin-block-start: 49px;
    letter-spacing: 0.2rem;
  }
}
.faq__list {
  margin-block-start: 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 840px) {
  .faq__list {
    margin-block-start: 54px;
    gap: 20px;
  }
}
.faq__details {
  background: #9edde8;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 840px) {
  .faq__details {
    min-height: 78px;
    align-content: center;
  }
}
.faq__summary {
  cursor: pointer;
  position: relative;
  padding: 30px 52px 30px 58px;
  list-style: none;
  font-weight: 600;
  position: relative;
}
@media screen and (min-width: 431px) and (max-width: 840px) {
  .faq__summary {
    padding: 30px 50px 30px 75px;
  }
}
@media screen and (max-width: 430px) {
  .faq__summary {
    font-size: 15px;
    padding: 15px 50px 15px 75px;
    line-height: 1.6;
    font-feature-settings: "palt";
  }
}
.faq__summary::before {
  content: "Q";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  line-height: 33px;
  text-align: center;
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-blue);
  font-weight: 600;
}
@media screen and (max-width: 840px) {
  .faq__summary::before {
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 48px;
  }
}
.faq__summary::-webkit-details-marker {
  display: none;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  width: 25px;
  height: 3px;
  background-color: #6190b4;
  transform: translateY(-50%);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
@media screen and (max-width: 840px) {
  .faq__icon::before,
  .faq__icon::after {
    right: 20px;
  }
}
.faq__icon::after {
  transform: translateY(-50%) rotate(90deg);
}
.faq__details[open] .faq__icon::after {
  opacity: 0;
  transform: translateY(-50%) rotate(-90deg) scaleX(0);
}
.faq__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq__details[open] .faq__content {
  max-height: 500px;
}
.faq__content p {
  margin: 0;
  padding: 27px 15px 27px 58px;
  font-weight: 400;
  line-height: 1.6;
  background-color: var(--color-white);
  position: relative;
}
@media screen and (max-width: 840px) {
  .faq__content p {
    padding: 15px 15px 17px 70px;
    font-size: 15px;
  }
}
.faq__content p a {
  text-decoration: underline;
  color: var(--color-blue);
}
.faq__content p::before {
  content: "A";
  position: absolute;
  left: 15px;
  top: 22px;
  width: 34px;
  height: 34px;
  line-height: 33px;
  text-align: center;
  border-radius: 999px;
  background: #6190b4;
  color: var(--color-white);
  font-weight: 600;
}
@media screen and (max-width: 840px) {
  .faq__content p::before {
    width: 50px;
    height: 50px;
    line-height: 48px;
    font-size: 20px;
    top: 17px;
  }
}

/* -------------------------
お問い合わせ
------------------------- */
.contact {
  background-color: #dfe5ea;
}
.contact__inner {
  padding-block: 60px;
}
@media screen and (max-width: 840px) {
  .contact__inner {
    padding-block: 100px;
  }
}
.contact__title {
  text-align: center;
  font-size: clamp(27px, 27px + 13 * (100vw - 390px) / 1050, 40px);
}
.contact__lead {
  text-align: center;
  line-height: 2;
  font-weight: 600;
  padding-block-start: 10px;
}
@media screen and (max-width: 840px) {
  .contact__lead {
    font-size: 20px;
    padding-block-start: 4px;
  }
}
.contact__list {
  display: flex;
  gap: 12px;
  margin-block-start: 40px;
}
@media screen and (max-width: 840px) {
  .contact__list {
    flex-direction: column;
    gap: 25px;
    margin-block-start: 72px;
  }
}
.contact__item {
  position: relative;
  text-align: center;
  width: 33.3333333333%;
  padding: 70px 16px 30px 16px;
  border-radius: 20px;
  background-color: var(--color-white);
}
@media screen and (max-width: 840px) {
  .contact__item {
    width: 100%;
    padding: 70px 16px 22px 16px;
  }
}
.contact__item:first-child .contact__image {
  top: -40px;
  max-width: 68px;
}
.contact__item:nth-child(2) .contact__image {
  top: -10px;
  max-width: 72px;
}
.contact__item:last-child .contact__image {
  top: -40px;
  max-width: 116px;
}
@media screen and (max-width: 840px) {
  .contact__item:last-child .contact__image {
    top: -20px;
    max-width: 103px;
  }
}
.contact__image {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.contact__subtitle {
  color: var(--color-blue);
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
}
.contact__text {
  font-size: 14px;
  font-feature-settings: "halt";
  font-weight: 600;
  line-height: 1.3;
  margin-block: 15px;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 840px) {
  .contact__text {
    line-height: 1.6;
    margin-block: 17px;
  }
}
.contact__text .small {
  font-size: 14px;
}

/* ------------------------------------------------------------ */
/* 固定ページ - 共通*/
/* ------------------------------------------------------------ */
.c-head {
  background-image: url(../img/head-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  place-items: center;
  padding-block: 180px 90px;
}
@media screen and (max-width: 840px) {
  .c-head {
    padding-block: 135px 40px;
    padding-inline: 15px;
  }
}
.c-head__inner {
  display: grid;
  place-items: center;
}
.c-head__title {
  grid-row: 1/2;
  grid-column: 1/2;
  font-size: clamp(28px, 28px + 36 * (100vw - 390px) / 1050, 64px);
  line-height: 1.2;
  font-weight: 300;
  background: var(--color-gradient);
  background-size: 300px 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.c-head__title--en {
  font-family: var(--font-family-mon);
  font-weight: 200;
}
.c-head__lead {
  grid-row: 2/3;
  grid-column: 1/2;
  font-size: clamp(15px, 15px + 5 * (100vw - 390px) / 1050, 20px);
  line-height: 1.6;
  padding-block-start: 24px;
}
@media screen and (max-width: 840px) {
  .c-head__lead {
    text-align: center;
    padding-block-start: 18px;
  }
}

/* -------------------------
for Sales
------------------------- */
.sales-about {
  background: linear-gradient(360deg, #ecf8fa 59.62%, #ffffff 100%);
}
.sales-about__title {
  margin-block-start: 35px;
}
.sales-about__inner {
  padding-block: 95px;
  overflow: hidden;
}
.sales-about__title picture {
  display: inline-block;
  max-width: 570px;
  margin-block-start: 21px;
}
.sales-about__body {
  padding-block-start: 67px;
  display: flex;
  gap: 9px;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 840px) {
  .sales-about__body {
    flex-direction: column;
    padding-block-start: 60px;
    font-size: 15px;
    letter-spacing: normal;
  }
}
.sales-about__text {
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 840px) {
  .sales-about__text {
    font-feature-settings: "halt";
  }
}
.sales-about__image {
  max-width: 519px;
}
@media screen and (max-width: 840px) {
  .sales-about__image {
    margin-block-start: 50px;
  }
}
.sales-about .sales-card {
  background-color: var(--color-white);
  border-radius: 20px;
  box-shadow: 0px 0px 15px rgba(62, 188, 210, 0.4);
  width: 100%;
  max-width: 1200px;
}
.sales-about .sales-card__inner {
  max-width: 879px;
}
.sales-about .sales-card__list {
  margin-block-start: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 840px) {
  .sales-about .sales-card__list {
    margin-block-start: 80px;
    align-items: flex-end;
    gap: 26px;
  }
}
.sales-about .sales-card--first {
  margin: 0 auto 0 0;
  padding: 40px;
}
@media screen and (max-width: 840px) {
  .sales-about .sales-card--first {
    margin-left: 15px;
    padding: 40px 30px 10px 30px;
  }
}
.sales-about .sales-card--first .sales-card__inner {
  margin: 0 0 0 auto;
}
.sales-about .sales-card--first .sales-card__flex {
  margin-left: auto;
  gap: 55px;
}
@media screen and (max-width: 840px) {
  .sales-about .sales-card--first .sales-card__flex {
    flex-direction: column;
    gap: 5px;
  }
}
.sales-about .sales-card--first .sales-card__title {
  margin-block-start: 10px;
}
.sales-about .sales-card--first .sales-card__title .image {
  max-width: 453px;
}
.sales-about .sales-card--middle {
  margin: 0 0 0 auto;
  padding: 40px;
}
@media screen and (max-width: 840px) {
  .sales-about .sales-card--middle {
    margin: 0 0 0 15px;
    margin-right: 15px;
    padding: 40px 40px 13px 40px;
  }
}
.sales-about .sales-card--middle .sales-card__flex {
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  gap: 44px;
}
@media screen and (max-width: 840px) {
  .sales-about .sales-card--middle .sales-card__flex {
    flex-direction: column;
    gap: 21px;
  }
}
@media screen and (max-width: 840px) {
  .sales-about .sales-card--middle .sales-card__image {
    max-width: none;
    width: 113%;
    margin-left: 6%;
  }
}
.sales-about .sales-card--middle .sales-card__title {
  line-height: 1.6;
}
.sales-about .sales-card--middle .sales-card__title .color {
  letter-spacing: -0.3rem;
}
.sales-about .sales-card--middle .sales-card__title .color svg {
  margin-bottom: -3px;
  display: inline-block;
}
@media screen and (max-width: 840px) {
  .sales-about .sales-card--middle .sales-card__annotation {
    margin-block-start: 20px;
  }
}
.sales-about .sales-card--last {
  margin: 0 auto 0 0;
  padding: 0 40px;
  position: relative;
}
@media screen and (max-width: 840px) {
  .sales-about .sales-card--last {
    margin-left: 15px;
    padding: 40px 0 57px 30px;
  }
}
.sales-about .sales-card--last .sales-card__inner {
  margin: 0 0 0 auto;
}
.sales-about .sales-card--last .sales-card__title {
  line-height: 1.6;
}
.sales-about .sales-card--last .arrow {
  position: absolute;
  left: 60%;
  transform: translateX(-50%);
  bottom: -40px;
  width: 35px;
}
@media screen and (max-width: 840px) {
  .sales-about .sales-card--last .arrow {
    left: 46%;
  }
}
.sales-about .sales-card--last .sales-card__flex {
  margin-left: auto;
  gap: 55px;
  align-items: center;
}
@media screen and (max-width: 840px) {
  .sales-about .sales-card--last .sales-card__flex {
    flex-direction: column;
    gap: 35px;
    align-items: flex-start;
  }
}
.sales-about .sales-card--last .sales-card__title .text {
  letter-spacing: -0.4rem;
}
.sales-about .sales-card--last .sales-card__title .image {
  max-width: 209px;
  letter-spacing: -0.3rem;
}
.sales-about .sales-card--last .sales-card__title .image svg {
  margin-bottom: -3px;
  display: inline-block;
}
.sales-about .sales-card--last .sales-card__image {
  max-width: 350px;
}
@media screen and (max-width: 840px) {
  .sales-about .sales-card--last .sales-card__image {
    max-width: 346px;
  }
}
.sales-about .sales-card__lead {
  padding-block-start: 17px;
  color: #6190b4;
  font-weight: 900;
  line-height: 1.3;
  font-size: clamp(15px, 15px + 5 * (100vw - 390px) / 1050, 20px);
  border-bottom: solid 1px #6190b4;
}
@media screen and (max-width: 840px) {
  .sales-about .sales-card__lead {
    line-height: 1.5;
    padding-block-start: 24px;
  }
}
.sales-about .sales-card__flex {
  display: flex;
  max-width: 960px;
}
.sales-about .sales-card__image {
  max-width: 310px;
}
@media screen and (max-width: 840px) {
  .sales-about .sales-card__image {
    max-width: none;
    width: 100%;
  }
}
.sales-about .sales-card__title {
  font-weight: 900;
  font-size: clamp(28px, 28px + 7 * (100vw - 390px) / 1050, 35px);
}
@media screen and (max-width: 840px) {
  .sales-about .sales-card__title {
    line-height: 1.5;
    margin-block-start: 14px;
  }
}
.sales-about .sales-card__text {
  margin-block-start: 15px;
  line-height: 1.4;
}
@media screen and (max-width: 840px) {
  .sales-about .sales-card__text {
    margin-block-start: 20px;
    font-size: 15px;
  }
}
.sales-about .sales-card__annotation {
  line-height: 1.4;
  font-size: 12px;
  font-weight: 500;
  margin-block-start: 18px;
}
@media screen and (max-width: 840px) {
  .sales-about .sales-card__annotation {
    display: none;
  }
}
.sales-about .sales-card__annotation--sp {
  display: none;
}
@media screen and (max-width: 840px) {
  .sales-about .sales-card__annotation--sp {
    display: block;
    margin-block-start: 33px;
    font-size: 10px;
  }
}

@media screen and (max-width: 840px) {
  .for-sales .scene__inner {
    padding-block: 94px 70px;
  }
}
@media screen and (max-width: 840px) {
  .for-sales .scene-card {
    margin-block-start: 60px;
  }
}
.for-sales .scene-card__title {
  line-height: 1.5;
}
@media screen and (max-width: 840px) {
  .for-sales .scene-card__title {
    line-height: 1.4;
  }
}
.for-sales .scene-card__body {
  margin-block-start: 50px;
}
@media screen and (max-width: 840px) {
  .for-sales .scene-card__body {
    margin-block-start: 10px;
    margin-bottom: 31px;
  }
}
.for-sales .scene-card__item--large:not(:first-child) .scene-card__body {
  padding: 40px 80px 70px 80px;
}
@media screen and (max-width: 840px) {
  .for-sales .scene-card__item--large:not(:first-child) .scene-card__body {
    padding: 26px 15px 44px 15px;
  }
}
.for-sales .scene {
  padding-block: 0;
}
.for-sales .scene-card .scene-card__accordion {
  right: 80px;
}
@media screen and (max-width: 840px) {
  .for-sales .scene-card .scene-card__accordion {
    right: 15px;
    bottom: 9px;
    font-size: 14px;
  }
}
.for-sales .scene-card__open .text {
  color: var(--color-blue);
  font-weight: 600;
  padding-right: 30px;
  position: relative;
  text-align: right;
}
.for-sales .scene-card__open .text::after {
  width: 20px;
  height: 20px;
  background-image: url(../img/icon-arrow-open-blue.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(0deg);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 840px) {
  .for-sales .scene-card__open .text::after {
    width: 16px;
    height: 16px;
  }
}

.scene-card__details[open] .scene-card__open .text::after {
  transform: rotate(180deg);
}

/* -------------------------
導入の流れ
------------------------- */
main.flow .c-head__title {
  background-size: 400px 100%;
}
main.flow .flow__wrapper {
  padding-block-start: 36px;
}
@media screen and (max-width: 840px) {
  main.flow .flow__inner {
    padding-block: 62px 15px;
  }
}
main.flow .flow__wrapper::before {
  top: 244px;
}

@media screen and (max-width: 840px) {
  .flow-summary {
    max-width: 400px;
    margin: 0 auto;
  }
}
.flow-summary__number {
  font-family: var(--font-family-din);
  font-size: 20px;
  font-weight: 600;
  line-height: 35px;
  color: var(--color-blue);
  width: 35px;
  background-color: var(--color-skyblue2);
  height: 35px;
  text-align: center;
  flex-shrink: 0;
  border-radius: 100%;
  position: relative;
  z-index: 0;
}
.flow-summary__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.flow-summary__list:before {
  content: "";
  width: 1px;
  height: 89%;
  background-color: var(--color-skyblue2);
  top: 0;
  position: absolute;
  left: 5%;
  z-index: 0;
}
.flow-summary__title {
  font-size: 20px;
  letter-spacing: 0.04rem;
  line-height: 1.3;
  font-weight: 900;
  color: var(--color-blue);
}
.flow-summary__item {
  display: flex;
  gap: 15px;
}
.flow-summary__text {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.flow-summary__button {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-blue);
  position: relative;
  padding-right: 26px;
  display: inline-block;
}
.flow-summary__button:after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background-image: url(../img/icon-arrow-open.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  right: 0;
  top: 0;
}

.flow-progress__list {
  margin-block-start: 63px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
.flow-progress__list:before {
  content: "";
  width: 1px;
  height: 93%;
  left: 26px;
  top: 0;
  background-color: var(--color-skyblue2);
  display: block;
  position: absolute;
  z-index: 0;
}
@media screen and (max-width: 840px) {
  .flow-progress__list:before {
    display: none;
  }
}
@media screen and (max-width: 840px) {
  .flow-progress__list {
    max-width: 400px;
    margin: 44px auto 0 auto;
  }
}
.flow-progress__item {
  position: relative;
}
.flow-progress__item:nth-child(2) .flow-progress__number {
  background-color: #d8f2f6;
}
.flow-progress__item:nth-child(3) .flow-progress__number {
  background-color: #c5ebf1;
}
.flow-progress__item:last-child .flow-progress__number {
  background-color: #b2e4ed;
}
.flow-progress__body {
  display: grid;
  grid-template-columns: 50px 160px auto;
  grid-template-rows: 1fr;
  gap: 25px;
}
@media screen and (max-width: 840px) {
  .flow-progress__body {
    column-gap: 15px;
    row-gap: 15px;
    grid-template-columns: auto 295px;
    grid-template-rows: auto auto;
  }
}
.flow-progress__number {
  font-family: var(--font-family-din);
  font-size: 30px;
  font-weight: 600;
  color: var(--color-blue);
  width: 50px;
  background-color: var(--color-skyblue2);
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 100%;
}
@media screen and (max-width: 840px) {
  .flow-progress__number {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
@media screen and (max-width: 840px) {
  .flow-progress__image {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
@media screen and (max-width: 840px) {
  .flow-progress__text {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media screen and (max-width: 840px) {
  .flow-progress__image {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
.flow-progress__title {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  color: var(--color-blue);
  padding-bottom: 16px;
  border-bottom: solid 1px var(--color-blue);
}
@media screen and (max-width: 840px) {
  .flow-progress__title {
    text-align: center;
  }
}
.flow-progress__detail {
  padding-block-start: 25px;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 840px) {
  .flow-progress__detail {
    padding-block-start: 20px;
    font-size: 15px;
    line-height: 1.6;
  }
}
.flow-progress__button {
  margin: 16px 0 0 auto;
}
@media screen and (max-width: 840px) {
  .flow-progress__button {
    margin: 12px auto 0 auto;
  }
}

.flow-bottom {
  background-color: var(--color-skyblue2);
}
.flow-bottom__inner {
  margin-block: 94px 87px;
  padding-block: 31px;
  display: flex;
  gap: 25px;
  justify-content: center;
}
@media screen and (max-width: 840px) {
  .flow-bottom__inner {
    flex-direction: column;
    margin-block: 36px 34px;
    align-items: center;
    gap: 8px;
  }
}
.flow-bottom__text {
  text-align: center;
  align-items: center;
  font-weight: 600;
  line-height: 1.4;
}
.flow-bottom__image {
  width: 188px;
  flex-shrink: 0;
}

.flow-trial__image {
  margin-block-start: 25px;
  display: inline-block;
  margin-block: 30px;
}
@media screen and (max-width: 840px) {
  .flow-trial__image {
    margin-block-start: 20px;
    margin-block-end: 0;
  }
}

/* -------------------------
個別相談
------------------------- */
main.consultation .c-head__title {
  background-size: 540px 100%;
}

.consultation__inner {
  padding-block: 100px;
}
.consultation__title {
  padding-block-start: 60px;
}
.consultation__text {
  padding-block-start: 35px;
}
@media screen and (max-width: 840px) {
  .consultation__text {
    padding-block-start: 22px;
    line-height: 1.5;
  }
}

.consultation-form {
  padding-block-start: 60px;
}
.consultation-form iframe {
  height: 2000px;
}
@media screen and (max-width: 840px) {
  .consultation-form iframe {
    height: 2300px;
  }
}

/* -------------------------
資料
------------------------- */
main.download .c-head__title {
  background-size: 400px 100%;
}
main.download .c-title__lead {
  background-size: 23em 100%;
}

.documents + .documents .documents__inner {
  padding-block-start: 0;
}
.documents__inner {
  padding-block: 100px;
}
.documents__title {
  padding-block: 60px;
}

.documents-form {
  padding-block-start: 60px;
}
.documents-form iframe {
  height: 2300px;
}
@media screen and (max-width: 840px) {
  .documents-form iframe {
    height: 2600px;
  }
}

.documents-card__list--all {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 840px) {
  .documents-card__list--all {
    flex-direction: column;
    gap: 25px;
  }
}
.documents-card__list--all .documents-card__item {
  width: calc(33.3333333333% - 10px);
  flex-direction: column;
  padding: 30px 15px;
  gap: 15px;
}
@media screen and (max-width: 840px) {
  .documents-card__list--all .documents-card__item {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}
.documents-card__list--all .documents-card__item {
  justify-content: flex-start;
}
.documents-card__list--all .documents-card__body {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.documents-card__list--all .documents-card__button {
  margin: 0 auto;
  width: 100%;
}
.documents-card__list--all .documents-card__title {
  flex-grow: 1;
  line-height: 1.3;
  font-weight: 600;
  padding-block: 15px;
}
@media screen and (max-width: 840px) {
  .documents-card__list--all .documents-card__title {
    font-size: 14px;
  }
}
.documents-card__item {
  background-color: var(--color-skyblue2);
  display: flex;
  gap: 40px;
  padding: 30px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 840px) {
  .documents-card__item {
    flex-direction: column;
    gap: 15px;
    padding: 30px 15px;
  }
}
.documents-card__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.documents-card__label {
  border-radius: 100vw;
  outline: solid 1px #1b2c49;
  color: #1e2b3d;
  font-size: 12px;
  font-weight: 600;
  line-height: 2;
  padding: 0 1rem;
  text-align: center;
  display: inline-block;
}
.documents-card__text {
  margin-block-start: 15px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 840px) {
  .documents-card__text {
    font-size: 14px;
  }
}
.documents-card__button {
  margin: 0 0 0 auto;
  margin-block-start: 15px;
  min-width: 280px;
}
@media screen and (max-width: 840px) {
  .documents-card__button {
    width: 100%;
    min-width: none;
    margin: 0 auto;
    margin-block-start: 15px;
    padding: 0.8rem 0;
  }
}
.documents-card__image {
  max-width: 420px;
  flex-shrink: 0;
}

/* -------------------------
セミナー
------------------------- */
main.seminar .c-head__title {
  background-size: 400px 100%;
}
main.seminar .c-title__lead {
  background-size: 23em 100%;
}

.seminar + .seminar .seminar__inner {
  padding-block-start: 0;
}

.seminar__inner {
  padding-block: 100px;
}
.seminar__title {
  padding-block-start: 60px;
}
.seminar__lead {
  line-height: 1.6;
  font-weight: 500;
  margin-block-start: 35px;
}
@media screen and (max-width: 840px) {
  .seminar__lead {
    margin-block-start: 18px;
  }
}

.seminar-card__body {
  flex-grow: 1;
}
.seminar-card__list {
  margin-block-start: 60px;
}
.seminar-card__list--all {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 840px) {
  .seminar-card__list--all {
    flex-direction: column;
    gap: 25px;
  }
}
.seminar-card__list--all .seminar-card__item {
  width: calc(33.3333333333% - 10px);
  flex-direction: column;
  padding: 15px;
  gap: 15px;
}
@media screen and (max-width: 840px) {
  .seminar-card__list--all .seminar-card__item {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 30px 15px;
  }
}
.seminar-card__list--all .seminar-card__item {
  justify-content: flex-start;
}
.seminar-card__list--all .seminar-card__body {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.seminar-card__list--all .seminar-point__list {
  margin-block: 15px 35px;
  padding: 15px;
}
@media screen and (max-width: 840px) {
  .seminar-card__list--all .seminar-point__list {
    gap: 10px;
    margin-block: 15px 30px;
  }
}
.seminar-card__list--all .seminar-point__item {
  line-height: 1.2;
  font-size: 15px;
}
.seminar-card__list--all .seminar-card__button {
  margin: 0 auto;
  width: 100%;
  position: relative;
  padding: 10px 0;
}
.seminar-card__list--all .seminar-card__button:before {
  content: "クリックで日程確認";
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  position: absolute;
  top: -18px;
  color: #000;
  left: 50%;
  transform: translateX(-50%);
}
.seminar-card__list--all .seminar-card__title {
  flex-grow: 1;
  line-height: 1.3;
  font-weight: 600;
  padding-block-start: 10px;
}
@media screen and (max-width: 840px) {
  .seminar-card__list--all .seminar-card__title {
    font-size: 14px;
  }
}
.seminar-card__item {
  background-color: var(--color-skyblue2);
  display: flex;
  gap: 30px;
  padding: 30px;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 840px) {
  .seminar-card__item {
    flex-direction: column;
    gap: 25px;
    padding: 30px 15px;
  }
}
.seminar-card__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.seminar-card__label {
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  line-height: 2;
  padding: 0 0.9rem;
  text-align: center;
  display: inline-block;
}
.seminar-card__text {
  margin-block-start: 15px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 840px) {
  .seminar-card__text {
    font-size: 14px;
  }
}
.seminar-card__button {
  margin: 0 0 0 auto;
  margin-block-start: 15px;
  min-width: 280px;
}
@media screen and (max-width: 840px) {
  .seminar-card__button {
    width: 100%;
    min-width: none;
    margin: 0 auto;
    margin-block-start: 15px;
    padding: 0.8rem 0;
  }
}
.seminar-card__image {
  max-width: 420px;
  flex-shrink: 0;
}

.seminar-point__title {
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
}
@media screen and (max-width: 840px) {
  .seminar-point__title {
    text-align: center;
  }
}
.seminar-point__list {
  margin-block-start: 15px;
  background-color: var(--color-white);
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 840px) {
  .seminar-point__list {
    padding: 21px 15px;
  }
}
.seminar-point__item {
  position: relative;
  font-weight: 500;
  line-height: 1;
  padding-left: 23px;
}
.seminar-point__item::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 18px;
  height: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  background-image: url(../img/icon-check-blue.svg);
}

/* -------------------------
会社概要
------------------------- */
.listed__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding-block: 16px;
}
@media screen and (max-width: 840px) {
  .listed__inner {
    padding-block: 28px;
  }
}
.listed__image {
  max-width: 43px;
}
.listed__text {
  font-size: 14px;
  line-height: 1.4;
}

.company .c-head__title {
  background-size: 520px 100%;
}

.company-about {
  background-image: url(../img/company-about-bg-pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 430px) {
  .company-about {
    background-image: url(../img/company-about-bg-sp.webp);
  }
}
.company-about .c-title__lead {
  text-align: left;
  background-size: 29em 100%;
}
.company-about__inner {
  padding-block: 98px 103px;
  text-align: center;
}
@media screen and (max-width: 430px) {
  .company-about__inner {
    padding-block: 75px 103px;
    min-height: clamp(1767px, 1767px + 83 * (100vw - 390px) / 40, 1850px);
  }
}
.company-about__title {
  background-size: 500px 100%;
  margin-block-start: 60px;
  text-align: left;
}
.company-about__image {
  display: inline-block;
  max-width: 960px;
  margin: 60px auto 0 auto;
  display: block;
}
@media screen and (max-width: 430px) {
  .company-about__image {
    display: none;
  }
}

.company-service {
  background-color: var(--color-skyblue2);
}
.company-service .c-title__lead {
  background-size: 25em 100%;
}
.company-service__inner {
  padding-block: 98px 100px;
}
.company-service__title {
  padding-block-start: 60px;
}
@media screen and (max-width: 840px) {
  .company-service__title {
    font-size: 35px;
  }
}
.company-service__lead {
  padding-block-start: 60px;
  line-height: 1.6;
}
@media screen and (max-width: 840px) {
  .company-service__lead {
    font-size: 15px;
    letter-spacing: 0.01rem;
  }
}
.company-service__list {
  margin-block-start: 90px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 840px) {
  .company-service__list {
    gap: 90px;
  }
}
.company-service__item--pat .company-service__card {
  padding: 25px 40px 10px 40px;
}
@media screen and (max-width: 840px) {
  .company-service__item--pat .company-service__card {
    padding: 25px 15px 10px 15px;
  }
}
.company-service__item--smb .company-service__detail {
  font-size: 12px;
}
.company-service__item--smb .company-service__card {
  padding: 25px 40px;
}
@media screen and (max-width: 840px) {
  .company-service__item--smb .company-service__card {
    padding: 25px 15px;
  }
}
.company-service__item--7h .company-service__detail {
  font-size: 12px;
}
.company-service__item--7h .company-service__card {
  padding: 25px 40px;
}
@media screen and (max-width: 840px) {
  .company-service__item--7h .company-service__card {
    padding: 25px 15px;
  }
}
.company-service__subtitle {
  line-height: 1.2;
  font-size: 20px;
  font-weight: 600;
  padding-left: 16px;
  position: relative;
}
.company-service__subtitle:before {
  content: "";
  width: 3px;
  height: 40px;
  background-color: var(--color-blue);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.company-service__card {
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 25px 40px;
  margin-block-start: 30px;
}
@media screen and (max-width: 840px) {
  .company-service__card {
    margin-block-start: 16px;
  }
}
.company-service__head {
  display: flex;
  gap: 25px;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: solid 2px #13356f;
}
@media screen and (max-width: 840px) {
  .company-service__head {
    flex-direction: column;
    gap: 15px;
    padding-bottom: 23px;
  }
}
.company-service__name {
  max-width: 260px;
  flex-shrink: 0;
}
@media screen and (max-width: 840px) {
  .company-service__name {
    max-width: none;
    width: 100%;
  }
}
.company-service__text {
  line-height: 1.6;
}
@media screen and (max-width: 840px) {
  .company-service__text {
    font-size: 15px;
  }
}
.company-service__image {
  margin-block-start: 25px;
  display: inline-block;
}
.company-service__detail {
  font-size: 10px;
  line-height: 1.4;
  font-weight: 500;
  padding-block-start: 25px;
  text-align: right;
}
@media screen and (max-width: 840px) {
  .company-service__detail {
    text-align: left;
  }
}
.company-service__button {
  background-color: #3777c1;
  color: var(--color-white);
  display: inline-block;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 500;
  padding: 12px 11px 12px 36px;
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: center;
  max-width: 265px;
  margin: 25px auto 0 auto;
}
@media screen and (max-width: 840px) {
  .company-service__button {
    padding: 9px 11px 9px 27px;
    max-width: 247px;
  }
}

.company-detail .c-title__lead {
  text-align: left;
}
.company-detail__inner {
  padding-block: 100px;
}
.company-detail__title {
  padding-block-start: 60px;
}
.company-detail__table {
  width: 100%;
  border-collapse: collapse;
  margin-block-start: 60px;
}
@media screen and (max-width: 840px) {
  .company-detail__table {
    font-size: 14px;
    margin-block-start: 55px;
  }
}
.company-detail__table th {
  font-weight: 600;
  width: 160px;
  position: relative;
  text-align: center;
  align-content: center;
}
@media screen and (max-width: 840px) {
  .company-detail__table th {
    width: 80px;
    font-size: 14px;
  }
}
.company-detail__table th p {
  flex-grow: 1;
}
.company-detail__table th:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-blue);
  position: absolute;
  bottom: -1px;
  left: 0;
}
.company-detail__table td {
  align-content: center;
}
.company-detail__table td p {
  font-weight: 500;
  padding-left: 40px;
}
@media screen and (max-width: 840px) {
  .company-detail__table td p {
    padding-left: 0;
  }
}
@media screen and (max-width: 840px) {
  .company-detail__table td {
    padding: 10px 0 10px 40px;
  }
}
.company-detail__table tr {
  height: 85px;
  border-bottom: solid 1px #dfe5ea;
  line-height: 2;
}
.company-detail__table tr.office td {
  padding-block: 15px;
}
@media screen and (max-width: 840px) {
  .company-detail__table tr.president td {
    padding-block: 26px;
  }
}
@media screen and (max-width: 840px) {
  .company-detail__table tr {
    line-height: 1.4;
    height: 50px;
  }
}
.company-detail__table tr p + p {
  margin-block-start: 10px;
}

/* -------------------------
よくある質問
------------------------- */
.faq__category {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 840px) {
  .faq__category {
    gap: 10px;
  }
}
.faq__category li {
  border-radius: 5px;
  background-color: var(--color-blue);
  color: var(--color-white);
  width: calc(25% - 30px);
  text-align: center;
}
@media screen and (max-width: 840px) {
  .faq__category li {
    width: calc(50% - 5px);
  }
}
.faq__category li a {
  display: flex;
  justify-content: center;
  gap: 15px;
  line-height: 1.5;
  align-items: center;
  font-weight: 600;
  padding: 28px 0;
}
@media screen and (max-width: 840px) {
  .faq__category li a {
    font-size: 15px;
    padding: 0;
    height: 80px;
  }
}

/* -------------------------
フッター
------------------------- */
.footer {
  background-color: #f4f6f8;
}
.footer__inner {
  padding-block: 57px 158px;
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  justify-items: end;
}
@media screen and (max-width: 840px) {
  .footer__inner {
    padding: 98px 30px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
}
.footer__left {
  grid-row: 1/2;
  grid-column: 1/2;
}
.footer__right {
  max-width: 318px;
  grid-row: 1/3;
  grid-column: 2/3;
  align-self: end;
}
@media screen and (max-width: 840px) {
  .footer__right {
    grid-row: 2/3;
    grid-column: 1/2;
    max-width: 400px;
    margin-block-start: 64px;
  }
}
.footer__logo {
  max-width: 255px;
}
@media screen and (max-width: 840px) {
  .footer__logo {
    max-width: 163px;
    margin-bottom: 35px;
  }
}
.footer__nav {
  width: 90%;
  margin-bottom: 30px;
  margin-block: 40px 40px;
}
@media screen and (max-width: 840px) {
  .footer__nav {
    margin-bottom: 53px;
    width: 100%;
    margin-block: 7px 40px;
    margin-bottom: 39px;
  }
}
.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 17px;
}
@media screen and (max-width: 840px) {
  .footer__nav ul {
    gap: 15px;
    gap: 13px 15px;
  }
}
.footer__nav ul li {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-black);
}
@media screen and (max-width: 840px) {
  .footer__nav ul li {
    font-size: 12px;
  }
}
.footer__cta {
  margin: 0 auto 0 0;
}
.footer__link {
  margin-bottom: 30px;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
}
.footer__link:hover {
  color: var(--color-black);
}
.footer__text {
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  margin-block-start: 15px;
}
@media screen and (max-width: 840px) {
  .footer__text {
    line-height: 1.5;
    margin-block-start: 10px;
  }
}
.footer__copyright {
  font-size: 12px;
  margin-block-start: 60px;
  grid-column: 1/2;
  grid-row: 2/3;
  justify-self: flex-start;
}
@media screen and (max-width: 840px) {
  .footer__copyright {
    margin-block-start: 22px;
    grid-row: 3/4;
    grid-column: 1/2;
  }
}

/* -------------------------
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 */
