@charset "UTF-8";
/* CSS Document */


/* リセットと基本設定 */
/* すべての要素に border-box を適用するリセット */
*, *::before, *::after {
    box-sizing: border-box;
}
body {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}


/* -------------------------------------- */
/* 0. ヘッダー・グローバルナビゲーション */
/* -------------------------------------- */
.main-header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 10px 20px;
}

.header-inner {
    margin: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #439DA9; /* 青緑系でサイトイメージを継承 */
    margin: 0;
}
.header-inner a{
    text-decoration: none;
    color: inherit;
}

.global-nav {
    margin-left: auto; /* ナビを右端に押しやる */
}
.global-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* リストを横並びにする */
    gap: 10px;
}

.global-nav li a {
    display: block;
    text-decoration: none;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2975af; /* リンクの文字色 */
    border: 1px solid #2975af; /* 画像のような青い枠線 */
    border-radius: 20px; /* 角丸にする */
    transition: background-color 0.3s, color 0.3s;
    white-space: nowrap; /* ボタン内のテキストの折り返しを防ぐ */
}

.global-nav li a:hover {
    background-color: #2975af;
    color: #fff;
}

/* ヒーローセクションへの影響調整 */
/* ナビゲーションの高さ分、ヒーローセクションの上部を空ける */
.hero-section {
    height: calc(100vh - 58px); /* 仮にナビの高さを58pxとして調整 (レスポンシブで要調整) */
    /* ... 既存のスタイル ... */
}


/* レスポンシブ調整 (スマートフォン対応) */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column; /* ロゴとナビを縦に並べる */
        align-items: flex-start;
    }
    
    .site-logo {
        margin-bottom: 10px;
    }
    
    .global-nav ul {
        flex-wrap: wrap; /* ボタンが多くなったら折り返す */
        justify-content: flex-start;
        align-items: stretch;
        gap: 5px;
        
    }
    
    .global-nav li {
        margin-bottom: 5px;
    }
    .global-nav li a {
    padding: 5px 5px;
    border-radius: 0; /* 角丸にする */
    }    
}

/* -------------------------------------- */
/* 1. メインビジュアル (ファーストビュー) */
/* -------------------------------------- */
.hero-section {
    position: relative;
    height: 100vh; /* 画面の高さの90% */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 0; /* ★★★ ここを追加/修正 ★★★ */
}

.hero-container {
    width: 100%;
    max-width: 1400px; /* ★指示された最大幅 */
    margin: 0 auto; /* 中央寄せ */
    padding: 40px 40px; /* 上下左右に余白を設定 */
    /*display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;*/
    position: relative; 
}


/* 既存の .slider-container の定義を上書き */
.slider-container {
    position: relative;
    width: 100%; /* 親要素の幅いっぱいに広げる */
    max-width: 1400px; /* ★スライダーの最大幅をコンテナ内で設定 (1400pxより狭く) */
    margin: 0 auto;
    height: 600px; /* PCでの適切な高さ（必要に応じて調整） */
    padding: 0 40px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 20px solid #fff; /* 白い太い枠線 */
}
.hero-section .slider-container {
    position: relative; /* 親（hero-section）に対して絶対位置 */
    top: auto;
    left: auto;
    max-width: 1400px;
    height: 600px;
    z-index: 1; /* コンテンツよりも下に配置 */
    /* .slider-container に元々設定されていた max-width, margin, box-shadow, height: 500px; は削除されます */
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}


.hero-content {
    position: absolute;
    top: 75%;
    left: 50%;
    width: 50%;
    transform: translate(-50%, -75%);
    max-width: 840px; 
    z-index: 5; /* コンテンツを画像の上に配置 */
    /* コンテンツを中央に配置するための Flex */
    display: flex; 
    flex-direction: column; 
    align-items: center; /* 横方向中央寄せ  */
    justify-content: center; /* 追加: 縦方向中央寄せ  */
    color: #fff;
    text-align: center;
    /* 背景画像を見やすくするために、コンテンツの背景に暗いグラデーションを重ねる */
    background: rgba(0, 0, 0, 0.4); 
    padding: 5px;
    border-radius: 8px;
}

.hero-content h1 {
   font-size: 1.8rem; /* 少し大きく */
    color: #fff; /* 視認性を向上 */
    line-height: 1.5;
}

.hero-content .subtitle {
    font-size: 1.3rem;
    color: #eee;
}
.hero-section .slider-container {
    position: relative; /* ★★★ 修正: 絶対配置を解除して通常配置に戻す ★★★ */
    top: auto;
    left: auto;
    max-width: 1400px; /* hero-containerと同じ最大幅に */
    height: 600px;
    z-index: 1; 
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

/* CTAボタンのスタイル */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-bottom: 10px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, opacity 0.3s;
}

/* メインCTAボタン (鮮やかなオレンジ系で目立たせる) */
.primary-cta {
    background-color: #FF7F50; /* 鮮やかなオレンジ (コーラル) */
    color: #fff;
    border: 2px solid #FF7F50;
    box-shadow: 0 4px 10px rgba(255, 127, 80, 0.5); /* 目立たせるための影 */
}

.primary-cta:hover {
    background-color: #FF6347; /* トマトレッド (ホバーで少し暗く) */
    border-color: #FF6347;
}

/* サブCTAボタン (控えめなスタイル) */
.secondary-cta {
    background-color: transparent;
    color: #fff; /* リンクの文字色 */
    border: 2px solid #2975af; /* 枠線を青にする */
}
.secondary-cta:hover {
    background-color: #2975af;
    color: #fff;
}



/* -------------------------------------- */
/* 2. 課題提起セクション */
/* -------------------------------------- */
.problem-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #fff;
}

.problem-section h2 {
    font-size: 1.8rem;
    color: #002C55; /* 青系でツールの色と合わせる */
    margin-bottom: 40px;
    border-bottom: 3px solid #eee;
    display: inline-block;
    padding-bottom: 5px;
}

.problem-list {
    max-width: 1100px;
    margin: 0 auto;
}

.problem-list ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.problem-list li {
    background-color: #f9f9f9;
    border-left: 5px solid #2975af;
    padding: 20px;
    text-align: left;
    flex-basis: calc(50% - 10px); /* 2列レイアウト */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.problem-list li strong {
    color: #DC143C; /* 赤系で強調 */
}

/* -------------------------------------- */
/* 2.5. ビフォーアフタースライド切り替えセクション */
/* -------------------------------------- */
.comparison-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f0f0f0;
}

.comparison-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.comparison-section .description {
    font-size: 1.6rem;
    color: #666;
    padding-top: 40px;
    margin-bottom: 40px;
}

/* -------------------------------------- */
/* 3. ツールの紹介と導入メリット (solution-section) */
/* -------------------------------------- */
.solution-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #fff;
}

.solution-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.section-lead {
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 1.1rem;
}

.merit-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.merit-item {
    flex: 1 1 calc(50% - 15px); /* 2列レイアウト */
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #f9f9f9;
}

.merit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.merit-item h3 {
    color: #002C55; /* テーマカラー */
    margin-top: 0;
    font-size: 1.4rem;
    border-bottom: 2px solid #2975af;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

/* -------------------------------------- */
/* 区切り線 */
/* -------------------------------------- */
.section-divider {
    border: none;
    height: 1px;
    background-color: #ddd;
    margin: 0 auto;
    width: 80%;
}


/* -------------------------------------- */
/* 3.5. サービス概要セクション (service-summary-section) */
/* -------------------------------------- */
.service-summary-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #f0f0f0; /* 背景を少し変えて目立たせる */
}

.service-summary-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.service-summary-section .section-lead {
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 1.1rem;
}

.service-cards {
    display: flex;
    justify-content: center; /* カードを中央に配置 */
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-cards .card {
    flex: 0 1 600px; /* カードの最大幅を固定し、柔軟性を低くする */
    min-width: 300px;
    background-color: #fff;
    padding: 40px; /* パディングを増やして高級感を出す */
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s;
}

.service-cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-cards h3 {
    color: #002C55; /* テーマカラー */
    font-size: 1.5rem;
    border-bottom: 3px solid #2975af; /* 線を太く強調 */
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.service-cards .price {
    font-size: 2rem;
    font-weight: bold;
    color: #FF7F50; /* CTAのオレンジ */
    margin: 20px 0 30px;
    line-height: 1.2;
    text-align: center; /* 価格を中央に */
}

.service-cards .price .value {
    font-size: 4rem; /* 大きく強調 */
    margin-right: 5px;
}

.service-cards .price .tax {
    font-size: 1.1rem;
    font-weight: normal;
    color: #666;
    display: inline-block;
    margin-left: 5px;
}

.service-cards .features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-cards .features li {
    padding: 10px 0;
    border-bottom: 1px dashed #ddd; /* 点線にして見やすく */
    color: #555;
    position: relative;
    padding-left: 25px;
}
.service-cards .features li:first-child {
    border-top: 1px dashed #ddd;
}

.service-cards .features li::before {
    content: '✓';
    color: #2975af; /* チェックマークの色 */
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-cards .features li .highlight {
    font-weight: bold;
    color: #333;
}

/* レスポンシブ調整（カードが1枚なので、特に調整は不要ですが、念のため） */
@media (max-width: 768px) {
    .service-cards .card {
        flex: 1 1 100%; 
        padding: 30px 20px;
    }
}


/* -------------------------------------- */
/* 4. 導入のプロセス (process-section) */
/* -------------------------------------- */
.process-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #fff;
}
.process-section p {
text-align: left;
}
.process-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.step {
    flex: 1;
    max-width: 240px;
    position: relative;
}

.step:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 50px;
    right: -20px;
    font-size: 1.5rem;
    color: #aaa;
    transform: translateY(-50%);
}

.step-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #2975af; /* テーマカラー */
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 5px 10px rgba(41, 117, 175, 0.3);
}

.step h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

/* -------------------------------------- */
/* 5. クロージング (closing-section) */
/* -------------------------------------- */
.closing-section {
    background-color: #002C55; /* テーマカラーを背景に */
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.closing-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.closing-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.closing-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.large-cta {
    padding: 20px 40px;
    font-size: 1.1rem;
    min-width: 300px;
}

/* -------------------------------------- */
/* フッター */
/* -------------------------------------- */
footer {
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    background-color: #ddd;
}



/* レスポンシブ調整 */
@media (max-width: 900px) {
    .merit-item {
        flex: 1 1 100%; /* スマホ・タブレットでは1列にする */
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .step {
        max-width: 350px;
        width: 100%;
    }
     .step p{
        text-align: center; /* 説明文を中央寄せに戻す */
    }


    .step:not(:last-child)::after {
        content: '↓';
        right: 50%;
        top: auto;
        bottom: -30px;
        transform: translateX(50%);
    }

    .closing-content h2 {
        font-size: 1.6rem;
    }
    .closing-cta-buttons {
        flex-direction: column;
        align-items:  center;
    }
    .large-cta {
        min-width: 65%;
        font-size: 1rem;
    }
}

/* -------------------------------------- */
/* スライダーコンテナ */
/* -------------------------------------- */
.slider-container {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    height: 500px; /* 適切な高さを設定 */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .slider-container {
        width: 100%;
        height: 350px!important; /* スライダーの高さはOK */
        margin-bottom: 20px; /* 下に移動するコンテンツとの間に余白 */
        border: 5px solid #fff;
    }
}

/* アフター画像（奥に隠れる画像） */
.image-after-new, .image-before-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image-before-new img {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ★重要: 画像の歪みを防ぎます */
    display: block;
}
.image-after-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute; /* ★追加: 画像自体を絶対位置にする */
    top: 0;
    left: 0; /* ★追加: 左端に固定 */
}

.image-before-new {
    z-index: 2; /* 手前に表示 */
    overflow: hidden;
}


/* アフター画像（スライダーで幅が変わる） */
.image-after-new {
    width: 100%; /* 初期表示は半分 */
    z-index: 1;
}

/* ラベルのスタイル */
.label {
    position: absolute;
    top: 20px;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-weight: bold;
    border-radius: 3px;
    font-size: 0.9rem;
}

.image-before-new .label {
    left: 20px;
}
.image-after-new .label {
    right: 20px;
}


/* スライダーの区切り線（ディバイダー） */
.slider-divider {
    position: absolute;
    top: 0;
    left: 50%; /* 初期位置 */
    width: 2px;
    height: 100%;
    background-color: #fff;
    cursor: grab;
    z-index: 3;
    transform: translateX(-50%);
}

/* スライダーのハンドル（持ち手） */
.slider-handle {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff; /* メインCTAのオレンジ */
    border: 3px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ハンドル内の矢印（簡易的な表現） */
.slider-handle::before,
.slider-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    /* 矢印の「くの字」部分を作成 */
    width: 8px; /* 矢印の大きさ */
    height: 8px;
    border-top: 2px solid #439DA9;
    border-left: 2px solid #439DA9;
    
    /* 中央に配置し、回転と位置を調整 */
    transform: translateY(-50%) rotate(-45deg);
}

.slider-handle::before {
    left: 13px; /* ハンドル内での位置調整 */
    transform: translateY(-50%) rotate(-45deg); /* 左向き (<) */
}

/* 右矢印 (→ / > ) */
.slider-handle::after {
    right: 13px; /* ハンドル内での位置調整 */
    transform: translateY(-50%) rotate(135deg); /* 右向き (>) */
}
 

/* -------------------------------------- */
/* スライダーデモアニメーション */
/* -------------------------------------- */
/* アニメーション中はユーザー操作を無効にするためのクラス */
.slider-container.is-demo-playing .slider-divider {
    pointer-events: none;
    cursor: default;
}

/* スライダーディバイダー（区切り線）のアニメーション定義 */
@keyframes slide-demo {
    0% { left: 50%; } /* 中央から開始 */
    33% { left: 75%; } /* 右へ移動 */
    66% { left: 25%; } /* 左へ移動 */
    100% { left: 25%; } /* 中央に戻って終了 */
}

/* アフター画像（幅が動く画像）のアニメーション定義 */
@keyframes resize-demo {
    0% { width: 50%; }
    33% { width: 75%; }
    66% { width: 25%; }
    100% { width: 25%; }
}


/* 必要に応じてメディアクエリを追加してレスポンシブ対応を行います */
@media (max-width: 768px) {
      /* ヒーローセクションの高さ調整を解除または再計算 */
    .hero-section {
        height: auto; 
        min-height: auto;
        padding-top: 10px;
    }
    .hero-container {
        display: flex;
        flex-direction: column;
        /* height: 350px; を削除 (スライダーとコンテンツの合計で高さが決まるように) */
        height: auto;
        padding: 10px; /* パディングを調整 */
    }

    .hero-content {
        position: static;
        top: auto;
        left: auto;
        transform: none; /* transformも解除 */
        width: 100%; /* コンテナいっぱいに広げる */
        max-width: none;
        /* オーバーレイ用の背景色と枠線は、下段に移動したら不要な場合が多いです */
        background: none; 
        border: none;
        color: #333; /* 文字色を背景に合わせて黒に戻す */
        text-align: left; /* テキストを左寄せに戻す */
        padding: 0 10px;; /* パディングも解除（セクションのパディングを使う） */
        margin-top: 10px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        color: #002C55; /* 文字色をサイトカラーに戻す */
        margin-top: 30px;
        text-align: center;
    }
    
   .hero-content .subtitle {
        font-size: 1rem;
        color: #666;
        text-align: center;
        margin-bottom: 20px;
       padding: 0 10px;
    }
    
    .problem-list li {
        flex-basis: 100%; /* スマホでは1列にする */
    }
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
    .btn {
        width: 100%; /* ボタン幅をいっぱいに広げる */
        box-sizing: border-box;
    }
}

/* ---------------------------------------------------------- */
/*PC用スクロール追従フローティングボタン群をグループ化 */
/*-------------------------------------------------------------*/
.jtj-pc-floating-group {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
}

/* スクロールで表示するためのクラス */
.jtj-pc-floating-group.is-visible {
    position: fixed;
    right: 30px;
    bottom: 30px;
    xindex: 9999;
    opacity: 1;
    visibility: visible;
}

/* グループ内のボタン位置をリセット */
.jtj-floating-cta {
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    border-radius: 8px;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center; /* ← ここを追加：中央揃え */
}
.jtj-floating-cta .fas {
    font-size: 1.1em;
}

/* ページトップに戻るボタンのスタイルを削除（jtj-btnを適用するため） */
.jtj-back-to-top {
    /* jtj-btnを適用するため、専用スタイルを削除しjtj-btnクラスのみにする */
    /* jtj-btn、jtj-btn--primary、jtj-floating-cta クラスがHTML側で適用されている前提 */
}


/* スマートフォン用フッター固定ナビゲーション デフォルト非表示*/
.jtj-sp-footer-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 1000;
    justify-content: space-between;
}
/* 各ボタン */
.jtj-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 35px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.jtj-btn--primary {
    background-color: #ff6600;
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
}
.jtj-btn--primary:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5);
}


/*-------------------------*/
/*スマホ表示の指定*/
/*-------------------------*/

 @media (max-width: 768px) {
     /* フッター */
footer {
    color: #666!important;
    background-color: #ddd;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
    margin-top: 0 !important;
}
footer p {
    padding-bottom: 15px;
}
     
 /* スマートフォン用フッター固定ナビゲーション */
.jtj-sp-footer-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 1000;
    justify-content: space-between;
}

.jtj-sp-footer-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    color: #fff!important;
    text-decoration: none;
    padding: 5px 0;
    font-size: 0.7em;
    transition: background-color 0.3s;
    background-color: #002C55; /* メインの背景色に設定 */
      border-right: 1px solid rgba(255, 255, 255, 0.2); /* ← ここを追加 */
}


.jtj-sp-footer-nav__item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.jtj-sp-footer-nav__item .icon {
    font-size: 1.5em;
    margin-bottom: 3px;
}

.jtj-sp-footer-nav__item--back-to-top {
    background-color: #002C55;
}

.jtj-sp-footer-nav__item--back-to-top:hover {
    background-color: #002C55;
}

/* jtj-back-to-topにjtj-btn--primaryを適用することを想定し、hoverを調整 */
.jtj-back-to-top:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5);
}
     /* スマホではPC版のボタン群を非表示にし、スマホ用ナビゲーションを表示 */
    .jtj-pc-floating-group {
        display: none;
    }
    .jtj-sp-footer-nav {
        display: flex;
        height: 50px;
    }
}

