@charset "UTF-8";

/* デスクトップ */
@media (min-width: 1025px) {

    /* PC向けのスタイル */
    body {
        background-color: #fafbfc;
        font-family: "Noto Sans JP", sans-serif;
        min-width: 1025px;
        padding-bottom: 200px;
    }

    #header, nav, .sp-br, .sp-table, .sp-fv, .marquee-bg{
        display: none;
    }

    a {
        text-decoration: none;
        color: #333;
    }

    /* header */

    header {
        width: 100%;
        position: fixed;
        border-bottom: 1px solid #ccc;
        background-color: #fff;
        top: 0;
        z-index: 1000;
    }

    .header-wrap {
        width: 1000px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        padding: 10px 24px;
        margin: 0 auto;

    }

    .header-left {
        width: 15%;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .logo img {
        width: 100%;
        /* height: 24px; */
    }

    .nav {
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .nav a {
        width: 20%;
        text-decoration: none;
        color: #000;
        font-weight: 600;
        font-size: 12px;
        position: relative;
        padding: 0 12px;
        text-decoration: none;
        color: #000;
        font-weight: 600;
        font-size: 14px;
        border-right: 1px solid #ccc;
    }

    .nav a span {
        display: block;
        font-size: 10px;
        font-weight: 600;
        color: #666;
    }

    /* 最後のリンクだけ縦線を消す */
    .nav a:last-child {
        border-right: none;
    }

    .header-right {
        width: 75%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        gap: 8px;
    }

    .header-top {
        padding-right: 20px;
    }

    .links {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        font-size: 12px;
    }

    .header-top .links, .header-cta a {
        padding-top: 4px;
        /* 上下の余白（パディング）を調整 */
        padding-bottom: 4px;
        line-height: 1.2;
        /* 行の高さを適切に設定 */
    }

    .links a {
        color: #3283ff;
        text-decoration: none;
    }

    .sns-icon {
        width: 16px;
        height: 16px;
    }

    .header-cta {
        width: 10%;
    }

    .cta-btn {
        display: inline-block;
    }

    .cta-img {
        width: 100%;
        /* お好みで調整可能 */
        transition: transform 0.2s ease;
    }

    .cta-img:hover {
        transform: scale(1.05);
    }


    .fv {
        width: 100%;
        height: 450px;
        margin-top: 90px;
        background-image: url(../img/top/top_fv_bk.png);
        background-size: cover;
    }

    .fv_up {
        text-align: center;
    }

    .fv_up img {
        width: 800px;
    }

    .fv-cta {
        width: 800px;
        margin: 0 auto;
        margin-top: -130px;
        padding-left: 30px;
        transition: transform 0.2s ease;
    }

    .fv-cta:hover {
        transform: scale(1.05);
    }

    .fv-cta img {
        width: 360px;
        margin-top: 40px;
        padding-left: 20px;
    }


    .dena {
        width: 1000px;
        margin: 80px auto;
        text-align: center;
    }

    .dena img {
        width: 80%;
    }

    /* セクション全体 */
    .service-feature-section {
        width: 1000px;
        margin: 0 auto;
    }

    /* 上段：ソラクラウドとは？ */
    .feature-intro {
        display: flex;
        align-items: center;
        gap: 60px;
        margin-bottom: 100px;
        background-color: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border-radius: 12px;
        padding: 40px 40px 0 40px;
    }

    .feature-intro-text {
        flex: 1.2;
    }

    .feature-intro-text h2 {
        font-size: 34px;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 24px;
        color: #333;
    }

    .feature-intro-text p {
        font-size: 16px;
        line-height: 1.9;
        color: #555;
    }

    .text-highlight {
        color: #3283ff;
        /* テキストの青色 */
        font-weight: 600;
        /* 少し太字にして強調 */
    }

    .feature-intro-text img {
        width: 60%;
        display: block;
        margin: 0 auto;
    }

    .feature-intro-image {
        flex: 1;
        min-width: 300px;
    }

    .feature-intro-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* 下段：3つの革新ポイント */
    .feature-points {
        text-align: center;
        margin-bottom: 120px;
    }

 h2 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 60px;
        display: inline-block;
        position: relative;
        color: #333;
    }

    .points-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .point-card {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(149, 157, 165, 0.1);
        text-align: left;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .point-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(149, 157, 165, 0.15);
    }

    .point-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

    .point-card-content {
        padding: 20px 20px 30px 20px;
    }

    .point-card h3 {
        font-size: 20px;
        font-weight: 500;
        margin-top: 0;
        margin-bottom: 20px;
        color: #333;
        text-align: center;
    }

    .point-card p {
        font-size: 15px;
        line-height: 1.7;
        color: #666;
        margin-bottom: 0;
    }


    /* フェードアップアニメーション共通 */
    .fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
        z-index: 0;
        /* ヘッダーより後ろに */
        position: relative;
        /* これを加えて z-index 有効化 */
    }

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-up>h3 {
        font-size: 35px;
        margin-top: 100px;
    }

    .solacloud0 {
        width: 1000px;
        margin: 60px auto;
        display: flex;
        align-items: center;
    }

    .sola-left {
        width: 50%;
    }

    .solacloud0 h2 {
        margin: 8px 0;
    }

    .solacloud0 h3 {
        position: relative;
        padding-left: 40px;
        margin: 24px 0;
        font-size: 20px;
        /* ラインとドット分の余白 */
        font-weight: bold;
    }

    .solacloud0 h3::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        /* ライン長さ */
        height: 2px;
        /* ラインの太さ */
        background-color: #00aaff;
        /* 水色ライン */
    }

    .solacloud0 h3::after {
        content: "";
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        background-color: #00aaff;
        /* 水色ドット */
        border-radius: 50%;
    }

    .sola-right {
        width: 50%;
        text-align: center;
    }

    .sola-right img {
        width: 70%;
    }

    .marquee {
        overflow: hidden;
        white-space: nowrap;
        position: relative;
    }

    .marquee-inner {
        display: inline-block;
        white-space: nowrap;
        animation: marquee 40s linear infinite;
        margin: 40px 0;
    }

    .marquee-inner span {
        display: inline-block;
        padding-right: 100vw;
        /* テキストの間に十分な余白をつけて繰り返す */
        font-size: 100px;
        font-weight: 700;
        letter-spacing: 16px;
        color: transparent;
        background: linear-gradient(120deg,
                rgba(255, 255, 255, 0.2) 0%,
                rgba(0, 183, 255, 0.4) 50%,
                rgba(255, 255, 255, 0.2) 100%);
        background-size: 200% auto;
        -webkit-background-clip: text;
        background-clip: text;
        animation: shine 3s linear infinite;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    @keyframes shine {
        0% {
            background-position: 200% center;
        }

        100% {
            background-position: -200% center;
        }
    }

    .solo-point6 {
        width: 1000px;
        margin: 120px auto;
        text-align: center;
    }

    .point {
        width: 100%;
        display: flex;
        text-align: center;
        justify-content: center;
    }

    .point img {
        width: 45%;
    }

    .round-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #222;
        /* 黒背景 */
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        padding: 16px 32px;
        border-radius: 9999px;
        /* 丸くする */
        font-size: 16px;
        gap: 12px;
        /* 文字と矢印の間隔 */
        transition: background 0.3s;
        border: 2px solid transparent;
    }

    .round-button:hover {
        background-color: #444;
    }

    .round-button .arrow {
        display: inline-block;
        font-size: 18px;
        border: 1px solid #fff;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        line-height: 22px;
        text-align: center;
        font-weight: normal;
    }

    .btn {
        text-align: center;
        margin-bottom: 40px;
    }

    .vs {
        width: 1000px;
        text-align: center;
        margin: 60px auto;
    }

    .vs img {
        width: 80%;
    }

    .check {
        width: 1000px;
        text-align: center;
        margin: 80px auto;
    }

    .check img {
        width: 800px;
    }

    .cta {
        text-align: center;
        margin-top: -120px;
        transition: transform 0.2s ease;
    }

    .cta:hover {
        transform: scale(1.05);
    }

    .cta img {
        width: 400px;
        padding-left: 40px;
    }

    .future {
        width: 1000px;
        margin: 100px auto;
        text-align: center;
        /* position: relative; */
        z-index: 100;
    }

    .future h2 {
        margin: 20px 0;
    }

    .future p {
        margin: 20px 0;
    }

    .future img {
        width: 700px;
        margin-top: 20px;
    }

    .future-text {
        /* position: absolute; */
        z-index: 100;
        width: 1000px;
        margin: 0 auto;
        text-align: center;
    }

    .text-color {
        color: #3283ff;
    }

    /* ========== 重ね合わせ要素の修正CSS ========== */

    /* 1. 親コンテナ（画像ブロック）を相対位置の基準点にする */
    .some-image-block {
        position: relative;
        /* 子のabsolute配置の基準点となる */
        width: 100%;
        max-width: 700px;
        /* PCでの画像の最大サイズに合わせる */
        margin: 40px auto;
        /* 上下の余白を調整 */
        text-align: center;
    }

    .some-image-block img {
        width: 100%;
        /* 親要素の幅に合わせて伸縮 */
        height: auto;
        /* アスペクト比を維持 */
        display: block;
        /* 画像下の余分なスペースを削除 */
    }

    /* 2. 重ねたい要素（回転テキストのセクション）を絶対配置で中央に置く */
    .target-section {
        position: absolute;
        /* 上下左右中央に配置するための定番テクニック */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        width: 115%;
        /* 画像より少し大きくして、テキストが画像の円周に合うように調整 */
        height: 115%;
        display: block !important;
        /* 全デバイスで表示（display: none;を上書き） */
        pointer-events: none;
        /* テキストがクリックイベントを邪魔しないようにする */
    }


    /* 3. SVGとそのコンテナの調整 */
    /* 以前の巨大なtop/leftやopacity、transform指定は不要になるので削除します */
    .circle-container {
        position: relative;
        width: 100%;
        height: 100%;
        opacity: 1;
        /* .active クラスに頼らず常に表示 */
    }

    .circle-text-wrapper {
        animation: rotate 30s linear infinite;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .circle-text text {
        font-size: 20px;
        letter-spacing: 1px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        fill: url(#textGradient);
    }

    @keyframes rotate {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .swiper-wrapper {
        justify-content: center !important;
    }


    .voice-section {
        width: 100%;
        padding: 80px 0;
        text-align: center;
        /* margin-top: 60vh; */
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .swiper-slide.card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        text-align: left;
    }

    .name {
        font-weight: bold;
        font-size: 14px;
        margin-bottom: 4px;
    }

    .rating {
        color: #007aff;
        font-size: 14px;
        margin-bottom: 12px;
    }

    .comment {
        font-size: 14px;
        line-height: 1.6;
    }

    .flow-section {
        text-align: center;
        padding: 80px 0;
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .flow-box {
        width: 760px;
        margin: 0 auto;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .flow-step {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
        position: relative;
    }

    .flow-icon img {
        width: 64px;
        height: 64px;
    }

    .flow-icon {
        display: flex;
        align-items: center;
        width: 330px;
    }

    .flow-icon h3 {
        font-size: 16px;
        font-weight: bold;
        margin-left: 10px;
    }

    .flow-text-right {
        width: 50%;
    }

    .flow-step p {
        font-size: 14px;
        line-height: 1.6;
    }

    .qa {
        width: 800px;
        margin: 0 auto;
        display: flex;
        padding: 40px;
    }

    .qa-left {
        width: 30%;
    }

    .qa-right {
        width: 70%;
    }

    .accordion {
        background-color: #fff;
        border-radius: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        margin-bottom: 10px;
        overflow: hidden;
    }

    .accordion-header {
        padding: 16px 20px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: bold;
        color: #1f2937;
        transition: background-color 0.3s ease;
    }

    .accordion-header.open {
        background-color: #dbeafe;
        /* 青系で強調 */
        /* color: #1d4ed8; */
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        background-color: #f3f4f6;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0 20px;
    }

    .accordion-content.open {
        padding: 16px 20px;
        max-height: 200px;
    }

    .icon {
        font-size: 1.2em;
        font-weight: bold;
        transition: transform 0.3s ease;
    }

    .qa-label {
        font-weight: bold;
        margin-right: 4px;
    }

    .qa-label.q {
        color: #1d4ed8;
        /* 青 */
    }

    .qa-label.a {
        color: #0ea5e9;
        /* 水色 */
    }

    footer {
        width: 100%;
        margin-top: 80px;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer-inner {
        max-width: 800px;
        margin: 0 auto 40px;
        display: flex;
        gap: 30px;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .footer-left {
        width: 50%;
    }

    .footer-left ul {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        flex: 1;
        list-style: none;
        padding: 0;
        margin: 0;
        color: #60a5fa;
        font-size: 0.9em;
    }

    .footer-left li {
        width: 180px;
    }

    .footer-left .logo {
        width: 240px;
        margin-bottom: 16px;
        margin: 0 auto;
    }

    .circle {
        color: #3283ff;
    }

    .divider {
        width: 1px;
        background-color: #444;
        height: 300px;
    }

    .footer-right {
        flex: 1;
        text-align: center;
        position: relative;
    }

    .footer-right .circle {
        display: inline-block;
        background: #3b82f6;
        color: white;
        font-weight: bold;
        border-radius: 50%;
        width: 28px;
        height: 28px;
        line-height: 28px;
        text-align: center;
        margin-right: 5px;
    }

    .footer-right .ai {
        color: #3b82f6;
        font-weight: bold;
    }

    #fixed-girl {
        position: fixed;
        bottom: 0;
        right: 100px;
        width: 200px;
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }

    #fixed-girl.fixed {
        opacity: 1;
        pointer-events: auto;
    }




    .cta2 {
        text-align: center;
        margin-top: 40px;
        transition: transform 0.2s ease;
    }

    .cta2:hover {
        transform: scale(1.05);
    }

    .cta2 img {
        width: 300px;
    }


    .footer-bottom {
        width: 80%;
        margin: 0 auto;
    }

    .footer-bottom ul {
        display: flex;
        justify-content: center;
    }

    .footer-bottom li {
        margin: 10px;
        list-style: none;
    }

    small {
        display: block;
        text-align: center;
    }

    /* ページトップ */
    /*========= ページトップのためのCSS ===============*/
    /*リンクを右下に固定*/
    #page-top {
        position: fixed;
        right: 10px;
        bottom: 30px;
        z-index: 1001;
        /*はじめは非表示*/
        opacity: 0;
        transform: translateY(150px);
    }

    /*　上に上がる動き　*/
    #page-top.UpMove {
        animation: UpAnime 0.5s forwards;
    }

    @keyframes UpAnime {
        from {
            opacity: 0;
            transform: translateY(150px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /*　下に下がる動き　*/
    #page-top.DownMove {
        animation: DownAnime 0.5s forwards;
    }

    @keyframes DownAnime {
        from {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 1;
            transform: translateY(150px);
        }
    }

    /*画像の切り替えと動き*/
    #page-top a {
        /*aタグの形状*/
        display: block;
        width: 100px;
        height: 100px;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;
        font-size: 0.6rem;
        /*背景画像の指定*/
        background: url("../img/top/DOWN.png") no-repeat center;
        background-size: contain;
    }

    /*スマホだけ改行*/
    .br-sp {
        display: none;
    }

    #page-top.floatAnime a {
        width: 100px;
        height: 130px;
        /*背景画像の指定*/
        background: url("../img/top/TOP.png") no-repeat center;
        background-size: contain;
        /*アニメーションの指定*/
        animation: floatAnime 2s linear infinite;
        opacity: 0;
    }

    @keyframes floatAnime {
        0% {
            transform: translateX(0);
            opacity: 0;
        }

        25% {
            transform: translateX(-6px);
            opacity: 1;
        }

        50% {
            transform: translateX(0)
        }

        100% {
            transform: translateX(6px);
            opacity: 1;
        }
    }

    /*Page Topと書かれたテキストの位置*/
    #page-top span {
        position: absolute;
        bottom: -20px;
        right: 20px;
        color: #fff;
    }

    /* --- 固定CTAボタンのスタイル --- */
    .fixed-cta-container {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 130px;
        display: flex;
        justify-content: center;
        z-index: 1000;
        pointer-events: none;
        /* コンテナ自体はクリックできないようにする */
        backdrop-filter: blur(6px);
        background-color: rgba(0, 122, 255, 0.7);
        /* 少し透明度下げて可読性UP */
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.4s ease-out, transform 0.4s ease-out;

    }

    .fixed-cta-container.is-hidden {
        opacity: 0;
        transform: translateY(100%);
    }

    .recommend-cta {
        text-align: center;
        padding: 20px 0;
    }

    .recommend-text {
        font-size: 14px;
        color: #fff;
        margin-bottom: 10px;
        font-weight: bold;
    }
    .fixed-cta{
        pointer-events: auto; /* ← これでクリック可能に */
        margin-top: 0;
    }


}




/* タブレット */
@media (min-width: 641px) and (max-width: 1024px) {
    /* タブレット向けのスタイル */

    body {
        background-color: #fafbfc;
        font-family: "Noto Sans JP", sans-serif;
        min-width: 641px;
        max-width: 1024px;
        padding-bottom: 100px;
    }

    a {
        text-decoration: none;
        color: #333;
    }

 .sp-br, .sp-table, .sp-fv, .marquee-bg, .sp-cta {
        display: none;
    }

    /* header */
    #header img {
        width: 250px;
    }

    /*========= ナビゲーションのためのCSS ===============*/

    #g-nav {
        /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
        position: fixed;
        z-index: -1;
        opacity: 0;
        /*はじめは透過0*/
        /*ナビの位置と形状*/
        top: 0;
        width: 100%;
        height: 100vh;
        /*ナビの高さ*/
        background: rgba(255, 255, 255, 0.8);
        /*背景を少し透過させる*/
        /*動き*/
        transition: all 0.3s;
    }

    /*アクティブクラスがついたら透過なしにして最前面へ*/
    #g-nav.panelactive {
        opacity: 1;
        z-index: 999;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list {
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        /*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    /*ナビゲーション*/
    #g-nav ul {
        display: none;
        /*はじめは非表示*/
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #g-nav.panelactive ul {
        display: block;
    }

    /*リストのレイアウト設定*/

    #g-nav li {
        list-style: none;
        text-align: center;
    }

    #g-nav li a {
        color: #333;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 0;
        right: 15px;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #3283ff;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

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

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }


    .g-nav-extra {
        padding-bottom: 20px;
        border-bottom: 1px solid #ddd;
        width: 80%;
        max-width: 300px;
        margin: 20px auto;
    }

    .g-nav-cta img {
        width: 100%;
        height: auto;
        transition: transform 0.2s ease;
        padding-left: 20px;
    }

    .g-nav-cta:hover {
        transform: scale(1.05);
    }

    .g-nav-sns {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .g-nav-sns img {
        width: 32px;
        height: 32px;
    }

    .header-wrap {
        display: none;
    }

    .cta-btn {
        display: inline-block;
    }

    .cta-img {
        width: 100%;
        /* お好みで調整可能 */
        transition: transform 0.2s ease;
    }

    .cta-img:hover {
        transform: scale(1.05);
    }

    .fv {
        width: 100%;
        padding-top: 40px;
        background-image: url(../img/top/top_fv_bk.png);
        background-size: cover;
    }

    .fv_up {
        text-align: center;
    }

    .fv_up img {
        width: 600px;
    }

    .fv-cta {
        width: 600px;
        margin: 0 auto;
        margin-top: -110px;
        padding-left: 30px;
        padding-bottom: 5px;
        transition: transform 0.2s ease;
    }

    .fv-cta:hover {
        transform: scale(1.05);
    }

    .fv-cta img {
        width: 270px;
    }


    .dena {
        width: 600px;
        margin: 80px auto;
    }

    .dena img {
        width: 100%;
    }
    .feature-intro {
        margin-bottom: 100px;
        background-color: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border-radius: 12px;
        padding: 40px 40px 0 40px;
    }

    /* セクション全体 */
    .service-feature-section {
        width: 80%;
        margin: 0 auto;
    }


    /* 下段：3つの革新ポイント */
    .feature-points {
        text-align: center;
    }
    h2 {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 60px;
        display: inline-block;
        position: relative;
        color: #333;
    }

    .points-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .point-card {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(149, 157, 165, 0.1);
        text-align: left;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .point-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(149, 157, 165, 0.15);
    }

    .point-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

    .point-card-content {
        padding: 20px 20px 30px 20px;
    }

    .point-card h3 {
        font-size: 20px;
        font-weight: 500;
        margin-top: 0;
        margin-bottom: 20px;
        color: #333;
        text-align: center;
    }

    .point-card p {
        font-size: 15px;
        line-height: 1.7;
        color: #666;
        margin-bottom: 0;
    }

    /* 上段：ソラクラウドとは？ */

    .text-highlight {
        color: #3283ff;
        /* テキストの青色 */
        font-weight: 600;
        /* 少し太字にして強調 */
    }

    .feature-intro-text img {
        display: none;
    }

    .feature-intro-image {
        flex: 1;
        width: 60%;
    }

    .feature-intro-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* スマホだけ改行 */
    .br-sp {
        display: block;
    }

    /* 下段：3つの革新ポイント */
    .feature-points {
        text-align: center;
        margin-bottom: 100px;
    }


    .point-card {
        width: 100%;
        margin: 0 auto;
        background-color: #fff;
        border-radius: 30px;
        box-shadow: 0 8px 24px rgba(149, 157, 165, 0.1);
        text-align: left;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .point-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(149, 157, 165, 0.15);
    }

    .point-card img {
        width: 100%;
        object-fit: cover;
        display: block;
    }

    .point-card-content {
        padding: 20px 20px 30px 20px;
    }

    .point-card h3 {
        font-size: 20px;
        font-weight: 500;
        margin-top: 0;
        margin-bottom: 20px;
        color: #333;
        text-align: center;
    }

    .point-card p {
        font-size: 15px;
        line-height: 1.7;
        color: #666;
        margin-bottom: 0;
    }

    /* フェードアップアニメーション共通 */
    .fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
        z-index: 0;
        /* ヘッダーより後ろに */
        position: relative;
        /* これを加えて z-index 有効化 */
    }

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-up>h3 {
        font-size: 20px;
        margin-top: 100px;
    }

    .solacloud0 {
        width: 600px;
        margin: 60px auto;
        display: flex;
        align-items: center;
    }

    .sola-left {
        width: 60%;
    }

    .solacloud0 h2 {
        margin: 8px 0;
    }

    .solacloud0 h3 {
        position: relative;
        padding-left: 40px;
        margin: 16px 0;
        /* ラインとドット分の余白 */
        font-weight: bold;
    }

    .solacloud0 h3::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        /* ライン長さ */
        height: 2px;
        /* ラインの太さ */
        background-color: #00aaff;
        /* 水色ライン */
    }

    .solacloud0 h3::after {
        content: "";
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        background-color: #00aaff;
        /* 水色ドット */
        border-radius: 50%;
    }

    .sola-right {
        width: 40%;
        text-align: center;
    }

    .sola-right img {
        width: 90%;
    }

    .marquee {
        overflow: hidden;
        white-space: nowrap;
        position: relative;
    }

    .marquee-inner {
        display: inline-block;
        white-space: nowrap;
        animation: marquee 40s linear infinite;
        margin: 40px 0;
    }

    .marquee-inner span {
        display: inline-block;
        padding-right: 100vw;
        /* テキストの間に十分な余白をつけて繰り返す */
        font-size: 80px;
        font-weight: 700;
        letter-spacing: 16px;
        color: transparent;
        background: linear-gradient(120deg,
                rgba(255, 255, 255, 0.2) 0%,
                rgba(0, 183, 255, 0.4) 50%,
                rgba(255, 255, 255, 0.2) 100%);
        background-size: 200% auto;
        -webkit-background-clip: text;
        background-clip: text;
        animation: shine 3s linear infinite;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    @keyframes shine {
        0% {
            background-position: 200% center;
        }

        100% {
            background-position: -200% center;
        }
    }

    .solo-point6 {
        margin: 40px auto;
        text-align: center;
    }

    .point {
        width: 100%;
        display: flex;
        text-align: center;
        justify-content: center;
    }

    .point img {
        width: 45%;
    }

    .round-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #222;
        /* 黒背景 */
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        padding: 16px 32px;
        border-radius: 9999px;
        /* 丸くする */
        font-size: 16px;
        gap: 12px;
        /* 文字と矢印の間隔 */
        transition: background 0.3s;
        border: 2px solid transparent;
    }

    .round-button:hover {
        background-color: #444;
    }

    .round-button .arrow {
        display: inline-block;
        font-size: 18px;
        border: 1px solid #fff;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        line-height: 22px;
        text-align: center;
        font-weight: normal;
    }

    .btn {
        text-align: center;
        margin-bottom: 40px;
    }

    .vs {
        width: 600px;
        text-align: center;
        margin: 40px auto;
    }

    .vs img {
        width: 100%;
    }

    .check {
        width: 600px;
        text-align: center;
        margin: 80px auto;
    }

    .check img {
        width: 600px;
    }

    .cta {
        text-align: center;
        margin-top: -100px;
        transition: transform 0.2s ease;
    }

    .cta:hover {
        transform: scale(1.05);
    }

    .cta img {
        width: 320px;
        padding-left: 40px;
    }

    .future {
        width: 600px;
        margin: 100px auto;
        text-align: center;
        position: relative;
        z-index: 100;
        height: 170vh;
    }

    .future h2 {
        margin: 20px 0;
    }

    .future p {
        margin: 20px 0;
    }

    .future img {
        width: 90%;
        margin-top: 80px;
    }

    .future-text {
        position: absolute;
        z-index: 100;
        width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .text-color {
        color: #3283ff;
    }

    /* ========== 重ね合わせ要素の修正CSS ========== */

    /* 1. 親コンテナ（画像ブロック）を相対位置の基準点にする */
    .some-image-block {
        position: relative;
        /* 子のabsolute配置の基準点となる */
        width: 90%;
        max-width: 700px;
        /* PCでの画像の最大サイズに合わせる */
        margin: 40px auto;
        /* 上下の余白を調整 */
        text-align: center;
    }



    .some-image-block img {
        width: 100%;
        height: auto;
        display: block;
    }

    .target-section {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        transform: translate(-50%, -50%) scale(1.15);
        display: block !important;
        pointer-events: none;
    }

    .circle-container {
        position: relative;
        width: 100%;
        height: 100%;
        opacity: 1;
        /* .active クラスに頼らず常に表示 */
    }

    .circle-text-wrapper {
        animation: rotate 30s linear infinite;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    .circle-text text {
        font-size: 18px;
        letter-spacing: 1px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        fill: url(#textGradient);
    }

    @keyframes rotate {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }


    .swiper-wrapper {
        justify-content: center !important;
    }

    .swiper-slide.card {
        min-width: 200px;
        max-width: 220px;
        box-sizing: border-box;
    }


    .voice-section {
        width: 100%;
        padding: 80px 0;
        text-align: center;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .swiper-slide.card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        text-align: left;
    }

    .name {
        font-weight: bold;
        font-size: 14px;
        margin-bottom: 4px;
    }

    .rating {
        color: #007aff;
        font-size: 14px;
        margin-bottom: 12px;
    }

    .comment {
        font-size: 14px;
        line-height: 1.6;
    }

    .flow-section {
        text-align: center;
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .flow-box {
        width: 600px;
        margin: 0 auto;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .flow-step {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
        position: relative;
    }

    .flow-icon img {
        width: 64px;
        height: 64px;
    }

    .flow-icon {
        display: flex;
        align-items: center;
        width: 330px;
    }

    .flow-icon h3 {
        font-size: 16px;
        font-weight: bold;
        margin-left: 10px;
    }

    .flow-text-right {
        width: 50%;
    }

    .flow-step p {
        font-size: 14px;
        line-height: 1.6;
    }



    .qa {
        width: 600px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        padding: 40px;
    }
    .qa h2{
        margin-bottom: 0;
    }

    .qa-left {
        width: 100%;
        margin-bottom: 40px;
    }

    .qa-left {
        text-align: center;
    }

    .qa-right {
        width: 100%;

    }

    .accordion {
        background-color: #fff;
        border-radius: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        margin-bottom: 10px;
        overflow: hidden;
    }

    .accordion-header {
        padding: 16px 20px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: bold;
        color: #1f2937;
        transition: background-color 0.3s ease;
    }

    .accordion-header.open {
        background-color: #dbeafe;
        /* 青系で強調 */
        /* color: #1d4ed8; */
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        background-color: #f3f4f6;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0 20px;
    }

    .accordion-content.open {
        padding: 16px 20px;
        max-height: 200px;
    }

    .icon {
        font-size: 1.2em;
        font-weight: bold;
        transition: transform 0.3s ease;
    }

    .qa-label {
        font-weight: bold;
        margin-right: 4px;
    }

    .qa-label.q {
        color: #1d4ed8;
        /* 青 */
    }

    .qa-label.a {
        color: #0ea5e9;
        /* 水色 */
    }

    footer {
        width: 100%;
        margin-top: 80px;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer-inner {
        max-width: 600px;
        margin: 0 auto 40px;
        display: flex;
        gap: 30px;
        align-items: end;
        justify-content: center;
        position: relative;
    }

    .footer-left {
        width: 40%;
    }

    .footer-left ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
        flex: 1;
        list-style: none;
        padding: 0;
        margin: 0;
        color: #60a5fa;
        font-size: 0.9em;
    }

    .footer-left li {
        width: 180px;
    }

    .footer-left .logo {
        width: 240px;
        margin-bottom: 16px;
        margin: 0 auto;
    }

    .circle {
        color: #3283ff;
    }

    .divider {
        width: 1px;
        background-color: #444;
        height: 300px;
    }

    .footer-right {
        flex: 1;
        text-align: center;
        position: relative;
    }

    .footer-right .circle {
        display: inline-block;
        background: #3b82f6;
        color: white;
        font-weight: bold;
        border-radius: 50%;
        width: 28px;
        height: 28px;
        line-height: 28px;
        text-align: center;
        margin-right: 5px;
    }

    .footer-right .ai {
        color: #3b82f6;
        font-weight: bold;
    }

    #fixed-girl {
        display: none;
    }


    .cta2 {
        text-align: center;
        margin-top: 40px;
        transition: transform 0.2s ease;
    }

    .cta2:hover {
        transform: scale(1.05);
    }

    .cta2 img {
        width: 300px;
    }


    .footer-bottom {
        width: 80%;
        margin: 0 auto;
    }

    .footer-bottom ul {
        display: flex;
        justify-content: center;
    }

    .footer-bottom li {
        margin: 10px;
        list-style: none;
    }

    .footer-bottom {
        font-size: 14px;
    }

    small {
        display: block;
        text-align: center;
    }

    /* ページトップ */
    /*========= ページトップのためのCSS ===============*/
    /*リンクを右下に固定*/
    #page-top {
        position: fixed;
        right: 10px;
        bottom: 30px;
        z-index: 1001;
        /*はじめは非表示*/
        opacity: 0;
        transform: translateY(150px);
    }

    /*　上に上がる動き　*/
    #page-top.UpMove {
        animation: UpAnime 0.5s forwards;
    }

    @keyframes UpAnime {
        from {
            opacity: 0;
            transform: translateY(150px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /*　下に下がる動き　*/
    #page-top.DownMove {
        animation: DownAnime 0.5s forwards;
    }

    @keyframes DownAnime {
        from {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 1;
            transform: translateY(150px);
        }
    }

    /*画像の切り替えと動き*/
    #page-top a {
        /*aタグの形状*/
        display: block;
        width: 100px;
        height: 100px;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;
        font-size: 0.6rem;
        /*背景画像の指定*/
        background: url("../img/top/DOWN.png") no-repeat center;
        background-size: contain;
    }

    #page-top.floatAnime a {
        width: 100px;
        height: 130px;
        /*背景画像の指定*/
        background: url("../img/top/TOP.png") no-repeat center;
        background-size: contain;
        /*アニメーションの指定*/
        animation: floatAnime 2s linear infinite;
        opacity: 0;
    }

    @keyframes floatAnime {
        0% {
            transform: translateX(0);
            opacity: 0;
        }

        25% {
            transform: translateX(-6px);
            opacity: 1;
        }

        50% {
            transform: translateX(0)
        }

        100% {
            transform: translateX(6px);
            opacity: 1;
        }
    }

    /*Page Topと書かれたテキストの位置*/
    #page-top span {
        position: absolute;
        bottom: -20px;
        right: 20px;
        color: #fff;
    }


     /* --- 固定CTAボタンのスタイル --- */
     .fixed-cta-container {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 130px;
        display: flex;
        justify-content: center;
        z-index: 1000;
        pointer-events: none;
        /* コンテナ自体はクリックできないようにする */
        backdrop-filter: blur(6px);
        background-color: rgba(0, 122, 255, 0.7);
        /* 少し透明度下げて可読性UP */
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.4s ease-out, transform 0.4s ease-out;

    }

    .fixed-cta-container.is-hidden {
        opacity: 0;
        transform: translateY(100%);
    }

    .recommend-cta {
        text-align: center;
        padding: 20px 0;
    }

    .recommend-text {
        font-size: 14px;
        color: #fff;
        margin-bottom: 10px;
        font-weight: bold;
    }
    .fixed-cta{
        pointer-events: auto; /* ← これでクリック可能に */
        margin-top: 0;
    }

}

/* モバイル */
@media (max-width: 640px) {

    /* スマホ向けのスタイル */
    body {
        background-color: #fafbfc;
        font-family: "Noto Sans JP", sans-serif;
        max-width: 640px;
        padding-bottom: 150px;
    }
    .container{
        width: 100%;
    }

    .target-section {
        overflow-x: hidden;
        /* min-height: 90vh; */
    }

    a {
        text-decoration: none;
        color: #333;
    }

    .none, .pc-table {
        display: none;
    }

    /* header */
    #header img {
        width: 50%;
        margin-left: 10px;
    }

    .sp-header {
        width: 100%;
        height: 67px;
        background-color: #fff;
        align-items: center;
        vertical-align: middle;
        display: table;
        border-bottom: 1px solid #ededed;
    }

    .sp-header-inner {
        display: table-cell;
        vertical-align: middle;
        position: absolute;
        top: 10px;
        z-index: 1000;
    }

    /*========= ナビゲーションのためのCSS ===============*/

    #g-nav {
        /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
        position: fixed;
        z-index: -1;
        opacity: 0;
        /*はじめは透過0*/
        /*ナビの位置と形状*/
        top: 0;
        width: 100%;
        height: 100vh;
        /*ナビの高さ*/
        background: rgba(255, 255, 255, 0.8);
        /*背景を少し透過させる*/
        /*動き*/
        transition: all 0.3s;
    }

    /*アクティブクラスがついたら透過なしにして最前面へ*/
    #g-nav.panelactive {
        opacity: 1;
        z-index: 999;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list {
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        /*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    /*ナビゲーション*/
    #g-nav ul {
        display: none;
        /*はじめは非表示*/
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #g-nav.panelactive ul {
        display: block;
    }

    /*リストのレイアウト設定*/

    #g-nav li {
        list-style: none;
        text-align: center;
    }

    #g-nav li a {
        color: #333;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 9px;
        right: 15px;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #3283ff;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

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

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .g-nav-extra {
        padding-bottom: 20px;
        border-bottom: 1px solid #ddd;
        width: 80%;
        max-width: 300px;
        margin: 20px auto;
    }

    .g-nav-cta img {
        width: 100%;
        height: auto;
        transition: transform 0.2s ease;
        padding-left: 20px;
    }

    .g-nav-cta:hover {
        transform: scale(1.05);
    }

    .g-nav-sns {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .g-nav-sns img {
        width: 32px;
        height: 32px;
    }

    .header-wrap {
        display: none;
    }

    .cta-btn {
        display: inline-block;
    }

    .cta-img {
        width: 100%;
        /* お好みで調整可能 */
        transition: transform 0.3s ease;
    }

    .cta-img:hover {
        transform: scale(1.05);
    }

    .sp-fv img {
        width: 100%;
        margin-top: -67px;
    }

    .sp-cta {
        margin: 20px auto;
        text-align: center;
    }

    .sp-fv {
        font-size: 10px;
        text-align: center;
    }

    .fv_up, .pc-cta {
        display: none;
    }

    .fv-cta:hover {
        transform: scale(1.05);
    }

    .fv-cta img {
        width: 350px;
        margin: 40px 0 20px;
    }

    .dena {
        width: 80%;
        margin: 20px auto;
    }

    .dena img {
        width: 100%;
    }

    /* セクション全体 */
    .service-feature-section {
        width: 90%;
        margin: 0 auto;
    }

    /* 上段：ソラクラウドとは？ */
    .feature-intro {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 100px;
        background-color: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border-radius: 12px;
        padding: 32px 25px 0 25px;
    }

    .feature-intro-text {
        flex: 1.2;
    }

    .feature-intro-text h2 {
        font-size: 25px;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 28px;
        color: #333;
        text-align: center;
    }

    .feature-intro-text p {
        font-size: 14px;
        line-height: 1.9;
        color: #555;
        letter-spacing: 0.1em;
        text-align: justify;
    }

    .text-highlight {
        color: #3283ff;
        /* テキストの青色 */
        font-weight: 600;
        /* 少し太字にして強調 */
    }

    .feature-intro-text img {
        display: none;
    }

    .feature-intro-image {
        flex: 1;
        width: 60%;
    }

    .feature-intro-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* 下段：3つの革新ポイント */
    .feature-points {
        text-align: center;
    }

    .feature-points>h2 {
        font-size: 25px;
        font-weight: 700;
        margin-bottom: 60px;
        display: inline-block;
        position: relative;
        color: #333;
        line-height: 43px;
    }

    .points-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .point-card {
        width: 100%;
        margin: 0 auto;
        background-color: #fff;
        border-radius: 30px;
        box-shadow: 0 8px 24px rgba(149, 157, 165, 0.1);
        text-align: left;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .point-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(149, 157, 165, 0.15);
    }

    .point-card img {
        width: 100%;
        object-fit: cover;
        display: block;
    }

    .point-card-content {
        padding: 20px 20px 30px 20px;
    }

    .point-card h3 {
        font-size: 20px;
        font-weight: 500;
        margin-top: 0;
        margin-bottom: 20px;
        color: #333;
        text-align: center;
    }

    .point-card p {
        font-size: 14px;
        line-height: 1.7;
        color: #666;
        margin-bottom: 0;
    }


    /* フェードアップアニメーション共通 */
    .fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
        z-index: 0;
        /* ヘッダーより後ろに */
        position: relative;
        /* これを加えて z-index 有効化 */
    }

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-up>h3 {
        font-size: 25px;
        margin-top: 100px;
        line-height: 43px;
    }

    .solacloud0 {
        width: 90%;
        margin: 60px auto;
        display: flex;
        flex-direction: column;
    }

    .sola-left {
        width: 90%;
        margin: 0 auto;
    }

    .solacloud0 h2 {
        margin: 8px 0;
    }

    .solacloud0 h3 {
        position: relative;
        padding-left: 40px;
        margin: 35px 0;
        /* ラインとドット分の余白 */
        font-weight: 500;
        font-size: 17px;
        line-height: 27px;
    }

    .solacloud0 h3::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        /* ライン長さ */
        height: 2px;
        /* ラインの太さ */
        background-color: #00aaff;
        /* 水色ライン */
    }

    .solacloud0 h3::after {
        content: "";
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        background-color: #00aaff;
        /* 水色ドット */
        border-radius: 50%;
    }

    .solacloud0 p {
        font-size: 15px;
        line-height: 27px;
        text-align: justify;
    }

    .sola-right {
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }

    .sola-right img {
        width: 100%;
        margin-top: 40px;
    }

    .solo-point6 h3 {
        font-size: 22px;
        margin-top: 100px;
        margin-bottom: 60px;
        line-height: 43px;
    }

    .sola-sp {
        flex-direction: column-reverse;
    }

    .marquee {
        overflow: hidden;
        white-space: nowrap;
        position: relative;
    }

    .marquee-inner {
        display: inline-block;
        white-space: nowrap;
        animation: marquee 40s linear infinite;
        margin: 20px auto 40px;
    }

    .marquee-inner span {
        display: inline-block;
        padding-right: 100vw;
        /* テキストの間に十分な余白をつけて繰り返す */
        font-size: 80px;
        font-weight: 700;
        letter-spacing: 16px;
        color: transparent;
        background: linear-gradient(120deg,
                rgba(255, 255, 255, 0.2) 0%,
                rgba(0, 183, 255, 0.4) 50%,
                rgba(255, 255, 255, 0.2) 100%);
        background-size: 200% auto;
        -webkit-background-clip: text;
        background-clip: text;
        animation: shine 3s linear infinite;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    @keyframes shine {
        0% {
            background-position: 200% center;
        }

        100% {
            background-position: -200% center;
        }
    }

    .solo-point6 {
        margin: 40px auto;
        text-align: center;
    }

    .point {
        width: 100%;
        display: flex;
        text-align: center;
        flex-direction: column;
    }

    .point img {
        width: 100%;
    }

    .round-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #222;
        /* 黒背景 */
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        padding: 16px 32px;
        border-radius: 9999px;
        /* 丸くする */
        font-size: 16px;
        gap: 12px;
        /* 文字と矢印の間隔 */
        transition: background 0.3s;
        border: 2px solid transparent;
    }

    .round-button:hover {
        background-color: #444;
    }

    .round-button .arrow {
        display: inline-block;
        font-size: 18px;
        border: 1px solid #fff;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        line-height: 22px;
        text-align: center;
        font-weight: normal;
    }

    .btn {
        text-align: center;
        margin-bottom: 40px;
    }

    .vs {
        width: 90%;
        text-align: center;
        margin: 20px auto;
    }

    .vs img {
        margin: 40px 0 30px;
        width: 100%;
    }

    .pc-table {
        display: none;
    }

    .check {
        width: 360px;
        text-align: center;
        margin: 80px auto;
    }

    .check img {
        width: 340px;
    }

    .cta-sp {
        text-align: center;
        margin-top: -120px;
        transition: transform 0.2s ease;
    }

    .cta-sp:hover {
        transform: scale(1.05);
    }

    .cta-sp img {
        width: 300px;
        padding-left: 20px;
    }


    .future {
        width: 90%;
        margin: 100px auto 0;
        text-align: center;
        position: relative;
        z-index: 100;
    }

    .future h2 {
        margin: 20px 0;
    }

    .future p {
        margin: 20px 0;
    }

    .future img {
        width: 100%;
        margin-top: 14%;
    }

    .future-text {
        /* position: absolute; */
        z-index: 100;
        width: 90%;
        margin: 0 auto;
        text-align: center;
        font-size: 14px;
    }

    .text-color {
        color: #3283ff;
    }

    .target-section {
        display: none;
    }

    .marquee-bg {
        position: absolute;
        top: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 110%;
        z-index: 1;
        /* 画像より下、marquee-textの背景 */
        overflow: hidden;
        white-space: nowrap;
    }

    .marquee-bg span {
        font-size: 50px !important;
    }


    .swiper-wrapper {
        justify-content: center !important;
    }

    .swiper-slide.card {
        min-width: 200px;
        max-width: 300px;
        box-sizing: border-box;
    }

    .some-image-block {
        position: relative;
        z-index: 2;
    }

    .voice-section {
        width: 100%;
        padding: 80px 0;
        text-align: center;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .swiper-slide.card {
        background: #fff;
        border: 1px solid #eee;
        text-align: left;
        border: 1px solid #eee;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    }

    .name {
        font-weight: bold;
        font-size: 14px;
        margin-bottom: 4px;
    }

    .rating {
        color: #007aff;
        font-size: 14px;
        margin-bottom: 12px;
    }

    .comment {
        font-size: 14px;
        line-height: 1.6;
    }

    .flow-section {
        text-align: center;
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .flow-box {
        width: 100%;
        margin: 16px auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .flow-step {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        text-align: left;
        position: relative;
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        width: 90%;

    }

    .flow-icon img {
        width: 64px;
        height: 64px;
    }

    .flow-icon {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 320px;
    }

    .flow-icon h3 {
        font-size: 18px;
        font-weight: bold;
        margin-left: 10px;
    }

    .flow-text-right {
        width: 80%;
    }

    .flow-text-left {
        width: 70%;
    }

    .flow-step p {
        font-size: 14px;
        line-height: 1.6;
    }

    .qa {
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        padding: 40px;
    }

    .qa-left {
        width: 100%;
        margin-bottom: 40px;
    }

    .qa-left {
        text-align: center;
    }

    .qa-right {
        width: 100%;

    }

    .accordion {
        background-color: #fff;
        border-radius: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        margin-bottom: 10px;
        overflow: hidden;
    }

    .accordion-header {
        padding: 16px 20px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: bold;
        color: #1f2937;
        transition: background-color 0.3s ease;
    }

    .accordion-header.open {
        background-color: #dbeafe;
        /* 青系で強調 */
        /* color: #1d4ed8; */
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        background-color: #f3f4f6;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0 20px;
    }

    .accordion-content.open {
        padding: 16px 20px;
        max-height: 200px;
    }

    .icon {
        font-size: 1.2em;
        font-weight: bold;
        transition: transform 0.3s ease;
    }

    .qa-label {
        font-weight: bold;
        margin-right: 4px;
    }

    .qa-label.q {
        color: #1d4ed8;
        /* 青 */
    }

    .qa-label.a {
        color: #0ea5e9;
        /* 水色 */
    }

    footer {
        width: 100%;
        margin-top: 20px;
    }

    .footer {
        padding: 20px 20px 0;
    }

    .footer-inner {
        width: 80%;
        margin: 0 auto 40px;
        position: relative;
    }

    .footer-left {
        width: 80%;
        margin: 0 auto;
    }

    .footer-left ul {
        list-style: none;
        padding: 0;
        margin: 0;
        color: #60a5fa;
        font-size: 0.9em;
    }

    .footer-left li {
        width: 250px;
        margin: 10px 0;
    }

    .footer-left .logo {
        width: 100%;
        margin-bottom: 16px;
        margin: 0 auto;
    }

    .circle {
        color: #3283ff;
    }

    .footer-right {
        display: none;
    }


    #fixed-girl {
        display: none;
    }

    .footer-bottom {
        width: 80%;
        margin: 0 auto;
    }

    .footer-bottom ul {
        display: flex;
        flex-wrap: wrap;
    }

    .footer-bottom li {
        margin: 5px;
        list-style: none;
        width: 45%;
    }

    .footer-bottom {
        font-size: 10px;
    }

    small {
        margin: 10px 0 5px;
        display: block;
        text-align: center;
        font-size: 8px !important;
    }

    /* ページトップ */
    /*========= ページトップのためのCSS ===============*/
    /*リンクを右下に固定*/
    #page-top {
        position: fixed;
        right: 10px;
        bottom: 30px;
        z-index: 1001;
        /*はじめは非表示*/
        opacity: 0;
        transform: translateY(150px);
    }

    /*　上に上がる動き　*/
    #page-top.UpMove {
        animation: UpAnime 0.5s forwards;
    }

    @keyframes UpAnime {
        from {
            opacity: 0;
            transform: translateY(150px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /*　下に下がる動き　*/
    #page-top.DownMove {
        animation: DownAnime 0.5s forwards;
    }

    @keyframes DownAnime {
        from {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 1;
            transform: translateY(150px);
        }
    }

    /*画像の切り替えと動き*/
    #page-top a {
        /*aタグの形状*/
        display: block;
        width: 80px;
        height: 80px;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;
        font-size: 0.6rem;
        /*背景画像の指定*/
        background: url("../img/top/DOWN.png") no-repeat center;
        background-size: contain;
    }

    #page-top.floatAnime a {
        width: 100px;
        height: 130px;
        /*背景画像の指定*/
        background: url("../img/top/TOP.png") no-repeat center;
        background-size: contain;
        /*アニメーションの指定*/
        animation: floatAnime 2s linear infinite;
        opacity: 0;
    }

    @keyframes floatAnime {
        0% {
            transform: translateX(0);
            opacity: 0;
        }

        25% {
            transform: translateX(-6px);
            opacity: 1;
        }

        50% {
            transform: translateX(0)
        }

        100% {
            transform: translateX(6px);
            opacity: 1;
        }
    }

    /*Page Topと書かれたテキストの位置*/
    #page-top span {
        position: absolute;
        bottom: -10px;
        right: 10px;
        color: #fff;
    }

       /* --- 固定CTAボタンのスタイル --- */
       .fixed-cta-container {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 130px;
        display: flex;
        justify-content: center;
        z-index: 1000;
        pointer-events: none;
        /* コンテナ自体はクリックできないようにする */
        backdrop-filter: blur(6px);
        background-color: rgba(0, 122, 255, 0.7);
        /* 少し透明度下げて可読性UP */
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.4s ease-out, transform 0.4s ease-out;

    }

    .fixed-cta-container.is-hidden {
        opacity: 0;
        transform: translateY(100%);
    }

    .recommend-cta {
        text-align: center;
        padding: 20px 0;
    }

    .recommend-text {
        font-size: 14px;
        color: #fff;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .fixed-cta {
        text-align: center;
        margin-top: 40px;
        transition: transform 0.2s ease;
        pointer-events: auto; /* ← これでクリック可能に */
        margin-top: 0;
    }
    .fixed-cta:hover {
        transform: scale(1.05);
    }
    .fixed-cta img {
        width: 280px;
    }

}