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

body {
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    width: 100%;
    margin: 0;
    margin-right: auto;
    margin-left: auto;
}

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

h1 {
    margin: 0;
    padding: 0;
}

.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: calc((100vw)/15 + 94px); */
    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;
}

.about {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-top: 16px;
    padding-left: calc((100vw - 1100px) / 2);
    padding-right: calc((100vw - 1100px) / 2);
    padding-bottom: 40px;
    position: relative;
    background-color: var(--main);
    margin-top: 81px;
}

.about .paragraph {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 6px;
    position: relative;
    flex: 0 0 auto;
}

.about .component {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 0 0 auto;
}

.about .text-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: -1.00px;
    font-weight: 400;
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: 20px;
    white-space: nowrap;
}

.about .lsicon-down-filled {
    position: relative;
    width: 16px;
    height: 16px;
    transform: rotate(-90deg);
    aspect-ratio: 1;
}

.about .vector {
    position: absolute;
    height: 48.18%;
    width: 28.51%;
    top: 25.45%;
    left: 35.75%;
    transform: rotate(90deg);
}

.about .div {
    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.36rem;
    letter-spacing: 0;
    line-height: 20px;
    white-space: nowrap;
}

.about .frame {
    display: flex;
    align-items: center;
    gap: 114px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.about .container {
    display: flex;
    flex-direction: column;
    width: 460px;
    align-items: flex-start;
    gap: 24px;
    position: relative;
}

.about .title {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-weight: 700;
    color: #fff;
    font-size: 4.0rem;
    letter-spacing: 0;
    line-height: 48px;
}

.about .description {
    position: relative;
    align-self: stretch;
    font-weight: 400;
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 24px;
}

.about .image {
    position: relative;
    width: 500px;
    aspect-ratio: 500 / 342;
}

.about .image-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 460px;
    aspect-ratio: 460 / 315;
    background-image: url(../img/dify-image.png);
    background-size: cover;
    background-position: 50% 50%;
}

.about .momota {
    position: absolute;
    top: 94px;
    left: 367px;
    width: 175px;
    aspect-ratio: 0.72;
    object-fit: cover;
}

.contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 80px;
    position: relative;
}

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

.contents .div {
    display: flex;
    gap: 50px;
    padding-top: 96px;
    padding-bottom: 96px;
    padding-left: calc((100vw - 1100px) / 2);
    padding-right: calc((100vw - 1100px) / 2);
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    flex: 0 0 auto;
    border-color: var(--main);
    width: 100%;
}

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

.contents .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;
}

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

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

.contents .article {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex: 0 0 atuo;
    border-radius: 6px;
}

.contents .frame {
    display: flex;
    flex-direction: column;
    width: 600px;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    align-self: stretch;
}

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

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

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

.contents .subtitle-2 {
    -webkit-line-clamp: 4;
    position: relative;
    align-self: stretch;
    font-weight: 400;
    color: var(--black);
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.contents .image-container {
    display: flex;
    width: 450px;
    height: 450px;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    position: relative;
    aspect-ratio: 1;
}

.contents .image {
    flex: 1;
    flex-grow: 1;
    border-radius: 10px;
    background-image: url(../img/Consulting.png);
    background-size: cover;
    background-position: 50% 50%;
    position: relative;
    aspect-ratio: 1;
}

.contents .div-2 {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 56px;
    padding-top: 96px;
    padding-bottom: 96px;
    padding-left: calc((100vw - 1100px) / 2);
    padding-right: calc((100vw - 1100px) / 2);
    position: relative;
    flex: 0 0 auto;
    background-color: var(--sub);
    border-color: var(--main);
    width: 100%;
}

.contents .image-wrapper {
    display: flex;
    width: 450px;
    height: 360px;
    align-items: center;
    padding: 0 40px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1.25;
}

.contents .image-2 {
    flex: 1;
    flex-grow: 1;
    margin-top: -5.00px;
    margin-bottom: -5.00px;
    background-image: url(../img/Construction.png);
    background-size: cover;
    background-position: 50% 50%;
    position: relative;
    aspect-ratio: 1;
}
.contents .frame-3 {
    width: 600px;
    gap: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.contents .title-3 {
    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;
}

.contents .subtitle-span {
    display: block;
    text-indent: -1em;
    padding-left: 1em;
}

.contents .image-3 {
    flex: 1;
    flex-grow: 1;
    border-radius: 10px;
    background-image: url(../img/Customization.png);
    background-size: cover;
    background-position: 50% 50%;
    position: relative;
    aspect-ratio: 1;
}

.contents .image-4 {
    flex: 1;
    flex-grow: 1;
    border-radius: 10px;
    background-image: url(../img/Operation.png);
    background-size: cover;
    background-position: 50% 50%;
    position: relative;
    aspect-ratio: 1;
}

.contents .article-SP {
    display: none;
}

.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;
}

.contentes .article-SP {
    display: none;
}

.br-SP {
    display: none;
}
  
/* @media screen and (max-width: 1440px) {
    footer {
        padding-left: 80px;
        padding-right: 170px;
    }
} */

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

@media screen and (max-width: 1120px) {
    .about {
        padding: 16px 10px 40px;
    }

    .about .frame {
        gap: calc(114px - (1120px - 100vw));
    }

    .contents .div,
    .contents .div-2 {
        padding: 96px 10px;
    }
    
    .below-CTA {
        padding: 96px 10px;
    }
}

@media screen and (max-width: 1000px) {
    .below-CTA .momota-sky-AI {
        transform: translateX(-50%) translateX(-350px);
    }

    .about .frame {
        flex-direction: column;
        gap: 32px;
    }

    .about .paragraph {
        width: 80%;
    }

    .about .container {
        width: 80%;
    }
}

@media screen and (max-width: 900px) {
    .below-CTA .momota-sky-AI {
        transform: translateX(-50%) translateX(-300px);
    }
}

@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: 778px) {
    .below-CTA .momota-sky-AI {
        top: 355px;
    }
}

@media screen and (max-width: 690px) {
    .contents .div {
        padding: 80px 16px;
        gap: 40px;
    }

    .contents .div-2 {
        padding: 80px 16px;
        gap: 40px;
    }

    .contents .title {
        gap: 16px;
    }

    .contents .text-wrapper {
        font-size: 3.2rem;
        width: 100%; 
    }

    .contents .rectangle {
        margin: -10px auto 0;
    }

    .contents .article {
        width: 80%;
        flex-direction: column;
        margin: 0 auto;
    }

    .contents .image-container,
    .contents .image-wrapper {
        width: 358px;
        height: 240px;
        padding: 0;
        margin-bottom: 40px;
    }

    .contents .image,
    .contents .image-2,
    .contents .image-3,
    .contents .image-4 {
        width: 358px;
        height: 240px;
    }

    .contents .image {
        background-image: url(../img/Consulting-SP.png);
    }

    .contents .image-2 {
        background-image: url(../img/Construction-SP.png);
    }

    .contents .image-3 {
        background-image: url(../img/Customization-SP.png);
    }

    .contents .image-4 {
        background-image: url(../img/Operation-SP.png);
    }

    .contents .frame,
    .contents .frame-3 {
        width: 100%;
    }

    .contents .frame-2 {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .contents .frame-3 {
        gap: 24px;
    }

    .contentes .title-2 {
        font-size: 1.8rem;
        line-height: 24px;
    }

    .contents .text-indent {
        margin-left: 16px;
        text-indent: -16px;
    }


    .contents .article-PC {
        display: none;
    }

    .contents .article-SP {
        display: flex;
    }
}

@media screen and (max-width: 600px) {
    .about .image {
        width: 450px;
    }

    .about .image-2 {
        width: 100%;
    }

    .about .momota {
        top: 100px;
        left: 320px;
        width: 157.5px;
    }
}

@media screen and (max-width: 500px) {
    .about .image {
        width: 400px;
    }

    .about .momota {
        top: 95px;
        left: 280px;
        width: 140px;
    }
}

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

    .header-PC {
        display: none;
    }

    .header-tablet {
        display: none;
    }

    .header-SP {
        display: flex; 
    }

    .about {
        width: 100%;
        padding: 40px 16px;
    }

    .about .container {
        width: 100%;
    }

    .about .title {
        font-size: 3.6rem;
        text-align: center;
    }

    .about .image {
        width: 358px;
    }

    .about .image-2 {
        width: 335px;
        height: 228px;
        position: relative;
        margin: 0 auto;
    }

    .about .momota {
        width: 115.81px;
        height: 161px;
        top: 78px;
        left: 242px;
    }

    .about .PC {
        display: none;
    }

    .contents .image-container,
    .contents .image-wrapper {
        /* width: 358px; */
        width: clamp(293px, calc(358px - (440px - 100vw)), 358px);
        height: auto;
        padding: 0;
        margin-bottom: 40px;
        aspect-ratio: 358 / 240;
    }

    .contents .image,
    .contents .image-2,
    .contents .image-3,
    .contents .image-4 {
        width: clamp(293px, calc(358px - (440px - 100vw)), 358px);
        height: auto;
        aspect-ratio: 358 / 240;
    }

    .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;
    }

    .br-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;
    }
}