 /* ==========================================================================
           CSS変数 (ここで全体の数値や色を一元管理できます)
    ========================================================================== */
        :root {
            /* Colors */
            --color-text-main: #222222;
            --color-text-muted: #555555;
            --color-primary: #333333;
            --color-accent-blue: #005bca;
            --color-accent-pink: #e00052; /* 吹き出しやアクセントに使用するピンク */
            --color-accent-gradient: linear-gradient(135deg, #4da1ff, #a155d9); /* 年収グラフなどのグラデーション */
            --color-bg-white: #ffffff;
            --color-bg-light: #f4f5f7; /* 薄いグレーの背景 */
            --color-border: #e0e0e0;

            /* Button Colors */
            --btn-bg-default: #999999;
            --btn-text: #ffffff;

            /* Spacing */
            --spacing-xs: clamp(0.375rem, 1vw, 0.5rem);      /* 6〜8px */
            --spacing-sm: clamp(0.75rem, 2vw, 1rem);          /* 12〜16px */
            --spacing-md: clamp(1.25rem, 3vw, 1.5rem);        /* 20〜24px */
            --spacing-lg: clamp(2rem, 4vw, 2.5rem);           /* 32〜40px */
            --spacing-xl: clamp(2.5rem, 6vw, 3.75rem);        /* 40〜60px */

            /* Typography */
            --font-family: 'Yu Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
            --font-size-xs: clamp(0.8rem, 1.3vw, 0.8rem);   /* 14〜16px */
            --font-size-sm: clamp(0.9rem, 1.3vw, 0.9rem);   /* 14〜16px */
            --font-size-base: clamp(1.0rem, 1.5vw, 1rem);   /* 14〜16px */
            --font-size-lg: clamp(1.2rem, 2vw, 1.3rem);       /* 16〜18px */
            --font-size-xl: clamp(1.3rem, 2.5vw, 1.5rem);    /* 20〜24px */
            --font-size-xxl: clamp(1.5rem, 3vw, 2rem);        /* 24〜32px */
            --font-size-xxxl: clamp(2.8rem, 6vw, 5rem);       /* 40〜80px */

            /* Layout */
            /*--max-width: 1000px;  モバイル幅想定からPC幅まで拡張 */
            --max-width: 100%;
            --min-width: 1400px;
            --base-width: 1080px;
            --border-radius-sm: 0.25rem;  /* 4px */
            --border-radius-md: 0.5rem;   /* 8px */
            --border-radius-lg: 1.0rem;
        }

        /* ==========================================================================
           Reset & Base Styles        ========================================================================== */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700;900&display=swap');


        body {
            font-family: var(--font-family);
            color: var(--color-text-main);
            background:#c8e8f5;
            line-height: 1.6;
            font-size: var(--font-size-base);
            -webkit-font-smoothing: antialiased;
        }

        .l-container {
            max-width: var(--max-width);
            margin: 0 auto;
            overflow: hidden;
            /*box-shadow: 0 0 20px rgba(0,0,0,0.05);
             background-color: var(--color-bg-white);*/
            position: relative;
            padding-bottom: 80px; /* 固定追従CTAが被らないようにフッターに高さを出す */
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .text-center { text-align: center; }
        .text-bold { font-weight: bold; }
        .text-accent { color: var(--color-accent-pink); }
        .mb-sm { margin-bottom: var(--spacing-sm); }
        .mb-md { margin-bottom: var(--spacing-md); }
        .mb-lg { margin-bottom: var(--spacing-lg); }
        
        .section-title {
            font-size: var(--font-size-lg);
            font-weight: bold;
            text-align: center;
            margin-bottom: var(--spacing-md);
            line-height: 1.4;
        }

        .section-title span{
            color: var(--color-accent-blue);
        }

        /* 背景色切り替え用クラス */
        .bg-white { background-color: var(--color-bg-white); }
        .bg-light { background-color: var(--color-bg-light); }

        /* セクションの共通パディング */
        .section-padding {
            padding: var(--spacing-lg) var(--spacing-md);
        }

        /* ユーティリティクラス (SP/PC表示切り替え) */
        .u-sp-only { display: inline; }
        .u-pc-only { display: none; }

        /* ==========================================================================
           Components
           ========================================================================== */
        /* ボタン */
        .c-btn {
            display: block;
            margin: auto;
            width: 96%;
            padding: 16px;
            background: var(--color-accent-pink);
            color: var(--btn-text);
            text-align: center;
            text-decoration: none;
            font-weight: bold;
            border-radius: 100px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            font-size: var(--font-size-lg);
            transition: opacity 0.2s;
        }
        .c-btn:hover { opacity: 0.8; }
        .c-btn-wrapper { margin-top: var(--spacing-md); }
        .c-btn-microcopy {
            text-align: center;
            font-size: var(--font-size-sm);
            color: var(--color-text-muted);
            margin-bottom: 4px;
        }

        .fv-video{
            position:fixed;
            top:0;
            inset:0;
            width:100%;
            height:100%;
            object-fit:cover;
            opacity:0.6;
            z-index: -2;
        }

#top-corplogo-area {
  overflow: hidden;
  width: 100%;
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

#top-corplogo-area h2{
	text-align: center;
    color: #fff;
    display: inline-block;
	margin: 0 auto 1rem;
    font-size: 1.0rem;
    background: linear-gradient(135deg, #123386 0%, #0055BB 50%, #00AAEE 100%);
    padding: 0.2rem var(--spacing-sm);
    border-radius: var(--border-radius-sm);
}

#top-corplogo-area .top-corplogo-track {
  display: flex;
  width: max-content;  /* ← これを追加 */
  animation: top-corplogo-scroll 50s linear infinite;
}

#top-corplogo-area .top-corplogo-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
  padding-right: 10px; /* ← ulの末尾にgapと同じ幅を追加 */
}

#top-corplogo-area .top-corplogo-list li {
  flex-shrink: 0;
  width: 120px;
  background: #fff;
  border-radius: var(--border-radius-sm);
  padding: var(--spacing-xs) 0;
}
#top-corplogo-area .top-corplogo-list li img{
 width:70%;
 height: auto;
 display: block;
 margin: auto;
}

@keyframes top-corplogo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}




header{
padding: var(--spacing-md) var(--spacing-md) var(--spacing-sm);
}
header img{
width: 50%;
}


        /* ==========================================================================
           Sections
           ========================================================================== */
        
        /* 1. FV (First View) */
        .p-fv {
            padding: var(--spacing-sm) var(--spacing-lg) var(--spacing-sm);
            position: relative;
            /*background-color: var(--color-bg-light);
            position: relative;
            overflow: hidden; /* 光のエフェクトが外にはみ出ないように */
        }

        .p-fv__left{
        padding: 0 0 var(--spacing-sm);    
        }

        .p-fv__maincopy {
            background: linear-gradient(135deg, #001A5C 0%, #0055BB 35%, #00AAEE 70%, #5CF0FF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family:'Noto Sans JP',sans-serif;
            font-size: var(--font-size-xxxl);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: var(--spacing-xs);
        }
        .p-fv__subcopy {
            background: linear-gradient(135deg, #001A5C 0%, #0055BB 35%, #00AAEE 70%, #5CF0FF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family:'Noto Sans JP',sans-serif;
            font-size: 20px;
            font-weight: bold;
            color: var(--color-text-muted);

            line-height: 1.4;
        }

.p-fv__right {
position: relative;
height: 170px;
}

.p-fv__img {
  position: absolute;
  width: 54%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.p-fv__img--01 {
  top: 0;
  left: 0;
  z-index: 1;
}

.p-fv__img--02 {
  top: 40px;
  right: 0px;
  z-index: 2;
}

.p-fv__badge {
    position: absolute;
    top: 200px; 
    right: 10px;
    z-index:2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 6.4rem;
    height: 6.4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A84C 0%, #9A7020 60%, #7A5510 100%);
    border: 1px solid #C9A84C;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}


        /* 2. 悩み共感 */
        .p-empathy {
            position: relative;
        }
        .p-empathy__lead {
            font-size: var(--font-size-xl);
            font-weight: bold;
            text-align: center;
            margin-bottom: var(--spacing-lg);
            line-height: 1.6;
        }
        .p-empathy__lead span{
        color: var(--color-accent-blue);
        }
        
        /* 悩み吹き出しの配置とアニメーション */
        .p-empathy__visual {
            position: relative;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
            height: 300px; /* SP用に高さを少し縮小 */
        }
        .p-empathy__person {
            position: absolute;
            bottom:60px;
            left: 50%;
            transform: translateX(-50%);
            width: 130px; /* SP用に縮小 (元180px) */
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }
        .p-empathy__bubble {
            position: absolute;
            width: 100px; /* SP用に縮小 (元120px) */
            height: 100px; /* SP用に縮小 (元120px) */
            border-radius: 50%;
            background: radial-gradient(circle, #fff 0%, #ebf5ff 100%);
            color: var(--color-accent-blue); /* 濃いめのピンク赤 */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-size: 11px; /* SP用に縮小 (元11px) */
            font-weight: bold;
            box-shadow: 0 2px 8px rgba(77, 107, 217, 0.15);
            z-index: 1;
            /* アニメーション初期状態 */
            opacity: 0;
            transform: scale(0.8);
            line-height: 1.4;
            padding: 4px;
        }

        /* 個個別配置 (SP用にはみ出ないよう調整) */
        .bubble-1 { top: 0; left: 0; }
        .bubble-2 { top: 0; right: 0; }
        .bubble-3 { top: 25%; left: 0; }
        .bubble-4 { top: 25%; right: 0; }
        .bubble-5 { top: 55%; left: 2%; }
        .bubble-6 { top: 55%; right: 2%; }

        /* 出現アニメーション */
        @keyframes popIn {
            0% { opacity: 0; transform: scale(0.5); }
            80% { transform: scale(1.05); }
            100% { opacity: 1; transform: scale(1); }
        }
        
        /* JSで .is-visible が付与されたら発火 */
        .p-empathy__visual.is-visible .p-empathy__bubble {
            animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }
        .p-empathy__visual.is-visible .bubble-1 { animation-delay: 0.0s; }
        .p-empathy__visual.is-visible .bubble-2 { animation-delay: 0.3s; }
        .p-empathy__visual.is-visible .bubble-3 { animation-delay: 0.6s; }
        .p-empathy__visual.is-visible .bubble-4 { animation-delay: 0.9s; }
        .p-empathy__visual.is-visible .bubble-5 { animation-delay: 1.2s; }
        .p-empathy__visual.is-visible .bubble-6 { animation-delay: 1.5s; }

        .p-empathy__triangle {
            width: 0;
            height: 0;
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-top: 15px solid var(--color-accent-pink);
            margin: 0 auto 0;
        }

        /* 3. データ（格差） */
        .p-data__title {
            font-size: var(--font-size-xl);
            font-weight: bold;
            text-align: center;
            margin-bottom: var(--spacing-lg);
        }
        .p-data__title span{
            color: var(--color-accent-blue);
        }
        .p-data__badge {
            display: inline-block;
            background: linear-gradient(135deg, #123386 0%, #0055BB 50%, #00AAEE 100%);
            color: #fff;
            padding: 8px 32px;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: var(--spacing-sm);
        }
        
        /* 業務効率カード（SPはカルーセル化） */
        .p-data__grid {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 16px;
            margin-bottom: var(--spacing-lg);
            padding-bottom: 16px; /* スクロールバー用の余白 */
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none; /* Firefox用スクロールバー非表示 */
        }
        .p-data__grid::-webkit-scrollbar {
            display: none; /* Chrome, Safari用スクロールバー非表示 */
        }
        .p-data__card {
            scroll-snap-align: center;
            flex: 0 0 85%; /* SPでは画面の85%幅のカードを1枚ずつ見せる */
            background: var(--color-bg-white);
            border: 1px solid #e5e7eb; /* ボーダーを少し柔らかく */
            border-radius: 12px; /* SaaS風に丸みを大きく */
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03); /* モダンなソフトシャドウ */
            display: flex;
            flex-direction: column;
        }
        .p-data__card-head {
            background-color: transparent; /* 野暮ったいベタ塗りを廃止 */
            color: var(--color-text-main);
            border-bottom: 1px solid #f3f4f6; /* 極細のクリーンな境界線 */
            font-size: var(--font-size-base);
            font-weight: 800;
            padding: 14px 16px;
            text-align: left;
            display: flex;
            align-items: center;
        }
        .p-data__card-head::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            background-color: #3b82f6; /* アクセントの青ドットで知的さを演出 */
            border-radius: 50%;
            margin-right: 8px;
        }
        .p-data__card-body {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px 16px; /* 余白を広げて洗練度UP */
            background: #fff;
            gap: 8px; /* 要素間の隙間を少し広げる */
        }
        .p-data__card-before {
            font-size: var(--font-size-xl);
            font-weight: bold;
            color: var(--color-text-muted); /* Beforeは少し色を落として対比を作る */
        }
        .p-data__card-before span { font-size: 12px; font-weight: normal; }
        .p-data__card-arrow {
            color: #3b82f6; /* 元のブルー系に戻す */
            font-size: 18px; /* 大きさを元に戻して変化を強調 */
            font-weight: bold;
            margin: 0 8px; /* 余白を最適化 */
        }
        .p-data__card-after {
            font-size: var(--font-size-xxxl);
            font-weight: 900;
            color: var(--color-accent-pink);
        }
        .p-data__card-after span { font-size: 14px; font-weight: bold; }
        .p-data__card-img {
            height: auto;
            background-color: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: #94a3b8;
            border-top: 1px solid var(--color-border);
        }
        
        /* グラフエリア共通タイトル（グラフ内部上段に配置） */
        .p-data__chart-title {
            position: absolute;
            top: 16px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 14px; /* SP: はみ出さないサイズ */
            font-weight: bold;
            color: var(--color-text-main);
            z-index: 5;
            white-space: nowrap; /* 改行防止 */
            background-color: var(--color-bg-white); /* 目盛り線の透過防止 */
            padding: 0 8px;
        }

        /* グラフエリア */
        .p-data__chart-box {
            background: var(--color-bg-white);
            border: 1px solid #c2e0f2;
            padding: 10px 10px 30px 30px; /* SP: 左右の余白を減らし描画エリアを広げる */
            position: relative;
            height: 310px; /* タイトルを内部に収めるため少し高さを拡張 */
            margin-bottom: 8px; /* グラフと出典の間隔を縮小（出典を外に出したため） */
        }
        /* 目盛り線 */
        .p-data__chart-grid {
            position: absolute;
            top: 50px; bottom: 30px; left: 30px; right: 10px; /* SP用調整: タイトルの下の領域から描画スタート */
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .p-data__chart-line {
            border-bottom: 1px solid #f0f0f0;
            width: 100%;
            position: relative;
        }
        .p-data__chart-line span {
            position: absolute;
            left: -25px; /* SP用調整: 少し目盛りを寄せる */
            top: -8px;
            font-size: 10px;
            color: #999;
        }
        /* 棒グラフ本体 */
        .p-data__chart-bars {
            position: absolute;
            top: 50px; bottom: 30px; left: 30px; right: 10px; /* SP用調整: 同上 */
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            z-index: 2;
        }
        .p-data__bar-wrap {
            width: 40%;
            height: 100%; /* 親の高さに追従させる */
            display: flex;
            flex-direction: column;
            justify-content: flex-end; /* 下から上に伸びるように下揃え */
            align-items: center;
        }
        
        /* グラフのバーとラベルをFlexで管理（重なりを防止） */
        .p-data__bar-sm, .p-data__bar-lg {
            width: 100%;
            height: 0; /* アニメーションの初期値 */
            position: relative;
            border-radius: 4px 4px 0 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end; /* 【重要】テキストをバーの下部に揃えて吹き出しとの被りを物理的に防ぐ */
            padding-bottom: 24px; /* 下部からの余白 */
            overflow: hidden; /* 文字がはみ出すのを防ぐ */
        }
        .p-data__bar-sm {
            background-color: #e0e0e0;
        }
        .p-data__bar-lg {
            background: var(--color-accent-gradient);
        }

        /* ラベルの絶対配置(absolute)を解除し、自然なフローへ戻す */
        .p-data__bar-label-top {
            background: #fff;
            color: var(--color-text-main);
            font-size: 10px;
            font-weight: bold;
            padding: 4px 10px;
            border-radius: 4px;
            white-space: nowrap;
            opacity: 0; /* アニメーションの初期値 */
            z-index: 2;
        }
        .p-data__bar-lg .p-data__bar-label-top {
            color: #3b82f6; /* 青文字 */
        }
        .p-data__bar-label-bottom {
            text-align: center;
            font-weight: bold;
            width: 100%;
            opacity: 0; /* アニメーションの初期値 */
            z-index: 2;
        }
        .p-data__bar-sm .p-data__bar-label-bottom {
            color: var(--color-text-main);
            font-size: 14px; /* SP: 吹き出しと干渉しないよう最適化 */
        }
        .p-data__bar-lg .p-data__bar-label-bottom {
            color: #fff;
            font-size: 16px; /* SP: 吹き出しと干渉しないよう最適化 */
        }
        
        /* 中央の矢印と吹き出し */
        .p-data__chart-diff {
            position: absolute;
            height: 32%; /* 左(40%)と右(72%)の差分に合わせて高さを設定 */
            bottom: 40%; /* 左のバーの上面からスタートさせる */
            top: auto;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3;
            opacity: 0; /* アニメーションの初期値 */
        }
        .p-data__arrow-line {
            width: 2px;
            height: 100%;
            background: var(--color-accent-pink);
            position: relative;
        }
        .p-data__arrow-line::before, .p-data__arrow-line::after {
            content: '';
            position: absolute;
            left: -5px;
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
        }
        .p-data__arrow-line::before {
            top: 0;
            border-bottom: 8px solid var(--color-accent-pink);
        }
        .p-data__arrow-line::after {
            bottom: 0;
            border-top: 8px solid var(--color-accent-pink);
        }
        .p-data__bubble-diff {
            position: absolute;
            background: #fff;
            border: 1px solid #eee;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            border-radius: 50%;
            width: 76px; /* SP: 中心を強調しつつ被り防止のため微縮小 */
            height: 76px; 
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }
        .p-data__bubble-diff::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            border-bottom: 8px solid transparent;
            border-left: 8px solid #fff;
        }
        .p-data__bubble-diff small {
            font-size: 10px; /* SP用 */
            font-weight: bold;
        }
        .p-data__bubble-diff span {
            color: var(--color-accent-pink);
            font-size: 18px; /* SP: スマホに最適なインパクトサイズへ調整 */
            font-weight: 900; /* より太く */
            line-height: 1.2;
        }
        
        /* 出典表記（グラフ枠線の下に独立させて配置し、突き抜けを防止） */
        .p-data__source {
            background: #222;
            color: #fff;
            font-size: 10px;
            padding: 8px 12px; 
            border-radius: 4px; 
            text-align: left; 
            line-height: 1.5;
            margin-bottom: 40px; /* 次のセクションとの余白 */
            width: 100%;
            box-sizing: border-box; /* paddingを含めて100%に収める */
        }

        /* グラフのアニメーション設定（スピードアップ） */
        @keyframes growBarSm {
            to { height: 40%; } /* 基準の高さ */
        }
        @keyframes growBarLg {
            to { height: 72%; } /* 基準40%の1.8倍 = 72%（リアルな比率） */
        }
        @keyframes fadeInData {
            to { opacity: 1; }
        }
        @keyframes popInDiff {
            0% { opacity: 0; transform: translateX(-50%) scale(0.8); }
            80% { transform: translateX(-50%) scale(1.05); }
            100% { opacity: 1; transform: translateX(-50%) scale(1); }
        }

        /* アニメーション秒数とディレイを早める */
        .p-data__chart-box.is-visible .p-data__bar-sm {
            animation: growBarSm 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
            animation-delay: 0.1s;
        }
        .p-data__chart-box.is-visible .p-data__bar-lg {
            animation: growBarLg 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
            animation-delay: 0.3s; /* 非生成AIのバーが伸びている途中で追いかけるように発火 */
        }
        .p-data__chart-box.is-visible .p-data__bar-label-top,
        .p-data__chart-box.is-visible .p-data__bar-label-bottom {
            animation: fadeInData 0.4s ease forwards;
            animation-delay: 0.8s; /* バーが伸びきったタイミングで素早く表示 */
        }
        .p-data__chart-box.is-visible .p-data__chart-diff {
            animation: popInDiff 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
            animation-delay: 1.0s;
        }

        /* 4. AIが使える人とは */
        .p-concept__text {
            font-size: var(--font-size-base);
            line-height: 1.8;
            margin-bottom: 16px; /* 余白を極限まで詰める */
        }
        .p-concept__formula {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px; /* 隙間を最適化してトルツメ */
            margin-bottom: 16px; /* 余白を極限まで詰める */
            font-weight: bold;
        }
        .p-concept__formula-box {
            padding: 8px 12px; /* スマホ用にコンパクト化 */
            background: var(--color-accent-blue);
            border-radius: var(--border-radius-md);
            font-size: var(--font-size-base);
            color: var(--color-bg-white);
        }
        .p-concept__formula-cross {
            font-size: var(--font-size-xl);
            color: #999;
            font-weight: 900;
        }
        
        /* ユースケースカード (スマホは2段×横スクロールの最適化) */
        .p-concept__cases {
            display: grid;
            grid-template-rows: repeat(2, 1fr); /* 縦に2段積む */
            grid-auto-flow: column; /* 横方向へ要素を流す */
            grid-auto-columns: 85%; /* 1列の幅 */
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 12px; /* カード間ギャップもトルツメ */
            padding-bottom: 12px; /* スクロールバー用の余白 */
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none; /* Firefox用スクロールバー非表示 */
        }
        .p-concept__cases::-webkit-scrollbar {
            display: none; /* Chrome, Safari用スクロールバー非表示 */
        }
        .p-concept__case {
            scroll-snap-align: center;
            background-color: var(--color-bg-white);
            padding: 16px 16px 0 16px; /* スマホ用極限トルツメ。下パディングゼロは維持 */
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03); /* SaaS風ソフトシャドウ */
            display: flex;
            flex-direction: column;
            text-align: left; /* 左寄せベースにして視線の流れを美しく */
            transition: transform 0.2s, box-shadow 0.2s;
            overflow: hidden; /* ボトムパネルの背景色がはみ出ないように */
        }
        .p-concept__case:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); /* ホバー時のシャドウもSaaSライクに */
            border-color: #bfdbfe; /* ホバー時に青色でインタラクティブに */
        }
        .p-concept__case-title {
            font-weight: 900;
            color: var(--color-accent-blue);
            font-size: 16px;
            /* 下線を無くし、バッジデザインを引き立てる */
            margin-bottom: 12px; /* 余白を詰める */
            display: flex;
            align-items: center;
        }
        .p-concept__case-title span {
            background-color: var(--color-accent-blue); /* ダークトーンのベタ塗りでインパクトを出す */
            color: #fff; /* 白抜き文字 */
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 13px;
            margin-right: 8px;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* ほんのり影をつけて立体感を */
        }
        .p-concept__case-title small {
            font-size: 15px; /* サイズを調整 */
            color: var(--color-text-main); /* 青から黒へ変更し、シックに統一 */
            font-weight: 900;
        }
        .p-concept__case-use {
            flex-grow: 1;
            margin-bottom: 16px; /* 余白を詰める */
        }
        .p-concept__case-use-label {
            display: inline-block;
            font-size: 11px;
            font-weight: bold;
            color: #2563eb;
            background-color: #eff6ff; /* トレンドのTinted Badge（淡い背景＋濃い文字） */
            padding: 4px 10px;
            border-radius: 6px;
            margin-bottom: 8px;
        }
        .p-concept__case-use-text {
            font-size: 13px;
            color: var(--color-text-muted);
            line-height: 1.6;
            font-weight: bold;
        }
        /* 実績を魅せる強調エリア（ボトムパネル化して高さを絶対値で固定し、左右のズレをなくす） */
        .p-concept__case-result {
            background-color: #f8fafc; /* スレート系の洗練されたライトグレー */
            padding: 12px 16px; /* 左右の余白を親要素と完全に一致させる（スマホトルツメ） */
            margin: 0 -16px; /* 親要素のパディングを打ち消して横幅いっぱいに広げる */
            border-top: 1px solid #f1f5f9;
            margin-top: auto; 
            height: 96px; /* スマホ向けに高さを少し下げつつ絶対固定 */
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .p-concept__case-result-label {
            display: inline-table;
            font-size: 11px;
            font-weight: bold;
            color: var(--color-accent-pink);
            background-color: #fdf2f8; /* ティントバッジ */
            padding: 3px 10px;
            border-radius: 6px;
            margin-bottom: 6px;
            align-self: flex-start; /* 左寄せキープ */
        }
        .p-concept__case-result-text {
            font-size: 14px;
            font-weight: bold;
            color: var(--color-text-main);
            line-height: 1.5;
        }
        /* 数字部分のみを強調するクラス */
        .p-concept__case-result-text .num {
            color: var(--color-accent-pink);
            font-size: 20px; /* 数値のインパクトはキープ */
            font-weight: 900;
            margin: 0 2px;
        }
        /* 矢印をさらに控えめにする専用クラス */
        .p-concept__case-result-text .arrow {
            color: var(--color-accent-pink);
            opacity: 0.3; /* 透明度をさらに上げて完全に黒子化 */
            font-size: 11px; /* さらに縮小 */
            margin: 0 8px; /* 空間を少し持たせる */
            display: inline-block;
            vertical-align: middle;
            transform: translateY(-2px); /* 垂直位置の微調整 */
        }
        .p-concept__case-result-note {
            font-size: 10px;
            color: #9ca3af;
            margin-top: 4px;
            display: block;
        }

        /* 5. コース案内 (カルーセル化) */
        .p-course__carousel {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 16px;
            padding-bottom: 16px; /* スクロールバー用の余白 */
            -webkit-overflow-scrolling: touch;
            /* スクロールバーのスタイリング */
            scrollbar-width: thin;
            scrollbar-color: #ccc transparent;
        }
        .p-course__carousel::-webkit-scrollbar {
            height: 6px;
        }
        .p-course__carousel::-webkit-scrollbar-thumb {
            background-color: #ccc;
            border-radius: 3px;
        }
        
        .p-course__card {
            scroll-snap-align: center;
            flex: 0 0 85%; /* SPでは画面の85%幅のカードを1枚ずつ見せる */
            background: var(--color-bg-white);
            border-radius: var(--border-radius-lg);
            padding: 20px 16px; /* 余白を微調整してコンテンツ量に対応 */
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            border: 1px solid var(--color-border);
            display: flex;
            flex-direction: column;
        }
        
        .p-course__card-img {
            background: var(--color-accent-gradient); /* のっぺりしたベタ塗りをやめ、深みと透明感のある知的なグラデーションへ変更 */
            color: #ffffff;
            border-radius: var(--border-radius-md);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-weight: bold;
            font-size: 16px;
            margin-bottom: var(--spacing-sm);
            position: relative; /* バッジ配置用 */
            padding: var(--spacing-xl) 0;
            line-height: 1.4;
            box-shadow: inset 0 0 20px rgba(0,0,0,0.1); /* 内側に微かなシャドウを入れて質感を向上 */
        }

        /* コースごとのサブ訴求コピー */
        .p-course__card-copy {
            font-size: var(--font-size-sm);
            font-weight: bold;
            color: var(--color-accent-pink);
            margin-bottom: var(--spacing-xs);
            text-align: center;
            line-height: 1.4;
            min-height: 32px; /* 複数行対応 */
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* 講座のComing Soonバッジ（さりげないデザイン） */
        .p-course__badge-soon {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: rgba(255, 255, 255, 0.95);
            color: var(--color-accent-pink);
            font-size: 10px;
            font-weight: bold;
            padding: 3px 8px;
            border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            letter-spacing: 0.5px;
            border: 1px solid rgba(217, 77, 142, 0.2);
        }
        
        .p-course__list {
            list-style: none;
            font-size: var(--font-size-xs);
            line-height: 1.8;
            padding-left: 0;
            margin-top: var(--spacing-xs);
            border-top: 1px dashed var(--color-border);
            padding-top: var(--spacing-xs);
        }
        .p-course__list li {
            margin-bottom: 6px;
            color: var(--color-text-muted);
            display: flex;
            align-items: flex-start;
        }
        .p-course__list li::before {
            content: '✓';
            margin-right: 6px;
            font-weight: bold;
            color: var(--color-accent-pink);
            flex-shrink: 0;
        }

        /* 6. 学習方法 */
        .p-method__list {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-md);
        }
        .p-method__item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }
        .p-method__icon {
            width: 80px;
            height: 80px;
            background-color: var(--color-bg-white);
            border-radius: var(--border-radius-sm);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: #999;
        }
        .p-method__content h3 {
            font-size: var(--font-size-base);
            font-weight: bold;
            margin-bottom: var(--spacing-xs);
        }
        .p-method__content p {
            font-size: var(--font-size-sm);
            color: var(--color-text-muted);
            margin-bottom: var(--spacing-md);
        }

        /* 7. 無料相談のメリット */
        .p-merit__list {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-sm);
        }
        .p-merit__item {
            border: 1px solid var(--color-accent-pink);
            border-radius: var(--border-radius-md);
            padding: 30px 0 24px; /* 上下のパディングを少し広げて読みやすく */
            text-align: center;
            position: relative;
            background: var(--color-bg-white);
            margin-bottom: var(--spacing-sm);
        }
        .p-merit__badge {
            position: absolute;
            top: -12px; /* バッジが少し大きくなった分、位置を微調整 */
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--color-accent-pink);
            color: #fff;
            font-size: 11px; /* バッジの文字サイズを少しアップ */
            font-weight: bold;
            padding: 4px 12px;
            border-radius: 12px;
            white-space: nowrap;
            box-shadow: 0 2px 4px rgba(217, 77, 142, 0.3); /* バッジに影をつけて目立たせる */
        }
        .p-merit__text {
            font-size: var(--font-size-base);
            font-weight: bold;
            color: var(--color-text-main);
            line-height: 1.6;
        }

        /* 8. AI特典 */
        .p-present__banner {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            display: block;
        }
        .p-present__banner img, .p-present__banner-dummy {
            width: 100%;
            height: auto;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
            background-color: #e5e7eb;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #9ca3af;
        }

        /* 9. 会社説明 */
        .p-company {
            position: relative;
            background-color: #0f172a; /* プレースホルダーのベースをネイビーグレーに */
            /* 白木カウンターと美しいペンダントライトに調和する、モダンな会議スペースのイメージ写真 */
            background-image: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
        }
        /* 可読性を最優先：深みのある濃いグラデーションオーバーレイで、背景の美しい光沢（ライトなど）を残しつつ白文字を極めて読みやすくする */
        .p-company::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.75) 50%, rgba(15, 23, 42, 0.9) 100%); 
            z-index: 1;
        }
        .p-company__content-wrap {
            position: relative;
            z-index: 2;
        }
        .p-company .section-title {
            color: #fff;
        }
        .p-company__catch {
            font-size: var(--font-size-base); /* SP版：少し縮小してバランスを調整 */
            font-weight: bold;
            color: #fff;
            margin-bottom: 16px;
            line-height: 1.6;
        }
        .p-company__text {
            font-size: var(--font-size-sm); 
            color: #e2e8f0; /* 可読性と上品さをUP */
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .p-company__closing {
            font-size: var(--font-size-base);
            font-weight: bold;
            color: #6de9f4; /* 暗背景に映える、明るく彩度の高いピンクへ変更 */
            margin-top: 24px;
            line-height: 1.6;
        }
        .p-company__text:last-child, .p-company__closing:last-child {
            margin-bottom: 0;
        }

        /* 10. よくある質問 */
        .p-faq {
            /* 会社概要の黒背景との明確なコントラストと美しいスペーシングを確保 */
            border-top: 1px solid var(--color-border);
            background-color: rgba(255, 255, 255, 0.7);
        }
        .p-faq__item {
            margin-bottom: var(--spacing-md);
            background: #fff; /* 背景を極めて薄いグレーに変更して抜け感を出す */
            border: 1px solid #f3f4f6; /* 極細の淡い枠線を追加し洗練度をアップ */
            border-radius: var(--border-radius-md);
            padding: 20px; /* パディングを増やしてゆったりと */
        }
        .p-faq__q {
            font-weight: bold;
            font-size: var(--font-size-base);
            margin-bottom: 12px; 
            display: flex;
            align-items: flex-start;
            color: var(--color-text-main);
            line-height: 1.5;
        }
        .p-faq__q::before {
            content: 'Q';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px; /* アイコンを少しだけ大きく */
            height: 24px;
            background-color: rgba(37, 99, 235, 0.1); /* ベタ塗りをやめ、透過した淡いブルーへ */
            color: #2563eb; /* 文字色は濃いブルー */
            font-size: var(--font-size-base);
            font-weight: 900;
            border-radius: 50%;
            margin-right: 10px;
            flex-shrink: 0;
        }
        .p-faq__a {
            font-size: var(--font-size-sm); /* 少し大きくして読みやすく */
            color: var(--color-text-muted);
            display: flex;
            align-items: flex-start;
            line-height: 1.6;
        }
        .p-faq__a::before {
            content: 'A';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            background-color: rgba(217, 77, 142, 0.1); /* ベタ塗りをやめ、透過した淡いピンクへ */
            color: var(--color-accent-pink); /* 文字色は濃いピンク */
            font-size: var(--font-size-base);
            font-weight: 900;
            border-radius: 50%;
            margin-right: 10px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .p-faq__a-text {
            flex: 1; /* テキストがアイコンの下に回り込むのを防ぐ */
        }

        /* 11. フローティングCTA (画面下部固定) */
        .c-floating-cta {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: var(--max-width); /* PC幅でも広がりすぎないように */
            background: rgba(255, 255, 255, 0.95);
            padding: 16px var(--spacing-md);
            box-shadow: 0 -4px 10px rgba(0,0,0,0.05);
            z-index: 100;
        }

        /* CTAボタン of 光るエフェクト */
        .c-btn--shiny {
            position: relative;
            overflow: hidden;
            background-color: var(--color-accent-pink); /* コンバージョンを促すため、目立つアクセントカラーに変更 */
            color: #fff;
            border: none;
        }
        .c-btn--shiny::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
            transform: skewX(-20deg);
            animation: shine 3s infinite;
        }
        @keyframes shine {
            0% { left: -100%; }
            20% { left: 200%; }
            100% { left: 200%; }
        }

        /* ==========================================================================
           Media Queries (Responsive)
           ========================================================================== */
        @media screen and (min-width: 768px) {
        :root {
            /* Spacing */
            --spacing-xs: clamp(0.375rem, 1vw, 0.5rem);      /* 6〜8px */
            --spacing-sm: clamp(0.75rem, 2vw, 1rem);          /* 12〜16px */
            --spacing-md: clamp(1.25rem, 3vw, 1.5rem);        /* 20〜24px */
            --spacing-lg: clamp(2rem, 4vw, 2.5rem);           /* 32〜40px */
            --spacing-xl: clamp(2.5rem, 6vw, 3.75rem);        /* 40〜60px */

            /* Typography */
            --font-family: 'Yu Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
            --font-size-xs: clamp(0.8rem, 1.3vw, 0.8rem);   /* 14〜16px */
            --font-size-sm: clamp(0.9rem, 1.3vw, 0.9rem);   /* 14〜16px */
            --font-size-base: clamp(1.0rem, 1.5vw, 1rem);   /* 14〜16px */
            --font-size-lg: clamp(1.2rem, 2vw, 1.3rem);       /* 16〜18px */
            --font-size-xl: clamp(1.3rem, 2.5vw, 1.5rem);    /* 20〜24px */
            --font-size-xxl: clamp(1.5rem, 3vw, 2rem);        /* 24〜32px */
            --font-size-xxxl: clamp(2.8rem, 6vw, 5rem);       /* 40〜80px */

}
            .u-sp-only { display: none; }
            .u-pc-only { display: inline; }

.c-btn {
    width: 70%;
}

            header img{
            width: 20%;
            }

            .p-fv{
            padding: var(--spacing-md) var(--spacing-xl);
            }
            .p-fv__subcopy{
                font-size: var(--font-size-xl);
            }
            .p-fv__badge{
                width: 8.0rem;
                height: 8.0rem;
                top: 80px;
                right: 30px;
            }

            /* 悩み共感 (PC用の元の大きなサイズに戻す) */
            .p-empathy__visual {
                max-width: 800px;
                height: 300px;
                padding: var(--spacing-xl) 0;
                margin-bottom: 160px;
            }
            .p-empathy__person {
                width: 200px;
                height: auto;
                top: 180px;
            }
            .p-empathy__bubble {
                width: 170px;
                height: 170px;
                font-size: var(--font-size-base);
                padding: 0;
            }
            
            /* PC用の配置 */
            .bubble-3 { top: 40%; left: -10%; }
            .bubble-4 { top: 40%; right: -10%; }
            .bubble-5 { top: 80%; left: 0; }
            .bubble-6 { top: 80%; right: 0; }

            /* FVバッジのPCサイズ調整 
            .p-fv__badge {
                width: 120px;
                height: 120px;
                font-size: 16px;
                bottom: 150px;
                right: 40px;
            }*/

            /* データ（格差） */
            .p-data__grid {
                display: grid; /* PCはGrid（横並び）に戻す */
                max-width: 900px;
                grid-template-columns: repeat(3, 1fr);
                margin-left: auto;
                margin-right: auto;
                overflow-x: visible; /* スクロール解除 */
                padding-bottom: 0;
            }
            .p-data__card {
                flex: auto; /* Flex比率の固定解除 */
            }
            .p-data__chart-box {
                max-width: 820px;
                height: 560px;
                margin-left: auto;
                margin-right: auto;
                padding: 20px 20px 30px 40px; /* PC: 左右余白を元に戻す */
            }
            .p-data__chart-title {
                top: 24px;
                font-size: 16px; /* PC用文字サイズ */
            }
            .p-data__chart-grid, .p-data__chart-bars {
                top: 64px; /* PC: タイトル領域の拡張に合わせる */
                left: 40px; right: 20px; /* PC: 描画エリア位置を戻す */
            }
            .p-data__chart-line span {
                left: -30px; /* PC: 目盛り位置を戻す */
            }
            
            /* PC: グラフの文字サイズ・吹き出しサイズを大きく戻す */
            .p-data__bar-sm, .p-data__bar-lg {
                padding-bottom: 40px; /* PCでは下部の余白を広げる */
            }
            .p-data__bar-sm .p-data__bar-label-bottom {
                font-size: 20px; 
            }
            .p-data__bar-lg .p-data__bar-label-bottom {
                font-size: 28px; 
            }
            .p-data__bubble-diff {
                width: 110px;
                height: 110px;
            }
            .p-data__bubble-diff small {
                font-size: 12px;
                margin-bottom: 2px;
            }
            .p-data__bubble-diff span {
                font-size: 32px;
            }

            /* 出典表記のPCサイズ調整 */
            .p-data__source {
                font-size: 12px;
                max-width: 820px; /* グラフ幅と同じ幅に制限 */
                margin-left: auto;
                margin-right: auto;
            }

            .section-title{
            font-size: var(--font-size-xl);
            padding: var(--spacing-lg) 0;
        }
            
            /* AIが使える人とは */
            .p-concept__formula { gap: 16px; margin-bottom: 24px; }
            .p-concept__formula-box { padding: 10px 24px; }
            
            /* ユースケース (PC版は広々と2列×2行でリッチに見せる) */
            .p-concept__cases {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto;
                grid-auto-flow: row;
                gap: 24px;
                max-width: 1080px;
                margin: 0 auto;
                overflow-x: visible; /* PCではスクロール解除 */
                padding-bottom: 0;
            }
            .p-concept__case {
                flex: auto;
                scroll-snap-align: none;
                padding: 32px 32px 0 32px; /* PCでは余白をさらに贅沢に（縦軸は揃える） */
            }
            .p-concept__case-use {
                margin-bottom: 32px;
            }
            .p-concept__case-result {
                padding: 20px 32px;
                margin: 0 -32px;
                height: 120px; /* PCでも固定高さをキープして絶対揃える */
            }
            .p-concept__case-title {
                font-size: 20px; /* PCサイズ調整 */
                margin-bottom: 24px;
            }
            .p-concept__case-title span {
                font-size: 14px;
                padding: 6px 14px;
            }
            .p-concept__case-title small {
                font-size: 20px; /* PCでの「× AI」サイズも追従して大きく */
            }
            .p-concept__case-use-text {
                font-size: 14px;
            }
            .p-concept__case-result-text {
                font-size: 15px;
            }
            .p-concept__case-result-text .num {
                font-size: 24px; /* PCでは数値をさらに強調 */
            }
            .p-concept__case-result-text .arrow {
                font-size: 13px; /* PCでも数字に合わせて矢印を最適サイズへ縮小 */
            }

            /* コース案内 (PCで横並び。講座数が4つになったので2列ずつの綺麗なグリッド配置にする) */
            .p-course__carousel {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                overflow-x: visible;
                scroll-snap-type: none;
                padding-bottom: 0;
                max-width: 1080px;
                margin: 0 auto;
            }
            .p-course__card {
                flex: auto;
                scroll-snap-align: none;
                min-height: 380px; /* 4枚の高さを揃えて統一感をUP */
            }
            .p-course__card-img {
                height: 110px;
                font-size: var(--font-size-lg);
            }
            .p-course__card-copy{
font-size: var(--font-size-base);
            }
                        .p-course__list{
font-size: var(--font-size-base);
padding: var(--spacing-md);
            }

            /* 学習方法 */

            .p-method__list {
                width: 1080px;
                margin: auto;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: var(--spacing-md);
            }
            .p-method__item{
width: 90%;
            }
            .p-method__icon{
                width: 25%;
            }

            /* カウンセリングのメリット */
            .p-merit__list {
                flex-direction: row;
                gap: var(--spacing-md);
                width: 1080px;
                margin: auto;
            }
            .p-merit__item {
                flex: 1;
                padding: 24px 16px;
            }
            
            /* 会社説明 */
            .p-company__inner {
                max-width: 700px;
                gap: 20px;
            }
            
            /* 会社説明 (PC版：背景画像の上にテキストを中央寄せにしてエモーショナルに演出) */
            .p-company__inner {
                max-width: 700px; /* 読みやすい横幅に制限 */
                margin: 0 auto;
                text-align: center;
            }
            .p-company__catch {
                font-size: 15px; /* PC版：リード文を少し縮小 */
            }
            .p-company__closing {
                font-size: 16px; 
            }

            /* 幅制限（読みやすさのための中央寄せ） */
            .p-empathy__lead, .p-concept__text{
                max-width: 800px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .l-container {
                padding-bottom: 100px; /* PC版ではフッター余白を広げる */
            }

            .p-faq{
                width: 100%;
                background: rgba(255, 255, 255, 0.7);
            }
.p-faq__item{
    width: 900px;
    margin: var(--spacing-md) auto;
    padding: var(--spacing-md);
    background: #fff;
}

        /*ロゴスクロール*/    
        #top-corplogo-area {
        overflow: hidden;
        width: 100%;
        margin-bottom: var(--spacing-sm);
        text-align: center;
        }

        #top-corplogo-area h2{
            text-align: center;
            color: #fff;
            display: inline-block;
            margin: 0 auto 1rem;
            font-size: 1.2rem;
            background: linear-gradient(135deg, #123386 0%, #0055BB 50%, #00AAEE 100%);
            padding: 0.2rem var(--spacing-xl);
            border-radius: var(--border-radius-sm);
        }

        #top-corplogo-area .top-corplogo-track {
        display: flex;
        width: max-content;  /* ← これを追加 */
        animation: top-corplogo-scroll 70s linear infinite;
        }

        #top-corplogo-area .top-corplogo-list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 20px;
        align-items: center;
        flex-shrink: 0;
        padding-right: 20px; /* ← ulの末尾にgapと同じ幅を追加 */
        }

        #top-corplogo-area .top-corplogo-list li {
        flex-shrink: 0;
        background: #fff;
        border-radius: var(--border-radius-md);
        padding: var(--spacing-xs) 0;
        width: 180px;
        }

        #top-corplogo-area .top-corplogo-list li img{
        width:70%;
        height: auto;
        display: block;
        margin: auto;
        }

        @keyframes top-corplogo-scroll {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); }
        }

/*FVエリア*/
    .p-fv__inner {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    align-items: center;
    }

    .p-fv__right {
    position: relative;
    padding-right:var(--spacing-md);
    min-height: 360px;
    }

    .p-fv__img {
    position: absolute;
    width: 54%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    }

    .p-fv__img--01 {
    top: -30px;
    left: 0;
    z-index: 1;
    }

    .p-fv__img--02 {
    top: 100px;
    right: 0;
    z-index: 2;
    }

    @media (max-width: 768px) {
    .p-fv__right {
        min-height: 260px;
        margin-top: 24px;
    }
    .p-fv__img {
        width: 58%;
    }
    }
header{
padding: var(--spacing-md) var(--spacing-md) var(--spacing-sm);
}


        }