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

    html {
        scroll-behavior: smooth;
        /* ページ内リンクのスムーズスクロール (任意) */
    }

    #header,
    nav,
    .sp-br,
    .sp-fv, .sp-table {
        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: 16px;
    }

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

    .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: 8px;
        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: 12px;
        font-size: 12px;
    }

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

    .about {
        width: 100%;
        background-color: #3283ff;
        text-align: center;
        margin-top: 100px;
        padding: 40px 0;
        color: #fff;
    }

    .breadcrumb {
        width: 1000px;
        margin: 0 auto;
        padding: 10px 40px;
        list-style: none;
        background-color: #f8f9fa;
        /* 背景色は画像に合わせて調整してください */
        font-size: 14px;
    }

    .breadcrumb li {
        display: inline;
    }

    .breadcrumb li+li:before {
        padding: 0 8px;
        color: #6c757d;
        content: ">";
    }

    .breadcrumb li a {
        color: #007bff;
        text-decoration: none;
    }

    .breadcrumb li a:hover {
        text-decoration: underline;
    }

    .breadcrumb li.active {
        color: #333;
    }

    /* ここまで共通 */

    /* FAQコンテナのスタイリング（画面幅800px、中央寄せ） */
    .faq-container {
        max-width: 800px;
        margin: 40px auto;
        /* 上下に余白、左右は自動で中央寄せ */
        padding: 20px;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* 見出しのスタイリング */
    .faq-container h2 {
        text-align: center;
        color: #2c3e50;
        margin-bottom: 30px;
        border-bottom: 2px solid #e0e0e0;
        padding-bottom: 15px;
    }

    /* タブ全体のコンテナ */
    .faq-tabs {
        display: flex;
        border-bottom: 2px solid #ddd;
        margin-bottom: 20px;
    }

    /* タブボタンのスタイリング */
    .tab-button {
        padding: 10px 20px;
        cursor: pointer;
        border: none;
        background-color: transparent;
        font-size: 16px;
        color: #777;
        transition: color 0.3s, border-bottom 0.3s;
        border-bottom: 3px solid transparent;
        margin-bottom: -2px;
        /* 下線をタブコンテナの線に重ねる */
    }

    /* アクティブなタブボタンのスタイル */
    .tab-button.active {
        color: #007bff;
        border-bottom: 3px solid #007bff;
        font-weight: bold;
    }

    /* タブパネルのスタイリング */
    .tab-panel {
        display: none;
        /* デフォルトでは非表示 */
    }

    /* アクティブなタブパネルのスタイル */
    .tab-panel.active {
        display: block;
        /* アクティブなものだけ表示 */
    }

    /* アコーディオン全体のコンテナ */
    .accordion {
        margin-bottom: 15px;
        border: 1px solid #e0e0e0;
        border-radius: 5px;
        overflow: hidden;
        /* 角丸を効かせるため */
    }

    /* アコーディオンのヘッダー（質問部分） */
    .accordion-header {
        background-color: #f9f9f9;
        padding: 15px 20px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        /* テキストとアイコンを両端に配置 */
        align-items: center;
        font-weight: bold;
        font-size: 16px;
        transition: background-color 0.3s;
    }

    .accordion-header:hover {
        background-color: #f0f0f0;
    }

    /* アイコンのスタイリング */
    .accordion-header .icon {
        font-size: 20px;
        font-weight: bold;
        /* color: #007bff; */
        transition: transform 0.3s ease-in-out;
    }

    /* アコーディオンが開いている時のアイコンの回転 */
    .accordion-header.active .icon {
        transform: rotate(45deg);
    }

    /* アコーディオンのコンテンツ（回答部分） */
    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
        /* スムーズな開閉アニメーション */
        background-color: #fff;
        padding: 0 20px;
    }

    /* コンテンツ内のテキストのスタイル */
    .accordion-content p {
        margin: 0;
        padding: 20px 0;
        border-top: 1px solid #e0e0e0;
    }

    /* ここから共通 */
    /* フェードアップアニメーション共通 */
    .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);
    }

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

    .sola-left {
        width: 50%;
        padding-left: 40px;
    }

    .solacloud0 h2 {
        margin: 8px 0;
    }

    .solacloud0 h3 {
        position: relative;
        padding-left: 40px;
        margin: 24px 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: 50%;
        text-align: center;
    }

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

    /* CTA */
    .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;
    }

    .h2ttl {
        text-align: center;
        margin: 60px 0;
    }

    .smart {
        max-width: 80%;
        padding: 20px;
        text-align: center;
        margin: 0 auto;
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .smart img {
        width: 100%;
    }

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

    .section-title {
        font-size: 24px;
        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: #333;
        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;
    }

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

    /* --- 固定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;
    }
    

}

/* タブレット */
@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: 150px;
    }

    html {
        scroll-behavior: smooth;
        /* ページ内リンクのスムーズスクロール (任意) */
    }

    .sp-br,
    .header-right,
    .header-cta,
    #fixed-girl,
    .sp-fv,.sp-table {
        display: none;
    }

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

    /* 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);
    }

    .about {
        width: 100%;
        background-color: #3283ff;
        text-align: center;
        padding: 40px 0;
        color: #fff;
    }

    .breadcrumb {
        width: 100%;
        margin: 0 auto;
        padding: 10px 40px;
        list-style: none;
        background-color: #f8f9fa;
        /* 背景色は画像に合わせて調整してください */
        font-size: 14px;
    }

    .breadcrumb li {
        display: inline;
    }

    .breadcrumb li+li:before {
        padding: 0 8px;
        color: #6c757d;
        content: ">";
    }

    .breadcrumb li a {
        color: #007bff;
        text-decoration: none;
    }

    .breadcrumb li a:hover {
        text-decoration: underline;
    }

    .breadcrumb li.active {
        color: #333;
    }

    /* フェードアップアニメーション共通 */
    .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);
    }

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

    .sola-left {
        width: 50%;
        padding-left: 40px;
    }

    .solacloud0 h2 {
        margin: 8px 0;
    }

    .solacloud0 h3 {
        position: relative;
        padding-left: 40px;
        margin: 24px 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: 50%;
        text-align: center;
    }

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

    /* ここまで共通 */

    /* FAQコンテナのスタイリング（画面幅800px、中央寄せ） */
    .faq-container {
        max-width: 600px;
        margin: 40px auto;
        /* 上下に余白、左右は自動で中央寄せ */
        padding: 20px;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* 見出しのスタイリング */
    .faq-container h2 {
        text-align: center;
        color: #2c3e50;
        margin-bottom: 30px;
        border-bottom: 2px solid #e0e0e0;
        padding-bottom: 15px;
    }

    /* タブ全体のコンテナ */
    .faq-tabs {
        display: flex;
        border-bottom: 2px solid #ddd;
        margin-bottom: 20px;
    }

    /* タブボタンのスタイリング */
    .tab-button {
        padding: 10px 20px;
        cursor: pointer;
        border: none;
        background-color: transparent;
        font-size: 16px;
        color: #777;
        transition: color 0.3s, border-bottom 0.3s;
        border-bottom: 3px solid transparent;
        margin-bottom: -2px;
        /* 下線をタブコンテナの線に重ねる */
    }

    /* アクティブなタブボタンのスタイル */
    .tab-button.active {
        color: #007bff;
        border-bottom: 3px solid #007bff;
        font-weight: bold;
    }

    /* タブパネルのスタイリング */
    .tab-panel {
        display: none;
        /* デフォルトでは非表示 */
    }

    /* アクティブなタブパネルのスタイル */
    .tab-panel.active {
        display: block;
        /* アクティブなものだけ表示 */
    }

    /* アコーディオン全体のコンテナ */
    .accordion {
        margin-bottom: 15px;
        border: 1px solid #e0e0e0;
        border-radius: 5px;
        overflow: hidden;
        /* 角丸を効かせるため */
    }

    /* アコーディオンのヘッダー（質問部分） */
    .accordion-header {
        background-color: #f9f9f9;
        padding: 15px 20px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        /* テキストとアイコンを両端に配置 */
        align-items: center;
        font-weight: bold;
        font-size: 16px;
        transition: background-color 0.3s;
    }

    .accordion-header:hover {
        background-color: #f0f0f0;
    }

    /* アイコンのスタイリング */
    .accordion-header .icon {
        font-size: 20px;
        font-weight: bold;
        /* color: #007bff; */
        transition: transform 0.3s ease-in-out;
    }

    /* アコーディオンが開いている時のアイコンの回転 */
    .accordion-header.active .icon {
        transform: rotate(45deg);
    }

    /* アコーディオンのコンテンツ（回答部分） */
    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
        /* スムーズな開閉アニメーション */
        background-color: #fff;
        padding: 0 20px;
    }

    /* コンテンツ内のテキストのスタイル */
    .accordion-content p {
        margin: 0;
        padding: 20px 0;
        border-top: 1px solid #e0e0e0;
    }

    /* ここから共通 */

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

    .check img {
        width: 600px;

    }

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

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

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

    .h2ttl {
        text-align: center;
        margin: 60px 0;
    }

    .smart {
        max-width: 80%;
        padding: 20px;
        text-align: center;
        margin: 0 auto;
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .smart img {
        width: 100%;
    }

    /* 共通footer */

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

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

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

    .qa {
        width: 600px;
        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: 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;
        color: #333;
        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 {
            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;
        }
    
}

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

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

    html {
        scroll-behavior: smooth;
        /* ページ内リンクのスムーズスクロール (任意) */
    }


    .header-right,
    .header-cta,
    #fixed-girl,
    .fv,.pc-table,.pc-cta {
        display: none;
    }

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

    h2 {
        text-align: center;
    }

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

    /*========= ナビゲーションのための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.2s ease;
    }

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

    .about {
        width: 100%;
        background-color: #3283ff;
        text-align: center;
        padding: 40px 0;
        color: #fff;
    }

    .breadcrumb {
        width: 100%;
        margin: 0 auto;
        padding: 10px 40px;
        list-style: none;
        background-color: #f8f9fa;
        /* 背景色は画像に合わせて調整してください */
        font-size: 14px;
    }

    .breadcrumb li {
        display: inline;
    }

    .breadcrumb li+li:before {
        padding: 0 8px;
        color: #6c757d;
        content: ">";
    }

    .breadcrumb li a {
        color: #007bff;
        text-decoration: none;
    }

    .breadcrumb li a:hover {
        text-decoration: underline;
    }

    .breadcrumb li.active {
        color: #333;
    }

    /* フェードアップアニメーション共通 */
    .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);
    }

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

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

    .sola-left {
        width: 80%;
        padding-left: 40px;
        margin: 0 auto;
    }

    .solacloud0 h2 {
        margin: 8px 0;
    }

    .solacloud0 h3 {
        position: relative;
        padding-left: 40px;
        margin: 24px 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: 80%;
        text-align: center;
        margin: 0 auto;
    }

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

    /* ここまで共通 */
    /* FAQコンテナのスタイリング（画面幅800px、中央寄せ） */
    .faq-container {
        max-width: 350px;
        margin: 40px auto;
        /* 上下に余白、左右は自動で中央寄せ */
        padding: 20px;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* 見出しのスタイリング */
    .faq-container h2 {
        text-align: center;
        color: #2c3e50;
        margin-bottom: 30px;
        border-bottom: 2px solid #e0e0e0;
        padding-bottom: 15px;
    }

    /* タブ全体のコンテナ */
    .faq-tabs {
        display: flex;
        border-bottom: 2px solid #ddd;
        margin-bottom: 20px;
    }

    /* タブボタンのスタイリング */
    .tab-button {
        padding: 10px 20px;
        cursor: pointer;
        border: none;
        background-color: transparent;
        font-size: 16px;
        color: #777;
        transition: color 0.3s, border-bottom 0.3s;
        border-bottom: 3px solid transparent;
        margin-bottom: -2px;
        /* 下線をタブコンテナの線に重ねる */
    }

    /* アクティブなタブボタンのスタイル */
    .tab-button.active {
        color: #007bff;
        border-bottom: 3px solid #007bff;
        font-weight: bold;
    }

    /* タブパネルのスタイリング */
    .tab-panel {
        display: none;
        /* デフォルトでは非表示 */
    }

    /* アクティブなタブパネルのスタイル */
    .tab-panel.active {
        display: block;
        /* アクティブなものだけ表示 */
    }

    /* アコーディオン全体のコンテナ */
    .accordion {
        margin-bottom: 15px;
        border: 1px solid #e0e0e0;
        border-radius: 5px;
        overflow: hidden;
        /* 角丸を効かせるため */
    }

    /* アコーディオンのヘッダー（質問部分） */
    .accordion-header {
        background-color: #f9f9f9;
        padding: 15px 20px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        /* テキストとアイコンを両端に配置 */
        align-items: center;
        font-weight: bold;
        font-size: 16px;
        transition: background-color 0.3s;
    }

    .accordion-header:hover {
        background-color: #f0f0f0;
    }

    /* アイコンのスタイリング */
    .accordion-header .icon {
        font-size: 20px;
        font-weight: bold;
        /* color: #007bff; */
        transition: transform 0.3s ease-in-out;
    }

    /* アコーディオンが開いている時のアイコンの回転 */
    .accordion-header.active .icon {
        transform: rotate(45deg);
    }

    /* アコーディオンのコンテンツ（回答部分） */
    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
        /* スムーズな開閉アニメーション */
        background-color: #fff;
        padding: 0 20px;
    }

    /* コンテンツ内のテキストのスタイル */
    .accordion-content p {
        margin: 0;
        padding: 20px 0;
        border-top: 1px solid #e0e0e0;
    }

    /* ここから共通 */


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



    .h2ttl {
        text-align: center;
        margin: 60px 0;
    }

    .smart {
        max-width: 80%;
        padding: 20px;
        text-align: center;
        margin: 0 auto;
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .smart img {
        width: 100%;
    }


    .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: 70%;
    }

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

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



    .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: 100px;
        height: 100px;
        color: #333;
        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;
    }

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

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



        /* --- 固定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;
        }
    


}