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

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

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

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

.merit .text-wrapper {
    font-weight: 700;
}

.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 .list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    width: 100%;
    flex: 0 0 auto;
}

.merit .article {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 24px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: var(--sub);
    border-radius: 6px;
}

.merit .image-container {
    display: inline-flex;
    align-items: flex-start;
    position: relative;
    flex: 0 0 auto;
}

.merit .frame {
    width: 90px;
    height: 90px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #fff;
    border-radius: 50px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.merit .element {
    object-fit: cover;
    position: relative;
    width: 60px;
    height: 50px;
    aspect-ratio: 1.18;
}

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

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

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

.merit .img {
    position: relative;
    width: 60px;
    height: 50px;
    aspect-ratio: 1.18;
}

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

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

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

.reason .text-wrapper {
    font-weight: 700;
}

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

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

.reason .div {
    height: 354px;
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 16px;
    position: relative;
    align-self: stretch;
    width: 100%;
}

.reason .item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1px;
    position: relative;
    flex: 1;
    align-self: stretch;
    flex-grow: 1;
}

.reason .background {
    display: flex;
    align-items: flex-start;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #ececec;
    border-radius: 10ps 10px 0 0;
}

.reason .element-m {
    position: relative;
    flex: 1;
    align-self: stretch;
    flex-grow: 1;
    width: 100%;
    aspect-ratio: 540 / 192;
}

.reason .text-wrapper-2 {
    position: absolute;
    top: 1px;
    left: 9px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    color: #fff;
    font-size: 6.4rem;
    text-align: center;
    letter-spacing: -0.64px;
    line-height: normal;
    white-space: nowrap;
}

.reason .container-2 {
    align-items: flex-start;
    gap: 12px;
    padding: 24px;
    flex: 1;
    flex-grow: 1;
    background-color: #fff;
    border-radius: 0 0 6px 6px;
    border-right-width: 1px;
    border-right-style: solid;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-left-width: 1px;
    border-left-style: solid;
    border-color: var(--main);
    display: flex;
    flex-direction: column;
    position: relative;
    align-self: stretch;
    width: 100%;
}

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

.reason .text-wrapper-3 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -1.00px;
    font-weight: 500;
    color: var(--main);
    font-size: 2.0rem;
    letter-spacing: 0;
    line-height: 28px;
}

.reason .text-wrapper-4 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    margin-top: -1.00px;
    font-weight: 400;
    color: var(--black);
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 24px;
}

.reason .frame-2 {
    display: flex;
    height: 402px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    align-self: stretch;
    width: 100%;
}

.reason .img {
    position: relative;
    width: 100%;
    flex: 1;
    align-self: stretch;
    flex-grow: 1;
}

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

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

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

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

.case .text-wrapper {
    font-weight: 700;
}

.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 .component {
    display: flex;
    flex-direction: column;
    width: 1100px;
    align-items: flex-start;
    position: relative;
    flex: 0 0 auto;
}

.case .scroll-wrapper {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

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

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

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

.case .frame button {
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.case .frame button:hover {
    opacity: 0.9;
}

.case .frame button:active {
    transform: translateY(1px);
}

.case .frame button:focus-visible {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
}

.case .case-tab {
    display: flex;
    width: 211px;
    height: 57px;
    align-items: center;
    justify-content: center;
    padding: 4px 16px;
    position: relative;
    background-color: var(--sub);
    border-radius: 5px 5px 0 0 ;
}

.case .case-tab.active {
    display: flex;
    width: 240px;
    height: 71px;
    align-items: center;
    justify-content: center;
    padding: 4px 24px;
    position: relative;
    background-color: var(--main);
    border-radius: 6px 6px 0 0 ;
}

.case .case-tab:focus-visible {
    outline-color: #fff;
}

.case .div {
    color: var(--main);
    font-size: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

.case .case-tab.active .div {
    color: #fff;
    font-size: 1.8rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

.case .tab-panels {
    position: relative;
    width: 100%;
}

.case .frame-2 {
    height: 440px;
    align-items: flex-start;
    gap: 60px;
    padding: 60px;
    align-self: stretch;
    width: 100%;
    border-radius: 0 0 6px 6px;
    border: 1px solid;
    border-color: var(--main);
    display: flex;
    position: relative;
    left: 0;
}

.case .hidden {
    display: none;
  }

.case .frame-3 {
    flex-direction: column;
    width: 442px;
    align-items: flex-start;
    gap: 24px;
    display: flex;
    position: relative;
}

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

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

.case .image {
    position: relative;
    flex: 1;
    flex-grow: 1;
    height: 320px;
}

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

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

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

.best-for .title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    color: var(--black);
    font-size: 4.0rem;
    line-height: 48px;
    text-align: center;
    position: relative;
    margin-top: -1.00px;
    letter-spacing: 0;
}

.best-for .text-wrapper {
    font-weight: 700;
}

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

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

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

.best-for .container-2 {
    align-items: center;
    display: flex;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.best-for .mynaui-check-circle {
    position: relative;
    width: 36px;
    height: 36px;
    aspect-ratio: 1;
}

.best-for .vector {
    position: absolute;
    width: 81.25%;
    height: 81.25%;
    top: 9.38%;
    left: 9.38%;
}

.best-for .margin {
    display: inline-flex;
    padding: 0 0 0 16px;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    flex: 0 0 auto;
    /* width: 100%; */
    width: calc(100% - 36px);
}

.best-for .text-wrapper-2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    color: var(--black);
    font-size: 2.0rem;
    letter-spacing: 0;
    line-height: 28px;
    white-space: nowrap;
}

.best-for .div-wrapper {
    display: flex;
    padding: 0 0 0 56px;
    align-self: stretch;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    flex: 0 0 auto;
}

.best-for .text-wrapper-3 {
    position: relative;
    display: block;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    margin-top: -1.00px;
    font-weight: 400;
    color: var(--black);
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 28px;
}

.plan {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding-top: 96px;
    padding-bottom: 96px;
    padding-left: calc((100vw - 1136px) / 2);
    padding-right: calc((100vw - 1136px) / 2);
    position: relative;
}

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

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

.plan .text-wrapper {
    font-weight: 700;
}

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

.plan .component {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    position: relative;
    flex: 0 0 auto;
    margin: 0 auto;
    width: 100%;
}

.plan .background-border-wrapper {
    width: 100%;
    align-items: flex-start;
    justify-content: space-around;
    flex: 0 0 auto;
    display: flex;
    position: relative;
}

.plan .background-border {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 28px;
    background: linear-gradient(
        150deg,
        rgba(30, 180, 250, 1) 0%,
        rgba(3, 72, 143, 1) 100%
    );
}

.plan .button {
    all: unset;
    box-sizing: border-box;
    display: flex;
    width: 200px;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 12px 33px 12px 32px;
    position: relative;
    cursor: pointer;
}

.plan .button.active {
    all: unset;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    width: 200px;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 12px 33px 12px 32px;
    position: relative;
}

.plan .button.active .div {
    margin: -5px -4.5px -3px -4.5px;
    color: var(--main);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    font-weight: 700;
    font-size: 1.6rem;
    text-align: center;
    letter-spacing: 0;
    line-height: 24px;
    white-space: nowrap;
}

.plan .div {
    margin: -5px -12.5px -3px -12.5px;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    font-weight: 700;
    font-size: 1.6rem;
    text-align: center;
    letter-spacing: 0;
    line-height: 24px;
    white-space: nowrap;
}

.plan .plan-item-list {
    width: 1136px;
    height: 270px;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    display: flex;
    position: relative;
}

.plan .hidden {
    display: none;
}

.plan .item {
    display: flex;
    flex-direction: column;
    width: 272px;
    align-items: flex-start;
    gap: 24px;
    padding: 25px;
    position: relative;
    align-self: stretch;
    background-color: var(--sub);
    border-radius: 6px;
    border-color: var(--black);
}

.plan .div-wrapper-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 9px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border-bottom-width: 1px;
    border-bottom-style: sollid;
    border-color: var(--main);
}

.plan .text-wrapper-3 {
    font-size: 2.0rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    margin-top: -1.00px;
    font-weight: 700;
    color: var(--main);
    text-align: center;
    letter-spacing: 0;
    line-height: 28px;
}

.plan .container-3 {
    width: 222px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex: 0 0 auto;
    display: flex;
    position: relative;
}

.plan .container-column {
    flex-direction: column;
    gap: 0px;
    margin-top: -10px;
}

.plan .rectangle-2 {
    width: 222px;
    height: 1px;
    margin-top: 6px;
    background-color: var(--main);
}

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

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

.plan .list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.plan .item-2 {
    display: inline-flex;
    align-items: center;
    position: relative;
    flex:  0 0 auto;
}

.plan .text-wrapper-6 {
    font-size: 1.6rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 215px;
    margin-top: -1.00px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 0;
    line-height: 20px;
}

.plan .text-wrapper-margin {
    margin-top: -15px;
}

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

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

.br-SP {
    display: none;
}

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

@media screen and (max-width: 1156px) {
    .plan .plan-item-list {
        flex-direction: column;
        height: auto;
        width: 80%;
        margin: 0 auto;
    }

    .plan .item {
        width: 100%;
    }

    .plan .container-3 {
        width: 100%;
    }

    .plan .list {
        align-items: center;
    }

    .plan .text-wrapper-6 {
        width: 100%;
    }
}

@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));
    }

    .merit,
    .reason,
    .case,
    .best-for,
    .plan {
        padding: 96px 10px;
    }

    .reason .frame {
        width: 70%;
        margin: 0 auto;
    }

    .reason .div,
    .reason .frame-2 {
        flex-direction: column;
        height: auto;
    }

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

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

    .case .scroll-wrapper {
        width: 90%;
        margin: 0 auto;
    }

    .case .component {
        width: 90%;
        margin-top: -50px;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
    }

    .case .frame,
    .case .tab-panels {
        width: 1100px;
    }

    .case .subtitle {
        white-space: normal;
    }

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

    .best-for .text-wrapper-2 {
        white-space: normal;
        width: 100%;
    }

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

@media screen and (max-width: 1000px) {
    .about .frame {
        flex-direction: column;
        gap: 32px;
    }

    .about .paragraph {
        width: 80%;
    }

    .about .container {
        width: 80%;
    }

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

@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: 650px) {
    .about .image {
        width: 450px;
    }

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

@media screen and (max-width: 590px) {
    .merit .article {
        flex-direction: column;
        gap: 16px;
    }

    .merit .title-2 {
        text-align: center;
    }

    .reason .text-wrapper-2 {
        height: 66px;
        font-size: 6.0rem;
    }
}

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

    .reason .frame {
        width: 80%;
    }
}

@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.2rem;
        text-align: center;
    }

    .about .image {
        width: 358px;
    }

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

    .about .PC {
        display: none;
    }

    .merit {
        width: 100%;
        padding: 80px 16px;
        gap: 40px;
    }
    
    .merit .container {
        width: 100%;
        margin: 0 auto;
        gap: 16px;
    }

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

    .merit .frame {
        width: 81px;
        height: 81px;
    }

    .merit .img {
        width: 54px;
        height: 45px;
    }

    .reason {
        width: 100%;
        padding: 80px 16px;
        gap: 40px;
    }

    .reason .frame {
        width: 100%;
    }

    .reason .container {
        width: 100%;
        margin: 0 auto;
        gap: 16px;
    }

    .reason .title {
        font-size: 3.2rem;
    }

    .reason .element-m,
    .reason .img {
        width: 100%;
    }

    .reason .text-wrapper-2 {
        height: 66px;
        font-size: 5.6rem;
    }

    .reason .container-2 {
        padding: 16px;
        gap: 8px;
    }

    .reason .text-wrapper-3 {
        font-size: 1.8rem;
    }

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

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

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

    .case .container {
        width: 358px;
        margin: 0 auto;
        gap: 16px;
    }

    .case .title {
        font-size: 3.2rem;
    }

    .case .scroll-wrapper {
        width: 91.06%;
    }

    .case .component {
        /* width: 326px; */
        width: 91.06%;
        margin-top: -30px;
        /* overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap; */
        overflow: visible;
        white-space: normal;
    }

    .case .frame {
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        width: 100%;
        flex: none;
    }

    .case .frame-2 {
        width: 100%;
        height: auto;
        padding: 16px;
        gap: 16px;
        flex-direction: column;
    }

    .case .tab-panels{
        width: 100%;
    }

    .case .frame-3 {
        width: 100%;
        gap: 8px;
    }

    .case .title-2 {
        font-size: 1.8rem;
        line-height: 26px;
    }

    .case .subtitle {
        white-space: normal;
    }

    .case .image {
        width: 91.84%;
        height: auto;
        aspect-ratio: 310 / 208;
        margin: 0 auto;
    }

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

    .best-for {
        width: 100%;
        padding: 80px 16px;
        gap: 40px;
    }

    .best-for .container {
        /* width: 358px; */
        width: 100%;
        margin: 0 auto;
        gap: 16px;
    }

    .best-for .title {
        font-size: 3.2rem;
    }

    .best-for .div {
        gap: 40px;
    }

    .best-for .text-wrapper-2 {
        white-space: normal;
        font-size: 1.8rem;
        width: 100%;
    }

    .plan {
        width: 100%;
        padding: 80px 16px;
        gap: 40px;
    }

    .plan .container {
        width: 100%;
        margin: 0 auto;
        gap: 16px;
    }

    .plan .title {
        font-size: 3.2rem;
    }

    .plan .component {
        gap: 16px;
        width: 100%;
    }

    .plan .background-border-wrapper {
        width: 100%;
    }

    .plan .button-1 {
        width: 142px;
    }

    .plan .button-2 {
        width: 156px;
    }

    .plan .button-1.active {
        width: 174px;
    }

    .plan .button-2.active {
        width: 188px;
    }

    .plan .div {
        font-size: 1.4rem;
    }

    .plan .button.active .div {
        font-size: 1.4rem;
    }

    .plan .plan-item-list {
        flex-direction: column;
        height: auto;
        width: 100%;
    }

    .plan .item {
        width: 100%;
        gap: 16px;
    }

    .plan .container-3,
    .plan .list,
    .plan .text-wrapper-6 {
        width: 100%;
    }

    .plan .rectangle-2 {
        width: 326px;
    }

    .plan .text-wrapper-6 {
        font-size: 1.44rem;
    }

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

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

    .below-CTA {
        /* width: 390px; */
        width: 100%;
        padding: 80px 16px 80px 16px;
    }
    
    .below-CTA .continer {
        /* width: 358px; */
        width: 100%;
        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;
        /* left: 109px; */
        left: 50%;
    }
    
    .below-CTA-PC {
        display: none;
    }
    
    .below-CTA-SP {
        display: block;
    }
    
    footer {
        padding: 40px 16px 2px;
    }

    footer .frame {
        width: 358px;
        gap: 40px;
    }

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

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

    .br-PC {
        display: none;
    }

    .br-SP {
        display: block;
    }
}

@media screen and (max-width: 380px) {
    .plan .div {
        font-size: 1.2rem;
    }

    .plan .button-1 {
        width: 122px;
    }

    .plan .button-2 {
        width: 146px;
    }

    .plan .button-1.active {
        width: 164px;
    }

    .plan .button-2.active {
        width: 175px;
    }
}