html {
    font-size: 62.5%; /* 100% = 16pxなので、10pxに指定 */
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  width: 100%;
  /* max-width: 1440px; */
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
  font-size: 1.6rem;
  cursor: pointer;
}

h1 {
  margin: 0;
  padding: 0;
}

.br-SP {
  display: none;
}

.span-SP {
  display: none;
}

.header-PC {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  height: 81px;
  padding: 10px 24px;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
  
.header-PC .fss {
  position: relative;
  width: 190px;
  z-index: 1;
  aspect-ratio: 3.15;
  object-fit: cover;
}
  
.header-PC .navbar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: relative;
  flex: 0 0 auto;
  z-index: 0;
  background-color: #ffffff;
}
  
.header-PC .tab {
  position: relative;
  width: fit-content;
  font-weight: 400;
  color: var(--black);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}
  
.header-PC .CTA {
  display: flex;
  flex-direction: column;
  width: 220px;
  height: 56px;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  position: relative;
  background-color: var(--accent);
  border-radius: 28px;
}
  
.header-PC .title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-weight: 700;
  color: var(--black);
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.header-SP {
  display: flex;
  /* width: 100%; */
  width: 100vw !important;
  max-width: 100% !important;
  height: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header-SP .fss {
  position: relative;
  width: 120px;
  aspect-ratio: 3.15;
  object-fit: cover;
}

/* tablet用ハンバーガーメニュー */
.header-tablet {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
  align-items: center;
}

.header-tablet .fss {
  width: 170px;
  aspect-ratio: 3.15;
  position: relative;
}

.header-tablet .momota-sky-AI {
  display: block;
  width: 172px;
  aspect-ratio: 1.09;
  margin: 20px auto;
}

.header-tablet .CTA {
  display: flex;
  flex-direction: column;
  width: 250px;
  height: 62px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 20px 30px;
  position: relative;
  background-color: var(--accent);
  border-radius: 31px;
}

.hamburger-menu {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  z-index: 1002;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
  background-color: #fff;
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background-color: #fff;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.slide-menu.overlay-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: var(--main);
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  overflow-x: hidden;
}

.slide-menu.overlay-menu.active {
  right: 0;
}

.menu-list {
  list-style: none;
  padding: 80px 0 0 0;
  margin: 0;
}

.menu-list li {
  margin: 0;
  padding: 0;
}

.menu-list a {
  display: block;
  padding: 15px 30px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.menu-list a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* SP用ハンバーガーメニュー */
.btn-trigger {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: #fff;
  border: none;
  z-index: 1000;
}

.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
}

.btn-trigger, .btn-trigger span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}

.btn-trigger span:nth-of-type(1) {
  top: 8px;
}

.btn-trigger span:nth-of-type(2) {
  top: 20px;
}

.btn-trigger span:nth-of-type(3) {
  bottom: 4px;
}

.btn-trigger.active {
  background-color: var(--main);
}

.btn-trigger.active span {
  background-color: #fff;
}

.btn-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}

.btn-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.btn-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-14px) rotate(-45deg);
  transform: translateY(-14px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  align-items: center;
  padding: 80px 24px;
  background-color: var(--main);
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.nav-overlay_list {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
}

.nav-overlay_item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-weight: 700;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: 0;
}

.nav-overlay.active .nav-overlay_item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay_item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay_item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay_item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay_item:nth-child(4) { transition-delay: 0.4s; }

.nav-overlay_link {
  display: inline-block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
  transition: color .3s;
}

.header-SP .CTA {
  display: flex;
  flex-direction: column;
  width: 342px;
  height: 62px;
  align-items: center;
  justify-content: center;
  padding: 20px 80px;
  position: relative;
  background-color: var(--accent);
  border-radius: 31px;
}

.header-SP .momota-sky-AI {
  position: absolute;
  width: 172px;
  height: 158px;
  aspect-ratio: 1.09;
  left: 109px;
  top: 564px;
}

.header-tablet {
  display: none;
}

.header-SP {
  display: none;
}

.FV {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  background-image: url(../img/top-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 81px;
  /* width: 100vw; */
  width: 100%;
  background-position: calc(100vw - 1440px) center;
}

.FV .frame {
  display: flex;
  height: 720px;
  align-items: flex-start;
  gap: 90px;
  padding-top: 90px;
  padding-left: calc((100vw - 1100px) / 2);
  padding-right: calc((100vw - 1100px) / 2);
  position: relative;
  align-self: stretch;
  width: 100%;
  /* background-image: url(../img/top-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: content-box;
  background-origin: content-box; */
}

.FV .container {
  display: flex;
  flex-direction: column;
  width: 500px;
  align-items: flex-start;
  gap: 40px;
  position: relative;
}

.FV .div {
  display: flex;
  flex-direction: column;
  width: 440px;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
}

.FV .frame-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.FV .frame-3 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  position: relative;
  flex: 0 0 auto;
}

.FV .frame-4 {
  display: flex;
  align-items: baseline;
  gap: 4px;
  position: relative;
  flex: 0 0 auto;
  height: 77px;
}

.FV .title {
  display: inline-block;
  justify-content: center;
  width: fit-content;
  font-weight: 700;
  font-size: 6.4rem;
  letter-spacing: 1.28px;
  line-height: 1;
  position: relative;
  color: var(--black);
}

.FV .text-wrapper {
  display: inline-flex;
  align-items: flex-end;
  width: auto;
  height: auto;
  text-shadow: 0 0 12px #fad11d;
  font-weight: 700;
  font-size: 7.6rem;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  color: var(--black);
}

.FV .title-2 {
  display: inline-block;
  width: auto;
  height: auto;
  font-weight: 700;
  font-size: 4.0rem;
  text-align: center;
  letter-spacing: 1.6px;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  color: var(--black);  
}

.FV .title-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  position: relative;
  flex: 0 0 auto;
  height: 77px;
}

.FV .p {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-weight: 700;
  font-size: 6.4rem;
  letter-spacing: 2.56px;
  line-height: 1;
  position: relative;
  color: var(--black);
}

.FV .span {
  letter-spacing: 1.64px;  
}

.FV .text-wrapper-2 {
  font-size: 4.0rem;
  letter-spacing: 0.64px;
}

.FV .title-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0;
  line-height: 48px;
  position: relative;
  color: var(--black);
}

.FV .description {
  position: relative;
  align-self: stretch;
  font-weight: 400;
  color: var(--black);
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 24px;
}

.FV .button {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  flex: 0 0 auto;
  cursor: pointer;
}

.FV .CTA {
  all: unset;
  box-sizing: border-box;
  display: block;
  flex-direction: column;
  height: 72px;
  align-items: center;
  justify-content: center;
  padding: 24px 56px;
  position: relative;
  background-color: var(--accent);
  border-radius: 36px;
  width: 100%;
  height: 100%;
}

.FV .title-4 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-weight: 700;
  font-size: 2.0rem;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
  position: relative;
  color: var(--black);
}

.FV .image-container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
}

.FV .frame-5 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

.FV .frame-6 {
  display: inline-flex;
  align-items: center;
  gap: 190px;
  position: relative;
  flex: 0 0 auto;
}

.FV .image {
  position: relative;
  width: 152px;
  height: 152px;
}

.FV .RAG {
  position: relative;
  width: 152px;
  height: 152px;
  margin-top: -60px;
}

.FV .FV-SP {
  display: none;
}

.solution {
  width: 100%;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution .fss {
  width: 190px;
  /* height: 60px; */
  aspect-ratio: 190 / 60;
}

.solution .solution-X {
  width: 24px;
  height: 23.38px;
  margin: 0 32px;
}

.solution p {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--main);
}

.solution .solution-p1 {
  margin-right: 32px;
}

.problem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 96px;
  padding-left: calc((100vw - 1100px) / 2);
  padding-right: calc((100vw - 1100px) / 2);
  position: relative;
  background-color: #ececec;
}
  
.problem .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}
  
.problem .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}
  
.problem .text-wrapper {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-weight: 700;
  color: var(--black);
  font-size: 40px;
  text-align: center;
  letter-spacing: 0;
  line-height: 48px;
  white-space: nowrap;
}
  
.problem .rectangle {
  position: relative;
  width: 80px;
  height: 6px;
  background: linear-gradient(
    150deg,
    rgba(30, 180, 250, 1) 0%,
    rgba(3, 72, 143, 1) 100%
  );
}
  
.problem .description {
  position: relative;
  align-self: stretch;
  font-weight: 400;
  color: var(--black);
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
}
  
.problem .contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}
  
.problem .list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}
  
.problem .row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}
  
.problem .frame {
  align-items: center;
  gap: 16px;
  align-items: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}
  
.problem .article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  background-color: #ffffff;
  border-radius: 6px;
  border: 1px solid;
  border-color: var(--main);
}
  
.problem .frame-wrapper {
  align-items: center;
  gap: 24px;
  flex: 1;
  flex-grow: 1;
  display: flex;
  position: relative;
}
  
.problem .div {
  flex-direction: column;
  align-items: center;
  gap: 32px;
  flex: 1;
  flex-grow: 1;
  display: flex;
  position: relative;
}
  
.problem .user {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-weight: 500;
  color: var(--main);
  font-size: 2.0rem;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
}
  
.problem .frame-2 {
  align-items: center;
  gap: 24px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}
  
.problem .img {
  position: relative;
  width: 146px;
  height: 146px;
  aspect-ratio: 1;
}
  
.problem .frame-3 {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  display: flex;
  position: relative;
}
  
.problem .frame-4 {
  align-items: flex-start;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  position: relative;
}
  
.problem .text-wrapper-2 {
  width: fit-content;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -1.00px;
  font-weight: 400;
  color: var(--black);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
}
  
.problem .text-wrapper-3 {
  position: relative;
  display: block;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin-top: -1.00px;
  font-weight: 400;
  color: var(--black);
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 24px;
}
    
.problem .for-scroll {
  position: relative;
  width: 179px;
  height: 80px;
}

.problem .problem-SP {
  display: none;
}

.solution-SP {
  display: none;
}
  
.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 96px;
  padding-left: calc((100vw - 1100px) / 2);
  padding-right: calc((100vw - 1100px) / 2);
  padding-bottom: 16px;
  position: relative;
  background-color: var(--main);
}
  
.service .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 56px 60px;
  align-self: stretch;
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  position: relative;
  flex: 0 0 auto;
}
  
.service .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}
  
.service .frame {
  flex-direction: column;
  align-items: center;
  gap: 8px;
  display: inline-flex;
  position: relative;
  flex: 0 0 auto;
}
  
.service .text-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-weight: 700;
  color: var(--black);
  font-size: 40px;
  text-align: center;
  letter-spacing: 0;
  line-height: 48px;
  white-space: nowrap;
}
  
.service .rectangle {
  position: relative;
  width: 80px;
  height: 6px;
  background: linear-gradient(
    150deg,
    rgba(30, 180, 250, 1) 0%,
    rgba(3, 72, 143, 1) 100%
  );
}
  
.service .description {
  text-align: center;
  position: relative;
  width: fit-content;
  font-weight: 400;
  color: var(--black);
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 24px;
}
  
.service .contents {
  align-items: center;
  gap: 40px;
  align-self: stretch;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 0 0 auto;
}
  
.service .diagram {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 496px;
  background-image: url(../img/diagram.png);
  background-size: 100% 100%;
}

.service .scroll-wrapper {
  width: 100%;
  justify-content: flex-end;
  margin-bottom: -30px;
}

.service .scroll-text {
  background: linear-gradient(
      150deg,
      rgba(30, 180, 250, 1) 0%,
      rgba(3, 72, 143, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.6rem;
  margin-right: 6px;
  margin-top: -2px;
}

.service .double-scroll-image {
  width: 13px;
  height: 11.99px;
}

.service .scroll-area {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  position: relative;
}

.service .scroll-area img {
  width: 1100px;
  height: auto;
  display: block;
}
  
.service .about-dify {
  display: inline-flex;
  flex-direction: column;
  height: 56px;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  position: relative;
  background-color: var(--main);
  border-radius: 8px;
}
  
.service .div {
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-top: -0.50px;
  margin-bottom: -0.50px;
  display: inline-flex;
  position: relative;
  flex: 0 0 auto;
}
  
.service .title-2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}
  
.service .mingcute-right-line {
  position: relative;
  width: 25px;
  height: 25px;
  overflow: hidden;
  aspect-ratio: 1;
}
  
.service .group {
  position: relative;
  height: 100%;
  background-image: url(../img/vector.svg);
  background-size: 100% 100%;
}
  
.service .vector {
  position: absolute;
  width: 31.95%;
  height: 55.47%;
  top: 22.31%;
  left: 34.71%;
}
  
.service .container-wrapper {
  width: 100%;
  align-items: flex-end;
  justify-content: center;
  padding-top: 56px;
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 0 0 auto;
}
  
.service .container-2 {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
}
  
.service .image {
  position: relative;
  width: 460px;
  aspect-ratio: 460 / 315;
  background-image: url(../img/dify-image.png);
  background-size: cover;
  background-position: 50% 50%;
}
  
.service .container-3 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
  width: calc(100% - 484px);
}
  
.service .p {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-weight: 700;
  color: var(--black);
  font-size: 40px;
  letter-spacing: 0;
  line-height: 48px;
}
  
.service .span {
  font-weight: 700;
  color: #333333;
  font-size: 40px;
  letter-spacing: 0;
  line-height: 48px;
}
  
.service .text-wrapper-2 {
  font-size: 4.8rem;
}
  
.service .description-2 {
  position: relative;
  font-weight: 400;
  color: var(--black);
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 24px;
  white-space: normal;
}
  
.service .vector-wrapper {
  position: relative;
  height: 100%;
  background-image: url(../img/dify-image.png);
  background-size: 100% 100%;
}
  
.service .momota {
  position: absolute;
  top: 1129px;
  left: -10px;
  width: 200px;
  aspect-ratio: 200 / 262;
}
  
.service .for-scroll {
  position: relative;
  width: 179px;
  height: 80px;
}

.service .service-SP,
.service .service-momota-SP,
.service .service-container-SP {
  display: none;
}

.merit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 96px;
  padding-left: calc((100vw - 1100px) / 2);
  padding-right: calc((100vw - 1100px) / 2);
  position: relative;
  background-color: #fff;
  width: 100%;
}

.merit .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.merit .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.merit .text-wrapper {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-weight: 700;
  color: var(--black);
  font-size: 4.0rem;
  text-align: center;
  letter-spacing: 0;
  line-height: 48px;
  white-space: nowrap;
}

.merit .rectangle {
  position: relative;
  width: 80px;
  height: 6px;
  background: linear-gradient(
    150deg,
    rgba(30, 180, 250, 1) 0%,
    rgba(3, 72, 143, 1) 100%
  );
}

.merit .description {
  position: relative;
  align-self: stretch;
  font-weight: 400;
  color: var(--black);
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
}

.merit .contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.merit .frame {
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.merit .article {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 96px;
  padding: 16px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 6px;
}

.merit .image-container {
  display: flex;
  width: 184px;
  height: 184px;
  align-items: flex-start;
  position: relative;
  aspect-ratio: 1;
}

.merit .element {
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  background-image: url(../img/business-efficiency.png);
  background-size: cover;
  background-position: 50% 50%;
}

.merit .div {
  gap: 24px;
  flex: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.merit .title-2 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-weight: 500;
  color: var(--main);
  font-size: 2.4rem;
  letter-spacing: 0;
  line-height: 28px;
}

.merit .subtitle {
  position: relative;
  align-self: stretch;
  font-weight: 400;
  color: var(--black);
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 24px;
}

.merit .element-2 {
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  background-image: url(../img/Labor-reduction.png);
  background-size: cover;
  background-position: 50% 50%;
}

.merit .element-3 {
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  background-image: url(../img/Quality-improvement.png);
  background-size: cover;
  background-position: 50% 50%;
}

.merit .element-4 {
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  background-image: url(../img/Internal-Knowledge.png);
  background-size: cover;
  background-position: 50% 50%;
}

.merit .for-scroll {
  position: relative;
  width: 179px;
  height: 80px;
}

.case {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 96px;
  padding-left: calc((100vw - 1100px) / 2);
  padding-right: calc((100vw - 1100px) / 2);
  position: relative;
  background-color: var(--sub);
  width: 100%;
}

.case .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.case .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.case .text-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-weight: 700;
  color: var(--black);
  font-size: 4.0rem;
  text-align: center;
  letter-spacing: 0;
  line-height: 48px;
  white-space: nowrap;
}

.case .rectangle {
  position: relative;
  width: 80px;
  height: 6px;
  background: linear-gradient(
    150deg,
    rgba(30, 180, 250, 1) 0%,
    rgba(3, 72, 143, 1) 100%
  );
}

.case .description {
  align-self: stretch;
  font-weight: 400;
  text-align: center;
  position: relative;
  color: var(--black);
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 24px;
}

.case .contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.case .list {
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
}

.case .row {
  /* align-items: stretch; */
  align-items: flex-start;
  align-self: stretch;
  width: 100%;
  display: flex;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
}

.case .frame-wrapper {
  display: flex;
  width: 542px;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  position: relative;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid;
  border-color: var(--main);
  flex: 1;
}

.case .frame-wrapper2 {
  display: flex;
  width: 542px;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  position: relative;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid;
  border-color: var(--main);
}

.case .frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.case .div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.case .title-2 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-weight: 500;
  color: var(--main);
  font-size: 2.0rem;
  letter-spacing: 0;
  line-height: 28px;
  height: 56px;
}

.case .frame-2 {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.case .image-container {
  display: flex;
  width: 80px;
  height: 80px;
  align-items: flex-start;
  position: relative;
  aspect-ratio: 1;
}

.case .mask-group {
  position: relative;
  width: 80px;
  height: 80px;
  aspect-ratio: 1;
}

.case .subtitle {
  display: flex;
  flex: 1;
  color: var(--black);
  position: relative;
  margin-top: -1.00px;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 24px;
}

.case .frame-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-radius: 6px;
  background-color: var(--sub);
  /* margin-top: auto; */
}

.case .frame-4 {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background: none;
  border: none;
}

.case .subtitle-2 {
  width: fit-content;
  color: var(--main);
  white-space: nowrap;
  position: relative;
  margin-top: -1.00px;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 24px;
}

.case .lsicon-down-filled {
  position: relative;
  width: 25px;
  height: 25px;
  aspect-ratio: 1;
}

.case .p {
  align-self: stretch;
  color: var(--black);
  font-size: 1.3rem;
  line-height: normal;
  position: relative;
  font-weight: 400;
  letter-spacing: 0;
}

.case .span {
  font-weight: 700;
}

.case .configuration-details {
  display: none;
}

.case .vector {
  position: absolute;
  width: 48.18%;
  height: 28.51%;
  top: 35.29%;
  left: 25.91%;
}

.case .frame-4.active + .configuration-details {
  display: block;
}

.case .frame-4.active .vector {
  transform: rotate(180deg);
}

.case .contents-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.case .frame-8 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.case .line {
  margin-left: -0.39px;
  position: relative;
  width: 13.78px;
  height: 16.63px;
  object-fit: cover;
}

.case .description-2 {
  width: fit-content;
  margin-top: -1.00px;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  color: var(--black);
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 24px;
}

.case .img {
  margin-right: -0.39px;
  position: relative;
  width: 13.78px;
  height: 16.63px;
  object-fit: cover;
}

.case .CTA {
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 72px;
  align-items: center;
  justify-content: center;
  padding: 24px 56px;
  position: relative;
  background-color: var(--accent);
  border-radius: 36px;
}

.case .title-3 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-weight: 700;
  color: var(--black);
  font-size: 2.0rem;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 96px;
  padding-left: calc((100vw - 1100px) / 2);
  padding-right: calc((100vw - 1100px) / 2);
  position: relative;
}

.flow .container {
  gap: 60px;
  align-self: stretch;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
}

.flow .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  /* margin-top: 96px; */
}

.flow .text-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-weight: 700;
  color: var(--black);
  font-size: 4.0rem;
  text-align: center;
  letter-spacing: 0;
  line-height: 48px;
  white-space: nowrap;
}

.flow .rectangle {
  position: relative;
  width: 80px;
  height: 6px;
  background: linear-gradient(
    150deg,
    rgba(30, 180, 250, 1) 0%,
    rgba(3, 72, 143, 1) 100%
  );
}

.flow .description {
  position: relative;
  align-self: stretch;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--black);
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
}

.flow .div {
  width: 100%;
  gap: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
  margin: 0 auto;
}

.flow .steps {
  position: relative;
  align-self: stretch;
  width: 100%;
  gap: 182px;
  flex: 0 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.flow .step-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--main);
}

.flow .div-SP {
  position: absolute;
  top: calc(50% - 16px);
  left: calc(50% - 13px);
  font-weight: 700;
  color: #fff;
  font-size: 2.16rem;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.flow .frame {
  display: inline-flex;
  height: 52px;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

.flow .no {
  position: relative;
  width: 50px;
  height: 50px;
}

.flow .ellipse-wrapper {
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  width: 60px;
  height: 60px;
  justify-content: center;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
}

.flow .ellipse {
  height: 50px;
  width: 50px;
  border-radius: 25px;
  aspect-ratio: 1;
  background: linear-gradient(
    150deg,
    rgba(30, 180, 250, 1) 0%,
    rgba(3, 72, 143, 1) 100%
  );
}

.flow .no-2 {
  position: absolute;
  top: calc(50% - 18px);
  left: calc(50% - 14px);
  font-weight: 700;
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.flow .frame-SP {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 0 24px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.flow .frame-2 {
  display: inline-flex;
  height: 1px;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

.flow .no-3 {
  position: relative;
  width: 50px;
  height: 50px;
  margin-top: -24.5px;
  margin-bottom: -24.5px;
}

.flow .vector-2 {
  width: 122px;
  margin-top: -0.5px;
  margin-bottom: -0.5px;
  position: relative;
  height: 2px;
}

.flow .frame-3 {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  flex: 0 0 auto;
}

.flow .frame-wrapper {
  display: flex;
  flex-direction: column;
  width: 170px;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.flow .frame-4 {
  display: flex;
  flex-direction: column;
  width: 170px;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
}

.flow .title-2 {
  position: relative;
  width: fit-content;
  margin-top: -1.0px;
  font-weight: 700;
  color: var(--main);
  font-size: 2.0rem;
  letter-spacing: 0;
  line-height: normal;
  white-space: normal;
}

.flow .subscribe {
  position: relative;
  width: 170px;
  font-weight: 400;
  color: var(--black);
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 24px;
}

.flow .title-3 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-weight: 600;
  color: var(--main);
  font-size: 2.0rem;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
}

.flow .contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.flow .element {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  margin-top: -2.5px;
  flex: 0 0 auto;
}

.flow .step {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
}

.flow .flow-SP {
  display: none;
}

.for-scroll {
  position: relative;
  width: 179px;
  height: 1px;
}

.price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding-top: 96px;
  padding-left: calc((100vw - 1100px) / 2);
  padding-right: calc((100vw - 1100px) / 2);
  padding-bottom: 96px;
  position: relative;
  background-color: #fff;
  width: 100%;
}

.price .container,
.price .div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.price .title {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-weight: 700;
  color: var(--black);
  font-size: 4.0rem;
  text-align: center;
  letter-spacing: 0;
  line-height: 48px;
  white-space: nowrap;
}

.price .rectangle {
  position: relative;
  width: 80px;
  height: 6px;
  background: linear-gradient(
    150deg,
    rgba(30, 180, 250, 1) 0%,
    rgba(3, 72, 143, 1) 100%
  );
}

.price .text-wrapper {
  position: relative;
  align-self: stretch;
  font-weight: 400;
  color: var(--black);
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
}

.price .list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.price .row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.price .item {
  border: 1px solid;
  border-color: var(--main);
  display: flex;
  flex-direction: column;
  height: 440px;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  background-color: var(--sub);
  border-radius: 6px;
}

.price .frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.price .title-2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  margin-top: -1.00px;
  font-weight: 500;
  color: var(--main);
  font-size: 4.8rem;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.price .title-3 {
  position: relative;
  align-self: stretch;
  font-weight: 400;
  color: var(--black);
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
}

.price .subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: normal;
  position: relative;
  align-self: stretch;
  color: var(--black);
  text-align: center;
  letter-spacing: 0;
}

.price .CTA {
  all: unset;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 64px;
  align-items: center;
  justify-content: center;
  padding: 20px 45.33px;
  position: relative;
  background-color: var(--accent);
  border-radius: 32px;
}

.price .title-4 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-weight: 700;
  color: var(--black);
  font-size: 2.0rem;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

.price .item-2 {
  display: flex;
  flex-direction: column;
  height: 440px;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  background-color: var(--sub);
  border-radius: 6px;
  border-color: var(--main);
}

.price .subtite-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 2.0rem;
  line-height: normal;
  position: relative;
  align-self: stretch;
  color: var(--black);
  text-align: center;
  letter-spacing: 0;
}

.price .NO-wrapper {
  position: absolute;
  top: -32px;
  left: 268px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  aspect-ratio: 1;
  background: linear-gradient(
    150deg,
    rgba(30, 180, 250, 1) 0%,
    rgba(3, 72, 143, 1) 100%
  );
}

.price .NO {
  position: absolute;
  top: 26px;
  left: 22px;
  width: 56px;
  font-weight: 700;
  color: #fff;
  font-size: 2.0rem;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.below-CTA {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  padding-top: 96px;
  padding-left: calc((100vw - 1100px) / 2);
  padding-right: calc((100vw - 1100px) / 2);
  padding-bottom: 96px;
  position: relative;
  background-color: var(--main);
}

.below-CTA .momota-sky-AI {
  position: absolute;
  top: 230px;
  left: 50%;
  transform: translateX(-50%) translateX(-400px);
  width: 205px;
  height: 208px;
  aspect-ratio: 0.98;
}

.below-CTA .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.below-CTA .title {
  margin-top: -1.00px;
  color: #fff;
  font-size: 4.0rem;
  line-height: 56px;
  position: relative;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  display: inline-block;
}

.below-CTA .description {
  position: relative;
  width: 520px;
  font-weight: 400;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0;
  line-height: 24px;
}

.below-CTA .title-wrapper {
  
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 72px;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  position: relative;
  background-color: var(--accent);
  border-radius: 36px;
}

.below-CTA .text-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 2.0rem;
  line-height: 24px;
  white-space: nowrap;
  position: relative;
  width: fit-content;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}

.below-CTA .below-CTA-SP {
  display: none;
}

#below-CTA-title-SP {
  display: none;
}

footer {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  /* padding-top: 40px;
  padding-left: calc(((100vw - 1190px) / 2) - 45px);
  padding-right: calc(((100vw - 1190px) / 2) + 45px);
  padding-bottom: 8px; */
  padding: 40px 24px 8px;
  position: relative;
  background-color: #fff;
}

footer .frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  width: 100%;
  margin: 0 auto;
}

footer .div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

footer .frame-2 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  position: relative;
  flex: 0 0 auto;
}

footer .frame-3 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
}

footer .fss {
  position: relative;
  width: 190px;
  height: 60px;
  aspect-ratio: 3.15;
  object-fit: cover;
}

footer .frame-4 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

footer .description {
  margin-top: -1.00px;
  line-height: 24px;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-weight: 400;
  color: var(--black);
  font-size: 1.6rem;
  letter-spacing: 0;
}

footer .text-wrapper {
  line-height: 2.0rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-weight: 400;
  color: var(--black);
  font-size: 1.6rem;
  letter-spacing: 0;
}

footer .frame-5 {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
}

footer .prime-twitter {
  position: relative;
  width: 25px;
  height: 25px;
  aspect-ratio: 1;
  background-image: url(../img/X-icon.png);
  background-size: 100% 100%;
}

footer .prime-instagram {
  position: relative;
  width: 25px;
  height: 25px;
  aspect-ratio: 1;
  background-image: url(../img/Instagram-icon.png);
  background-size: 100% 100%;
}

footer .prime-threads {
  position: relative;
  width: 25px;
  height: 25px;
  aspect-ratio: 1;
  background-image: url(../img/Threads-icon.png);
  background-size: 100% 100%;
}

footer .img {
  position: relative;
  width: 25px;
  height: 25px;
  aspect-ratio: 1;
}

footer .navigation {
  display: inline-flex;
  align-items: center;
  justify-items: center;
  gap: 40px;
  position: relative;
  flex: 0 0 auto;
  background-color: #fff;
  margin-right: 70px;
}

footer .page-top {
  display: flex;
  flex-direction: column;
  width: 41px;
  align-items: center;
  position: relative;
}

footer .icon-park-outline-up {
  position: relative;
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
}

footer .vector {
  position: absolute;
  width: 50%;
  height: 25%;
  top: 34.17%;
  left: 23.75%;
}

footer .PAGE-TOP {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  font-weight: 700;
  color: var(--main);
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0;
  line-height: 18px;
}

footer .p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-weight: 400;
  color: var(--black);
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

footer .footer-SP {
  display: none;
}

@media screen and (min-width: 1441px) {
  .FV {
    background-position: center;
    background-size: 1440px;
  }
}

@media screen and (max-width: 1440px) {
  .FV {
    background-position: bottom;
  }

  .FV .frame {
    gap: 90px;
  }
  
  /* footer {
    padding-left: 80px;
    padding-right: 170px;
  } */
}

@media screen and (max-width: 1140px) {
  .header-PC {
    display: none;
  }

  .header-tablet {
    display: flex;
  }

  .FV {
    background-size: 150%;
    background-position: bottom;
  }
}

@media screen and (max-width: 1120px) {
  .FV .frame {
    padding: 90px 10px 0;
    gap: calc(90px - (1120px - 100vw));
  }

  .problem,
  .service,
  .merit,
  .case,
  .flow,
  .price {
    padding: 96px 10px 0;
  }
  
  .service .service-SP {
    display: block;
  }

  .service .scroll-wrapper {
    display: flex;
  }

  .service .service-PC {
    display: none;
  }

  .service .momota {
    left: 10px;
  }

  .flow .steps {
    gap: calc((100% - 250px) / 5);
  }

  .price .item,
  .price .item-2 {
    padding: 20px;
  }

  .price .NO-wrapper {
    left: calc(268px - ((1120px - 100vw)/3));
  }

  .below-CTA {
    padding: 96px 10px;
  }
}

@media screen and (max-width: 1030px) {
  .FV .frame {
    gap: 0;
  }
}

@media screen and (max-width: 1000px) {
  .price {
    padding-bottom: 80px;
  }
  .price .row {
    flex-direction: column;
  }

  .price .item,
  .price .item-2 {
    width: 80%;
    margin: 0 auto;
  }

  .price .div {
    margin-bottom: 24px;
  }

  .price .NO-wrapper {
    left: calc(825px - ((1000px - 100vw)/1.1));
  }

  .below-CTA .momota-sky-AI {
    transform: translateX(-50%) translateX(-350px);
  }
}

@media screen and (max-width: 960px) {
  .FV .frame {
    padding: 90px 20px 0;
  }

  .FV .div {
    gap: 18px;
    width: 400px;
  }

  .FV .title,
  .FV .p {
    font-size: 5.8rem;
  }

  .FV .text-wrapper {
    font-size: 7.0rem;
  }

  .FV .title-2 {
    font-size: 2.8rem;
  }

  .FV .frame-2 {
    width: 90%;
  }

  .FV .frame-3 {
    gap: 0;
  }

  .FV .frame-4,
  .FV .title-wrapper {
    height: 70px;
  }

  .FV .title-3 {
    font-size: 2.0rem;
  }

  .FV .image-container {
    margin-top: 30px;
  }

  .FV .image,
  .FV .RAG {
    width: 130px;
    height: 130px;
  }

  .merit .article {
    gap: 50px;
  }
}
 
@media screen and (max-width: 900px) {
  .service .image {
    width: calc(460px - (900px - 100vw));
  }

  .service .container-3 {
    width: 276px;
  }

  .service .momota {
    width: calc(200px - ((900px - 100vw)/2));
  }

  .flow .contents {
    width: 600px;
    margin: 0 auto;
  }

  .flow .frame-SP {
    margin-top: 10px;
  }

  .flow .subscribe {
    width: 100%;
  }

  .flow .vector {
    height: 100px;
  }

  .flow .flow-PC {
    display: none;
  }

  .flow .flow-SP {
    display: flex;
  }

  .below-CTA .momota-sky-AI {
    transform: translateX(-50%) translateX(-300px);
  }
}

@media screen and (max-width: 890px) {
  .FV .frame-6 {
    gap: 150px;
  }
  .FV .image,
  .FV .RAG {
    width: 100px;
    height: 100px;
  }
}

@media screen and (max-width: 800px) {
  .below-CTA .title-wrapper {
    margin-top: 160px;
    width: 358px;
    height: 62px;
  }

  .below-CTA .momota-sky-AI {
    width: 172px;
    height: 158px;
    top: 300px;
    left: 50%;
    transform: translateX(-50%);
  }

  .below-CTA-PC {
    display: none;
  }

  .below-CTA-SP {
    display: block !important; 
  }
}

@media screen and (max-width: 790px) {
  .FV {
    height: 850px;
    /* background-position: center 300px; */
    margin-bottom: 100px;
  }
  .FV .frame {
    flex-direction: column;
  }

  .FV .container,
  .FV .div,
  .FV .frame-2 {
    width: 100%;
  }

  .FV .frame-3 {
    margin: 0 auto;
  }

  .FV .description {
    width: 80%;
    margin: 0 auto;
  }

  .FV .button {
    margin: 480px auto 0;
  }

  .FV .image-container {
    margin: -560px auto 0;
  }
}

@media screen and (max-width: 780px) {
  .problem .frame {
    flex-direction: column;
  }
  .service .container-wrapper {
    width: 100%;
    padding-top: 20px;
  }
  
  .service .container-2 {
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }

  .service .container-3 {
    width: 100%;
    align-items: center;
  }

  .service .image {
    width: 100%;
  }

  .service .container-3 p {
    text-align: center;
  }

  .service .momota {
    top: calc(1400px - ((780px - 100vw))/2);
    left: calc(550px - (640px - (100vw - 140px)));
    width: calc(170px - ((780px - 100vw) * (54px / 390px)));
  }
  
  .service .service-container-PC,
  .service .service-momota-PC {
    display: none;
  }

  .service .service-container-SP,
  .service .service-momota-SP {
    display: block;
  }
}

@media screen and (max-width: 778px) {
  .below-CTA .momota-sky-AI {
    top: 355px;
  }
}

@media screen and (max-width: 774px) {
  .FV .button {
    margin: 460px auto 0;
  }
}

@media screen and (max-width: 760px) {
  .FV {
    margin-bottom: 150px;
  }

  .solution-PC {
    display: none;
  }
}

@media screen and (max-width: 730px) {
  .FV {
    background-size: 1095px auto;
  }
}

@media screen and (max-width: 640px) {
  .service .br-SP {
    display: block;
  }

  .flow .contents {
    width: 500px;
  }
}

@media screen and (max-width: 560px) {
  .FV {
    width: 100%;
    height: 900px;
    background-image: url(../img/FV-background-SP.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center bottom;
    margin-top: 60px;
    margin-bottom: 150px;
    padding: 0 16px;
  }

  .FV .frame {
    flex-direction: column;
    
  }

  .FV .container,
  .FV .div,
  .FV .frame-2 {
    width: 100%;
  }

  .FV .frame-3 {
    margin: 0 auto;
  }

  .FV .frame-6 {
    gap: 142px;
    margin-top: -50px;
  }

  .FV .button {
    margin: 380px auto 0;
  }

  .FV .image-container {
    gap: 5px;
    margin: 70px auto 0 auto;
  }

  .FV .image,
  .FV .RAG {
    width: 100px;
    height: 100px;
  }

  .FV .FV-PC {
    display: none;
  }

  .FV .FV-SP {
    display: inline-flex;
  }
}

@media screen and (max-width: 530px) {
  .flow .contents {
    width: 400px;
  }
}

@media screen and (max-width: 510px) {
  .service .br-PC {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .flow .description .br-PC {
    display: none;
  }
}

@media screen and (max-width: 440px) {
  body {
    width: 100%;
  }

  .br-SP {
    display: block;
  }

  .br-PC {
    display: none;
  }

  .span-PC {
    display: none;
  }

  .span-SP {
    display: block;
  }

  .header-SP .fss {
    width: 120px;
  }

  .header-PC {
    display: none;
  }

  .header-tablet {
    display: none;
  }
  
  .header-SP {
    display: flex;
  }

  .FV {
    width: 100%;
    height: 802px;
    background-image: url(../img/FV-background-SP.png);
    background-repeat: no-repeat;
    background-size: 390px 374px;
    background-position: center 326px;
    margin-top: 60px;
    padding: 0 16px;
    margin-bottom: 0;
  }

  .FV .frame {
    padding: 0;
    flex-direction: column;
  }

  .FV .container,
  .FV .div {
    width: 100%;
  }

  .FV .frame-2 {
    align-items: center !important;
    text-align: center;
    margin: 0 auto;
    gap: 8px;
  }

  .FV .frame-3,
  .FV .title-wrapper {
    align-items: baseline !important;
    text-align: center;
  }

  .FV .frame-4,
  .FV .p {
    justify-content: center;
    align-items: baseline !important;
    text-align: center;
  }

  .FV .frame-4 {
    height: 58px;
  }

  .FV .title {
    font-size: 4.8rem;
    text-align: center;
  }

  .FV .text-wrapper {
    font-size: 6.0rem;
    text-align: center;
  }

  .FV .title-2 {
    font-size: 3.2rem;
    text-align: center;
  }

  .FV .title-wrapper {
    height: 58px;
    width: 100%;
    justify-content: center;
  }

  .FV .p {
    font-size: 4.8rem;
    text-align: center;
  }

  .FV .text-wrapper-2 {
    font-size: 3.2rem;
    text-align: center;
  }

  .FV .title-3 {
    font-size: 1.8rem;
  }

  .FV .description {
    /* width: 358px; */
    width: 100%;
    /* margin: 0 16px; */
  }

  .FV .image-container {
    gap: 5px;
    margin: 70px auto 0 auto;
  }

  .FV .frame-6 {
    gap: 142px;
    margin-top: -50px;
  }

  .FV .image {
    width: 100px;
    height: 100px;
  }

  .FV .RAG {
    width: 100px;
    height: 100px;
  }

  .FV .button {
    margin: 290px auto 32px auto;
  }

  .FV .CTA {
    height: 62px;
    /* padding: 19px 98px; */
    padding-top: 19px;
    padding-bottom: 19px;
    padding-left: clamp(10px, calc((100vw - 206px) / 2), 96px);
    padding-right: clamp(10px, calc((100vw - 206px) / 2), 96px);
  }

  .FV .title-4 {
    font-size: 1.8rem;
  }

  .FV .FV-PC {
    display: none;
  }

  .FV .FV-SP {
    display: inline-flex;
  }

  .solution {
    display: none;
  }

  .problem {
    width: 100%;
    padding: 80px 16px 0 16px;
  }

  .problem .container {
    width: 100%;
    margin: 0 auto;
  }

  .problem .title {
    gap: 16px;
  }

  .problem .description {
    text-align: left;
  }

  .problem .frame {
    flex-direction: column;
  }

  .problem .article {
    width: 100%;
    padding: 16px;
  }

  .problem .frame-wrapper {
    width: 100%;
  }

  .problem .frame-2 {
    flex-direction: column;
  }

  .problem .user {
    font-size: 1.8rem;
  }

  .problem .img {
    /* width: 56.41vw; */
    width: 220px;
    height: auto;
    /* width: 80%; */
    aspect-ratio: 220 / 131;
  }

  .problem .text-wrapper-3 {
    font-size: 1.6rem;
  }

  .problem .problem-PC {
    display: none;
  }

  .problem .problem-SP {
    display: block;
  }

  .solution-PC {
    display: none;
  }

  .solution-SP {
    display: block;
    height: 181px;
    padding: 40px 16px;
  }

  .solution-first {
    display: flex;
    align-items: center;
    height: 51px;
    margin: 0 auto 10px;
    width: 330px;
  }

  .solution-second {
    width: 100%;
    text-align: center;
  }

  .solution-SP .fss {
    width: 160px;
  }

  .solution .solution-X {
    width: 20px;
    height: 19.25px;
    margin: 12px 10px;
  }

  .solution .solution-first-p {
    margin-right: 10px;
  }

  .solution-second {
    height: 51px;
  }

  .service {
    width: 100%;
    padding: 80px 16px;
  }

  .service .container {
    width: 100%;
    margin: 0 auto;
    padding: 60px 16px;
  }

  .servicde .title {
    gap: 16px;
  }

  .service .text-wrapper {
    font-size: 3.2rem;
    line-height: 40px;
  }

  .service .description {
    text-align: left;
  }

  .service .scroll-area {
    width: 83.59vw;
  }

  .service .about-dify {
    padding: 0;
    width: 83.59vw;
  }

  .service .container-wrapper {
    width: 83.59vw;
    padding-top: 20px;
  }

  .service .container-2 {
    width: 83.59vw;
    flex-direction: column;
    gap: 16px;
  }

  .service .momota {
    top: 1325px;
    left: 250px;
    width: 116px;
    height: 161px;
  }

  .service .service-PC {
    display: none;
  }

  .merit {
    width: 100%;
    padding: 80px 16px 0 16px;
  }

  .merit .container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .merit .title {
    gap: 16px;
  }

  .merit .text-wrapper {
    font-size: 3.2rem;
    line-height: 40px;
  }

  .merit .description {
    text-align: left;
  }

  .merit .article {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .merit .title-2 {
    text-align: center;
    font-size: 1.8rem;
  }

  .case {
    width: 100%;
    padding: 80px 16px;
  }

  .case .container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .case .title {
    gap: 16px;
  }

  .case .text-wrapper {
    font-size: 3.2rem;
    line-height: 40px;
  }

  .case .description {
    text-align: left;
  }

  .case .list {
    width: 358px;
  }

  .case .row {
    flex-direction: column;
  }

  .case .frame-wrapper {
    width: 358px;
    gap: 16px;
    padding: 16px;
  }

  .case .CTA {
    width: 358px;
    height: 62px;
  }
  
  .case .title-3 {
    font-size: 1.8rem;
  }

  .case .for-scroll {
    margin-top: -60px;
  }

  .flow {
    width: 100%;
    padding: 80px 16px 0 16px;
  }

  .flow .container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .flow .title {
    gap: 16px;
    margin-top: 0;
  }

  .flow .text-wrapper {
    font-size: 3.2rem;
    line-height: 40px;
  }

  .flow .description {
    text-align: left;
  }

  .floe .no {
    width: 45px;
    height: 45px;
    z-index: 10;
  }

  .flow .contents {
    width: 100%;
  }

  .flow .steps {
    position: absolute;
    top: calc(50% - 27px);
    left: calc(50% - 27px);
    width: 54px;
    height: 54px;
    justify-content: center;
    aspect-ratio: 1;
  }

  .flow .ellipse {
    height: 45px;
    width: 45px;
    border-radius: 22.5px;
  }

  .flow .vector {
    width: 1.8px;
    height: 128px;
    margin-top: -3px;
  }

  .flow .title-2 {
    margin-top: -0.9px;
    font-size: 1.8rem;
    align-self: stretch;
  }

  .flow .subscribe {
    align-self: stretch;
    width: 100%;
  }

  .flow .title-3 {
    margin-top: -0.9px;
    align-self: stretch;
  }


  .flow .flow-SP {
    display: flex;
  }

  .flow .flow-PC {
    display: none;
  }

  .price {
    padding: 80px 16px 80px 16px;
  }

  .price .continer {
    width: 358px;
    margin: 0 auto;
    padding: 0;
  }

  .price .title {
    gap: 16px;
  }

  .price .text-wrapper {
    font-size: 1.6rem;
    line-height: 24px;
  }

  .price .row {
    flex-direction: column;
  }

  .price .item,
  .price .item-2 {
    width: 100%;
    padding: 0 16px;
  }

  .price .div {
    width: 100%;
    gap: 16px;
    margin-top: 16px;
  }

  .price .title-2 {
    font-size: 4.32rem;
  }

  .price .title-3 {
    font-size: 1.44rem;
  }

  .price .CTA {
    padding: 0 calc(((100vw - 32px) - 176px) / 2);
    margin-top: 24px;
    margin-bottom: 16px;
  }

  .price .title-4 {
    font-size: 1.6rem;
  }

  .price .NO-wrapper {
    left: calc(290px - ((440px - 100vw)/1.5));
  }

  .below-CTA {
    padding: 80px 16px 80px 16px;
  }

  .below-CTA .continer {
    width: 358px;
    margin: 0 auto;
    padding: 0;
  }

  .below-CTA .title {
    font-size: 2.4rem;
    line-height: 36px;
  }

  .below-CTA .description {
    font-weight: 500;
    width: 100%;
  }

  .below-CTA .title-wrapper {
    margin-top: 190px;
    /* width: 358px; */
    width: clamp(186px, 91.79%, 358px);
    height: 62px;
}

  .below-CTA .text-wrapper {
    font-size: 1.8rem;
  }

  .below-CTA .momota-sky-AI {
    width: 172px;
    height: 158px;
    top: 300px;
  }

  .below-CTA-PC {
    display: none !important;
  }

  .below-CTA-SP {
    display: block !important; 
  }

  #below-CTA-title-PC {
    display: none;
  }

  #below-CTA-title-SP {
    display: block;
  }

  footer {
    padding: 40px 16px 2px;
  }

  footer .frame {
    width: 100%;
    gap: 40px;
  }

  footer .navigation {
    position: absolute;
    top: -35px;
    left: 85%;
  }

  footer .page-top {
    width: 36px;
  }

  footer .icon-park-outline-up {
    width: 36px;
    height: 36px;
  }

  footer .PAGE-TOP {
    font-size: 1.44rem;
  }

  footer .frame-2 {
    gap: 24px;
  }

  footer .fss {
    width: 171px;
    height: 54px;
  }

  footer .description,
  footer .text-wrapper {
    font-size: 1.4rem;
    line-height: 20px;
  }

  footer .prime-twitter,
  footer .prime-instagram,
  footer .prime-threads {
    width: 22px;
    height: 22px;
  }

  footer .p {
    font-size: 1.2rem;
  }

  footer .footer-PC {
    display: none;
  }

  footer .footer-SP {
    display: inline-flex;
  }
}

@media screen and (max-width: 426px) {
  .FV .button {
    margin: 270px auto 32px auto;
  }
}

@media screen and (max-width: 390px) {
  .service .momota {
    left: 230px;
  }
}

@media screen and (max-width: 378px) {
  .solution p {
    font-size: 3.3rem;
  }
}

@media screen and (max-width: 360px) {
  .solution p {
    font-size: 3.0rem;
  }

  .solution-first {
    width: 300px;
  }

  .solution-SP .fss {
    width: 140px;
  }
  
  .case .list {
    width: 100%;
  }

  .case .frame-wrapper {
    width: 100%;
  }

  .case .CTA {
    width: 100%;
  }
}

@media screen and (max-width: 340px) {
  .FV .title-3 {
    font-size: 1.6rem;
  }
}